2 @plugin "plugin.so" (SAbrFunctions).
\r
4 @define ANY -3000000.
\r
6 Object : Teoria (aka Teorias) {
\r
11 + to init named name (string) with-action action (string)
\r
12 executed k = 1 (int) succeeded p = 1 (int):
\r
13 ptr = TeoriaNew(name, action, k, p).
\r
15 + to set-dato-inicial name theName (string) value theValue (float):
\r
16 TeoriaSetDatoInicial(ptr, theName, theValue).
\r
18 + to set-dato-final name theName (string) value theValue (float):
\r
19 TeoriaSetDatoFinal(ptr, theName, theValue).
\r
22 return TeoriaGetNombre(ptr).
\r
25 return TeoriaGetAccion(ptr).
\r
30 - to set-ptr ptr p (pointer):
\r
37 Object : SistemaAutonomo {
\r
43 ptr = SistemaAutonomoNew().
\r
45 + to add teoria theTeoria (object):
\r
46 SistemaAutonomoAddTeoria(ptr, (theTeoria get-ptr)).
\r
48 + to set-entorno value theValue (float) with-name theName (string):
\r
49 SistemaAutonomoSetValue(ptr, theName, theValue).
\r
51 + to set-dato-final value theValue (float) with-name theName (string):
\r
52 SistemaAutonomoSetDatoFinal(ptr, theName, theValue).
\r
54 + to update-entorno entorno theEntorno (hash):
\r
56 foreach nombre in keys(theEntorno): {
\r
57 print "Seteando valor de entorno ", nombre, " con ", theEntorno{nombre}.
\r
58 self set-entorno value theEntorno{nombre} with-name nombre.
\r
61 + to update-datos-finales datos-finales datos (hash):
\r
63 foreach nombre in keys(datos): {
\r
64 print "Seteando valor de dato final ", nombre, " con ", datos{nombre}.
\r
65 self set-dato-final value datos{nombre} with-name nombre.
\r
69 SistemaAutonomoPlan(ptr).
\r
71 + to has-next-theory:
\r
72 return SistemaAutonomoHasNextTheory(ptr).
\r
74 + to get-next-theory:
\r
77 t set-ptr ptr SistemaAutonomoGetNextTheory(ptr).
\r
80 + to validate theory theTheory (object):
\r
81 return SistemaAutonomoValidateTheory(ptr, (theTheory get-ptr)).
\r
84 SistemaAutonomoDelete(ptr).
\r