abc_equivalence_check function debug

This commit is contained in:
Feng Wang 2019-12-04 21:48:24 +08:00
parent 603967539d
commit c4f46f5886
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ void execute_command(string s) {
void abc_check_equivalence(string in_file, string out_file) {
abc_initialize();
string command = "cec %s %s" + in_file + out_file + ";";
string command = "cec " + in_file + " " + out_file + ";";
execute_command(command);
}