Skip to content

Commit 0b1a5d5

Browse files
committed
Rewrite optimization quality functions
1 parent 9f3c033 commit 0b1a5d5

File tree

10 files changed

+382
-154
lines changed

10 files changed

+382
-154
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,3 +157,7 @@ dmypy.json
157157

158158
# Pyre type checker
159159
.pyre/
160+
161+
# IDEs on hold
162+
.idea
163+
.vscode

.vscode/launch.json

Lines changed: 0 additions & 17 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 0 additions & 30 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![classy_blocks logo](docs/classy_logo.png "classy_blocks logo")
1+
![classy_blocks logo](docs/classy_logo.svg "classy_blocks logo")
22

33
Python classes for easier creation of OpenFOAM's blockMesh dictionaries.
44

classy_blocks.code-workspace

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55
}
66
],
77
"settings": {
8-
"python.languageServer": "Pylance",
8+
"python.languageServer": "Jedi",
99
"editor.defaultFormatter": "charliermarsh.ruff",
10-
"ruff.organizeImports": true
10+
"ruff.organizeImports": true,
11+
"ruff.nativeServer": true,
12+
"python.testing.unittestEnabled": true,
1113
},
1214
"extensions": {
1315
"recommendations": [
14-
"ms-python.vscode-pylance",
1516
"ms-python.python",
1617
"charliermarsh.ruff"
1718
]

docs/classy_logo.svg

Lines changed: 283 additions & 0 deletions
Loading

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT"
77
keywords = ["classy_blocks", "OpenFOAM", "blockMesh"]
88
authors = [{ name = "Nejc Jurkovic", email = "kandelabr@gmail.com" }]
99
requires-python = ">=3.9"
10-
dependencies = ["numpy", "scipy", "nptyping", "numba", "parameterized"]
10+
dependencies = ["numpy", "scipy", "nptyping", "numba"]
1111

1212
[project.urls]
1313
"Homepage" = "https://github.com/damogranlabs/classy_blocks"

0 commit comments

Comments
 (0)