mirror of https://github.com/Nonannet/copapy.git
simple test case configured
This commit is contained in:
parent
8941b1837c
commit
db458dd047
|
|
@ -8,7 +8,8 @@ def test_compile() -> None:
|
||||||
c1 = CPVariable(9)
|
c1 = CPVariable(9)
|
||||||
|
|
||||||
#ret = [c1 / 4, c1 / -4, c1 // 4, c1 // -4, (c1 * -1) // 4]
|
#ret = [c1 / 4, c1 / -4, c1 // 4, c1 // -4, (c1 * -1) // 4]
|
||||||
ret = [c1 // 4]
|
#ret = [c1 // 4]
|
||||||
|
ret = [c1 / 4 + 3 * 3.6]
|
||||||
|
|
||||||
out = [Write(r) for r in ret]
|
out = [Write(r) for r in ret]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue