summaryrefslogtreecommitdiff
path: root/lib/codegen.py
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2020-04-29 09:54:55 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2020-04-29 09:54:55 +0200
commit4b79b253d268652a1ae7239b564aaff9c2871589 (patch)
tree9436545560fe8dccbb515b406204468e2d28e6ac /lib/codegen.py
parent4f43ceed98bc8f929facfd6c17f394de8ca1a588 (diff)
Use relative module paths. PYTHONPATH=lib bin/... is no longer needed
Diffstat (limited to 'lib/codegen.py')
-rw-r--r--lib/codegen.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/codegen.py b/lib/codegen.py
index 6e94bee..e0bf45f 100644
--- a/lib/codegen.py
+++ b/lib/codegen.py
@@ -1,7 +1,7 @@
"""Code generators for multipass dummy drivers for online model evaluation."""
-from automata import PTA, Transition
-from modular_arithmetic import simulate_int_type
+from .automata import PTA, Transition
+from .modular_arithmetic import simulate_int_type
header_template = """
#ifndef DFATOOL_{name}_H