| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- include "primitives.alh"
- SimpleAttribute Float {}
- SimpleAttribute String {}
- Class Block{}
- Class ICBlock : Block {}
- Class ConstantBlock : Block {
- name = "Constant"
- value : Float {
- target_lower_cardinality = 1
- target_upper_cardinality = 1
- }
- }
- Class AdditionBlock : Block {
- name = "Addition"
- }
- Class NegatorBlock : Block{
- name = "Negator"
- }
- Class MultiplyBlock : Block {
- name = "Multiply"
- }
- Class InverseBlock : Block {
- name = "Inverse"
- }
- Class DelayBlock : ICBlock {
- name = "Delay"
- }
- Class IntegratorBlock : ICBlock {
- name = "Integrator"
- }
- Class DerivatorBlock : ICBlock {
- name = "Derivator"
- }
- Class ProbeBlock : Block {
- name = "Probe"
- name : String {
- target_lower_cardinality = 1
- target_upper_cardinality = 1
- }
- }
- Association Link(Block, Block){}
- Association InitialCondition(Block, ICBlock){
- source_lower_cardinality = 1
- source_upper_cardinality = 1
- }
|