Environment information
This example from "RevLib β File Format Documentation" p. 7:
module counter(in reset(1), in enable(1), inout jump, inout countval)
wire zero
if ( reset = 1) then
countval <=> zero
else
if ( enable = 1 ) then
countval <=> jump
else
++=countval
fi ( enable = 1 )
fi ( reset = 1 )
module main( in reset(1), in enable(1), in jump)
state countval
call counter(reset, enable, jump, countval)
gives this error:
-- line 15 col 7: No module matching user provided call signature
on the call counter(reset, enable, jump, countval) line.
Description
OS: Linux
C++ compiler: GCC 15.1.0
mqt.core version: 3.0.2
How to Reproduce
Run error = prog.read(syrec_code_file) and examine the output error.
Environment information
This example from "RevLib β File Format Documentation" p. 7:
gives this error:
on the
call counter(reset, enable, jump, countval)line.Description
OS: Linux
C++ compiler: GCC 15.1.0
mqt.core version: 3.0.2
How to Reproduce
Run
error = prog.read(syrec_code_file)and examine the outputerror.