Skip to content

Commit

Permalink
Found and fixed a small error related to the changes to bound offset …
Browse files Browse the repository at this point in the history
…that where made earlier.
  • Loading branch information
Immudzen committed Jun 30, 2020
1 parent 2d22470 commit ed52f13
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CADETMatch.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: CADETMatch
Version: 0.5.47
Version: 0.5.48
Summary: CADETMatch is a parameter estimation and error modeling library for CADET
Home-page: https://github.com/modsim/CADET-Match
Author: William Heymann
Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/CADETMatch.pyproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<IsWindowsApplication>False</IsWindowsApplication>
<InterpreterId>CondaEnv|CondaEnv|cadet_devel</InterpreterId>
<LaunchProvider>Standard Python launcher</LaunchProvider>
<CommandLineArguments>"F:\temp\weirdEffects\fit_nsga3_sample_testCADET4\NSGA3_bypassSample.json" 6</CommandLineArguments>
<CommandLineArguments>"F:\Parameter Estimation\Synthetic\SMA_Mult\NSGA3_sma_SSE.json" 1</CommandLineArguments>
<EnableNativeCodeDebugging>False</EnableNativeCodeDebugging>
<InterpreterArguments>
</InterpreterArguments>
Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def getBoundOffset(unit):
else:
NBOUND = unit.discretization.nbound

if not NBOUND:
if not len(NBOUND):
"If NBOUND is empty it is all zero"
NBOUND = [0.0] * unit.ncomp

Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
__email__ = "[email protected]"
__license__ = "GNU General Public License v3 (GPLv3)"
__copyright__ = "2020 %s" % __author__
__version__ = "0.5.47"
__version__ = "0.5.48"
__uri__ = "https://github.com/modsim/CADET-Match"

0 comments on commit ed52f13

Please sign in to comment.