From d5fad4b0b6140d4443dc3cb9521244c5b698505b Mon Sep 17 00:00:00 2001 From: 1ozturkbe <1ozturkbe@gmail.com> Date: Mon, 9 Sep 2019 15:29:54 -0400 Subject: [PATCH] Remove test_synthetic_model. --- robust/synthetic_model/models.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/robust/synthetic_model/models.py b/robust/synthetic_model/models.py index 779be0f..a163b50 100644 --- a/robust/synthetic_model/models.py +++ b/robust/synthetic_model/models.py @@ -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)