Skip to content

Commit

Permalink
Remove test_synthetic_model.
Browse files Browse the repository at this point in the history
  • Loading branch information
1ozturkbe committed Sep 9, 2019
1 parent 4bb7d93 commit d5fad4b
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions robust/synthetic_model/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,3 @@ def synthetic_model(number_of_constraints):
obj += sum([i**0.2 for i in s])
m = Model(obj, constraints)
return m


def test_synthetic_model():
a = Variable("a", 1.17, "-", "form factor", pr=10)
x = Variable('x')

constraints = []
constraints += [a*x + x/a + x**2/a**2 + a**3*x**1.3<= 1]

return Model(1/x, constraints)

0 comments on commit d5fad4b

Please sign in to comment.