pybounds 0.0.8__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.
- {pybounds-0.0.8 → pybounds-0.0.9}/PKG-INFO +1 -1
- {pybounds-0.0.8 → pybounds-0.0.9}/pybounds/observability.py +3 -5
- {pybounds-0.0.8 → pybounds-0.0.9}/pybounds/simulator.py +1 -0
- {pybounds-0.0.8 → pybounds-0.0.9}/pybounds.egg-info/PKG-INFO +1 -1
- {pybounds-0.0.8 → pybounds-0.0.9}/setup.py +1 -1
- {pybounds-0.0.8 → pybounds-0.0.9}/LICENSE +0 -0
- {pybounds-0.0.8 → pybounds-0.0.9}/README.md +0 -0
- {pybounds-0.0.8 → pybounds-0.0.9}/pybounds/__init__.py +0 -0
- {pybounds-0.0.8 → pybounds-0.0.9}/pybounds/jacobian.py +0 -0
- {pybounds-0.0.8 → pybounds-0.0.9}/pybounds/observability_transform.py +0 -0
- {pybounds-0.0.8 → pybounds-0.0.9}/pybounds/util.py +0 -0
- {pybounds-0.0.8 → pybounds-0.0.9}/pybounds.egg-info/SOURCES.txt +0 -0
- {pybounds-0.0.8 → pybounds-0.0.9}/pybounds.egg-info/dependency_links.txt +0 -0
- {pybounds-0.0.8 → pybounds-0.0.9}/pybounds.egg-info/top_level.txt +0 -0
- {pybounds-0.0.8 → pybounds-0.0.9}/setup.cfg +0 -0
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import numpy as np
|
|
2
2
|
import pandas as pd
|
|
3
|
-
|
|
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
|
-
|
|
7
|
+
from concurrent.futures import ThreadPoolExecutor
|
|
8
|
+
|
|
11
9
|
from .util import LatexStates
|
|
12
10
|
from .jacobian import SymbolicJacobian
|
|
13
11
|
|
|
@@ -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')
|
|
@@ -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.
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|