packages feed

keiro-dsl-0.15.0.0: test/fixtures/aggregate-scalars-arithmetic.keiro

language keiro-dsl 4
context aggregate-scalars-arithmetic

aggregate BrokenArithmetic
  regs
    revision Natural = 0
  states Empty Done!

  command Advance { amount:Natural }
  event Advanced { amount:Natural }

  Empty -- Advance --> guard revision + amount > revision ; emit Advanced ; goto Done