📄 todo
字号:
* Add meta-dependency package for optional dependencies, where at least onedependency must be satisfied:A-la:Dependencies = ["petsc" or "umfpack", "python"]meaning we want either 'petsc' or 'umfpack', but we need at least one of themProposed syntaxesmatrx = Alternatives('petsc','umfpack')Dependencies = [matrix, 'numpy-1', 'ufc']or matrix = Dependency("petsc", "umfpack", type="any") -> type can be 'any' or 'all', defaults to 'all'Again, we put matrix in the Dependencies listWe also need to set HAVE_<PACKAGE> flags accordingly
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -