Ejemplo n.º 1
0
 def test02(self):
     const = 123765
     x_pmt = pmt.from_double(const)
     x_int = pmt.to_double(x_pmt)
     self.assertEqual(x_int, const)
Ejemplo n.º 2
0
 def test02(self):
     const = 123765
     x_pmt = pmt.from_double(const)
     x_int = pmt.to_double(x_pmt)
     self.assertEqual(x_int, const)
Ejemplo n.º 3
0
 def test01(self):
     a = pmt.intern("a")
     b = pmt.from_double(123765)
     d1 = pmt.make_dict()
     d2 = pmt.dict_add(d1, a, b)
     print d2
Ejemplo n.º 4
0
 def test01(self):
     a = pmt.intern("a")
     b = pmt.from_double(123765)
     d1 = pmt.make_dict()
     d2 = pmt.dict_add(d1, a, b)
     print d2