From db458dd04747aa8d714ca3f4968ca1e0c27b5aa9 Mon Sep 17 00:00:00 2001 From: Nicolas Kruse Date: Tue, 14 Oct 2025 23:08:56 +0200 Subject: [PATCH] simple test case configured --- tools/make_example.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/make_example.py b/tools/make_example.py index 3c70f17..64b642d 100644 --- a/tools/make_example.py +++ b/tools/make_example.py @@ -8,7 +8,8 @@ def test_compile() -> None: c1 = CPVariable(9) #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]