pybounds 0.0.7__tar.gz → 0.0.9__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.

Potentially problematic release.


This version of pybounds might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pybounds
3
- Version: 0.0.7
3
+ Version: 0.0.9
4
4
  Summary: Bounding Observability for Uncertain Nonlinear Dynamics Systems (BOUNDS)
5
5
  Home-page: https://pypi.org/project/pybounds/
6
6
  Author: Ben Cellini, Burak Boyacioglu, Floris van Breugel
@@ -7,7 +7,7 @@ from .observability import FisherObservability
7
7
  from .observability import SlidingFisherObservability
8
8
  from .observability import ObservabilityMatrixImage
9
9
  from .observability import transform_states
10
- from .observability import SymbolicJacobian
11
10
 
12
- from .util import colorline
11
+ from .jacobian import SymbolicJacobian
13
12
 
13
+ from .util import colorline
@@ -1,15 +1,13 @@
1
1
  import numpy as np
2
2
  import pandas as pd
3
- # from multiprocessing import Pool
4
- # from pathos.multiprocessing import ProcessingPool as Pool
5
- from concurrent.futures import ThreadPoolExecutor
3
+ import sympy as sp
6
4
  import warnings
7
- # import matplotlib as mpl
8
5
  import matplotlib.pyplot as plt
9
6
  from mpl_toolkits.axes_grid1.inset_locator import inset_axes
10
- import sympy as sp
7
+ from concurrent.futures import ThreadPoolExecutor
8
+
11
9
  from .util import LatexStates
12
- from jacobian import SymbolicJacobian
10
+ from .jacobian import SymbolicJacobian
13
11
 
14
12
 
15
13
  class EmpiricalObservabilityMatrix:
@@ -279,6 +279,7 @@ class Simulator(object):
279
279
  :params u: input dict or array
280
280
  :params return_full_output: boolean to run (time, x, u, y) instead of y
281
281
  """
282
+ print('run')
282
283
 
283
284
  if (mpc is True) and (u is not None):
284
285
  raise Exception('u must be None if running MPC')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pybounds
3
- Version: 0.0.7
3
+ Version: 0.0.9
4
4
  Summary: Bounding Observability for Uncertain Nonlinear Dynamics Systems (BOUNDS)
5
5
  Home-page: https://pypi.org/project/pybounds/
6
6
  Author: Ben Cellini, Burak Boyacioglu, Floris van Breugel
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5
5
 
6
6
  setuptools.setup(
7
7
  name="pybounds", # Replace with your own username
8
- version="0.0.7",
8
+ version="0.0.9",
9
9
  author="Ben Cellini, Burak Boyacioglu, Floris van Breugel",
10
10
  author_email="bcellini00@gmail.com",
11
11
  description="Bounding Observability for Uncertain Nonlinear Dynamics Systems (BOUNDS)",
File without changes
File without changes
File without changes
File without changes
File without changes