Skip to content

Commit

Permalink
(Non)LinearLeastSquares finished
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Roelfs committed Jan 2, 2016
1 parent 59e9c42 commit 0fd9b7e
Show file tree
Hide file tree
Showing 6 changed files with 867 additions and 176 deletions.
2 changes: 1 addition & 1 deletion symfit/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import symfit.core.operators

# Expose useful objects.
from symfit.core.fit import Fit, FitResults, Maximize, Minimize, Likelihood, Model, NumericalLeastSquares
from symfit.core.fit import Fit, FitResults, Maximize, Minimize, Likelihood, Model, NumericalLeastSquares, LinearLeastSquares, NonLinearLeastSquares, TaylorModel
from symfit.core.argument import Variable, Parameter
from symfit.core.support import variables, parameters

Expand Down
1 change: 1 addition & 0 deletions symfit/core/argument.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from sympy.core.symbol import Symbol
from sympy.tensor import IndexedBase
import inspect

class Argument(Symbol):
Expand Down
Loading

0 comments on commit 0fd9b7e

Please sign in to comment.