analysis.py v 1.1.0.001

This commit is contained in:
ltcptgeneral 2019-09-13 12:33:02 -05:00
parent 4d6273fa05
commit 79e77af304

View File

@ -7,10 +7,12 @@
# number of easter eggs: 2 # number of easter eggs: 2
# setup: # setup:
__version__ = "1.1.0.000" __version__ = "1.1.0.001"
# changelog should be viewed using print(analysis.__changelog__) # changelog should be viewed using print(analysis.__changelog__)
__changelog__ = """changelog: __changelog__ = """changelog:
1.1.0.001:
- removed from sklearn import * to resolve uneeded wildcard imports
1.1.0.000: 1.1.0.000:
- removed c_entities,nc_entities,obstacles,objectives from __all__ - removed c_entities,nc_entities,obstacles,objectives from __all__
- applied numba.jit to all functions - applied numba.jit to all functions
@ -149,7 +151,6 @@ import scipy
from scipy.optimize import curve_fit from scipy.optimize import curve_fit
from scipy import stats from scipy import stats
from sklearn import preprocessing from sklearn import preprocessing
from sklearn import *
# import statistics <-- statistics.py functions have been integrated into analysis.py as of v 1.0.3.002 # import statistics <-- statistics.py functions have been integrated into analysis.py as of v 1.0.3.002
import time import time
import torch import torch