Ejemplo 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)
Ejemplo 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)
Ejemplo 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
Ejemplo 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
Ejemplo 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)
Ejemplo 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)
Ejemplo 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])) 
Ejemplo 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]))
Ejemplo 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) )
Ejemplo 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))