Skip to content
Snippets Groups Projects
Select Git revision
  • b938f0aa09f7a2884e65a378393f2c5b4d3ca264
  • master default protected
  • new
  • v0.0
4 results

problem.tex

Blame
  • Forked from stgroup / misc / latex-templates / Thesis Template - German
    Source project has a limited visibility.
    Example.relast 263 B
    
    
    StateMachine ::= Element*;
    abstract Element ::= <Label:String>;
    State : Element ::=;
    Transition : Element ::=;
    
    rel StateMachine.initial -> State;
    rel StateMachine.final* -> State;
    rel State.outgoing* <-> Transition.from;
    rel State.incoming* <-> Transition.to;