Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 735 Bytes

state-space.md

File metadata and controls

23 lines (18 loc) · 735 Bytes

State-space Exploration

Here we instantiate all the above given components to a language suitable for narrowing modulo SMT trace-based analysis.

load msh

fmod STATE-EXPLORE is
  protecting MSH .

  var EXEC-COMMAND : Command{Modules=>State} .

  op explore-all-with : Command{Modules=>State} -> Program .
  ---------------------------------------------------------
  eq explore-all-with(EXEC-COMMAND) = extend
                                    ; while (not empty?) { EXEC-COMMAND
                                                         ; extend
                                                         ; load
                                                         } .
endfm