NumOpt 0.0.5__tar.gz → 0.0.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/__init__.py +1 -1
  2. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/opti.py +3 -3
  3. {numopt-0.0.5 → numopt-0.0.6/NumOpt.egg-info}/PKG-INFO +1 -1
  4. {numopt-0.0.5/NumOpt.egg-info → numopt-0.0.6}/PKG-INFO +1 -1
  5. {numopt-0.0.5 → numopt-0.0.6}/LICENSE.txt +0 -0
  6. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/FSI/__init__.py +0 -0
  7. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/FSI/tools.py +0 -0
  8. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/airfoil/bezier.py +0 -0
  9. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/airfoil/bspline.py +0 -0
  10. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/airfoil/export_cst2nx.py +0 -0
  11. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/airfoil/kulfan.py +0 -0
  12. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/casadi_callback/surrogate.py +0 -0
  13. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/casadi_callback/surrogate_with_hess.py +0 -0
  14. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/cprint.py +0 -0
  15. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/nn/bnn.py +0 -0
  16. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/nx/__init__.py +0 -0
  17. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/nx/nxcst.py +0 -0
  18. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/nx/tools.py +0 -0
  19. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/optimize/__init__.py +0 -0
  20. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/optimize/hxy_optimization.py +0 -0
  21. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/optimize/v1.py +0 -0
  22. {numopt-0.0.5 → numopt-0.0.6}/NumOpt/preprocess/scaler.py +0 -0
  23. {numopt-0.0.5 → numopt-0.0.6}/NumOpt.egg-info/SOURCES.txt +0 -0
  24. {numopt-0.0.5 → numopt-0.0.6}/NumOpt.egg-info/dependency_links.txt +0 -0
  25. {numopt-0.0.5 → numopt-0.0.6}/NumOpt.egg-info/requires.txt +0 -0
  26. {numopt-0.0.5 → numopt-0.0.6}/NumOpt.egg-info/top_level.txt +0 -0
  27. {numopt-0.0.5 → numopt-0.0.6}/README.md +0 -0
  28. {numopt-0.0.5 → numopt-0.0.6}/pyproject.toml +0 -0
  29. {numopt-0.0.5 → numopt-0.0.6}/setup.cfg +0 -0
  30. {numopt-0.0.5 → numopt-0.0.6}/setup.py +0 -0
  31. {numopt-0.0.5 → numopt-0.0.6}/test/test01.py +0 -0
@@ -1,4 +1,4 @@
1
1
  from NumOpt.opti import *
2
2
  from NumOpt.cprint import *
3
3
 
4
- __version__ = "0.0.5"
4
+ __version__ = "0.0.6"
@@ -1,6 +1,6 @@
1
- import aerosandbox.numpy as anp
1
+ # import aerosandbox.numpy as anp
2
2
  import aerosandbox as asb
3
- import numpy as np
3
+ # import numpy as np
4
4
  import casadi as cas
5
5
  from typing import Callable, Any, Dict,Literal
6
6
  from .cprint import cprint_yellow
@@ -16,7 +16,7 @@ from .cprint import cprint_yellow
16
16
 
17
17
 
18
18
  class Opti(asb.Opti):
19
- def solver(
19
+ def ipopt_solver(
20
20
  self,
21
21
  max_iter: int = 1000,
22
22
  max_runtime: float = 1e20,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: NumOpt
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: pti is a Python package that helps you design and optimize engineered systems.
5
5
  Home-page: https://github.com/Zcaic/NumOpt.git
6
6
  Author: Zcaic
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: NumOpt
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: pti is a Python package that helps you design and optimize engineered systems.
5
5
  Home-page: https://github.com/Zcaic/NumOpt.git
6
6
  Author: Zcaic
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes