Esempio n. 1
0
 def test_action(self):
     size = 1000
     poly = Polymer(size)
     poly.make_environment()
     poly.compute_actions()
     poly.compute_path()
     self.assertEqual(poly.action_range(1, size)+poly.environment[0][size], poly.max_action)
Esempio n. 2
0
 def test_action(self):
     size = 1000
     poly = Polymer(size)
     poly.make_environment()
     poly.compute_actions()
     poly.compute_path()
     self.assertEqual(
         poly.action_range(1, size) + poly.environment[0][size],
         poly.max_action)
Esempio n. 3
0
def test__path(n):
    poly = Polymer(n)
    poly.make_environment()
    poly.compute_actions()
    poly.compute_path()
    poly.compute_record_discrepancies()
    poly.records
    for i in range(n+1):
        try:
            poly.compute_path(i)
        except IndexError:
            print "failure at ", i
Esempio n. 4
0
def test__path(n):
    poly = Polymer(n)
    poly.make_environment()
    poly.compute_actions()
    poly.compute_path()
    poly.compute_record_discrepancies()
    poly.records
    for i in range(n + 1):
        try:
            poly.compute_path(i)
        except IndexError:
            print "failure at ", i
Esempio n. 5
0
 def test_endpoint(self):
     size = 1000
     poly = Polymer(size)
     poly.make_environment()
     poly.compute_actions()
     path = poly.compute_path()
     end = poly.compute_endpoint()
     self.assertTrue(abs(path[-1] - end) <= 1)
Esempio n. 6
0
 def test_endpoint(self):
     size = 1000
     poly = Polymer(size)
     poly.make_environment()
     poly.compute_actions()
     path = poly.compute_path()
     end = poly.compute_endpoint()
     self.assertTrue(abs(path[-1] - end) <= 1)
Esempio n. 7
0
 def test_tau(self):
     size = 1000
     poly = Polymer(size)
     poly.make_environment()
     poly.compute_actions()
     path = poly.compute_path()
     end = poly.compute_endpoint()
     tau = poly.compute_tau()
     self.assertTrue(abs(end) > abs(path[tau-1])) 
Esempio n. 8
0
 def test_tau(self):
     size = 1000
     poly = Polymer(size)
     poly.make_environment()
     poly.compute_actions()
     path = poly.compute_path()
     end = poly.compute_endpoint()
     tau = poly.compute_tau()
     self.assertTrue(abs(end) > abs(path[tau - 1]))
Esempio n. 9
0
 def test_end_discrepancy(self):
     size = 1000
     exponent = 0.5
     constant = 10
     poly = Polymer(size)
     poly.make_environment()
     poly.compute_actions()
     path = poly.compute_path()
     end = poly.compute_endpoint()
     self.assertTrue(poly.discrepancy(end) < constant*pow(abs(float(end)), -exponent) )
Esempio n. 10
0
 def test_end_discrepancy(self):
     size = 1000
     exponent = 0.5
     constant = 10
     poly = Polymer(size)
     poly.make_environment()
     poly.compute_actions()
     path = poly.compute_path()
     end = poly.compute_endpoint()
     self.assertTrue(
         poly.discrepancy(end) < constant * pow(abs(float(end)), -exponent))