Skip to content

Commit

Permalink
add initial version of functional smtlib backend
Browse files Browse the repository at this point in the history
  • Loading branch information
aiju committed May 23, 2024
1 parent cbb49d4 commit 217ea27
Show file tree
Hide file tree
Showing 4 changed files with 547 additions and 5 deletions.
1 change: 1 addition & 0 deletions backends/functional/Makefile.inc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
OBJS += backends/functional/cxx.o
OBJS += backends/functional/smtlib.o
4 changes: 2 additions & 2 deletions backends/functional/cxx.cc
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,10 @@ class CxxComputeGraphFactory {
pending.set_function(CxxFunction(ID($$buf), pending.function().width));
pending.append_arg(node);
}
void declare_output(T node, IdString name) {
void declare_output(T node, IdString name, int) {
node.assign_key(name);
}
void declare_state(T node, IdString name) {
void declare_state(T node, IdString name, int) {
node.assign_key(name);
}
void suggest_name(T node, IdString name) {
Expand Down
Loading

0 comments on commit 217ea27

Please sign in to comment.