INFO {
TITLE: ""
DESCRIPTION: ""
SEMANTICS: Mealy
TARGET: Mealy
}
GLOBAL {
DEFINITIONS {
bf(i) =
i < 1 : true
bf(0);
}
}
MAIN {
INPUTS {
r;
}
OUTPUTS {
g;
}
GUARANTEES {
bf(0);
}
}
It is equivalent to true. When converting this spec using syfco -f basic (or any other format), syfco hangs. Strange. Any ideas?
On spec simple_arbiter that also uses the recursive definition, syfco performs fine.
Consider the simple spec:
It is equivalent to
true
. When converting this spec usingsyfco -f basic
(or any other format),syfco
hangs. Strange. Any ideas? On spec simple_arbiter that also uses the recursive definition,syfco
performs fine.