add ode solver, tests and update docs

This commit is contained in:
2019-05-26 21:54:58 +02:00
parent 184e80269b
commit d0873a36da
33 changed files with 1821 additions and 396 deletions

16
tests/test_fit.py Normal file
View File

@@ -0,0 +1,16 @@
import unittest
import os
import sys
sys.path.insert(0, os.path.abspath('../src'))
import fit
class TestFit(unittest.TestCase):
def test_property(self):
self.assertEqual()
if __name__ == '__main__':
unittest.main()