reactive-systems / syfco

Synthesis Format Conversion Tool
MIT License
23 stars 12 forks source link

not all inputs are printed with -ins flag #20

Closed 5nizza closed 7 years ago

5nizza commented 8 years ago

The call

syfco -ins ./ltl2dba10.tlsf

gives p, q, but the benchmark has inputs p, q, r (note that r is never used). Here is the file:

INFO {
  TITLE:       "LTL -> DBA  -  Example 10"
  DESCRIPTION: "One of the Acacia+ example files"
  SEMANTICS:   Moore
  TARGET:      Mealy
}

MAIN {
  INPUTS {
    p;
    q;
    r;
  }
  OUTPUTS {
    acc;
  }
  GUARANTEES {
    G (p -> F q)
      <-> G F acc;
  }
}
kleinreact commented 7 years ago

Fixed in commit 96b4245.