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 self set-entorno value theEntorno{nombre} with-name nombre.
\r
60 + to update-datos-finales datos-finales datos (hash):
\r
62 foreach nombre in keys(datos): {
\r
63 self set-dato-final value datos{nombre} with-name nombre.
\r
67 SistemaAutonomoPlan(ptr).
\r
69 + to has-next-theory:
\r
70 return SistemaAutonomoHasNextTheory(ptr).
\r
72 + to get-next-theory:
\r
75 t set-ptr ptr SistemaAutonomoGetNextTheory(ptr).
\r
78 + to validate theory theTheory (object):
\r
79 return SistemaAutonomoValidateTheory(ptr, (theTheory get-ptr)).
\r
82 SistemaAutonomoDelete(ptr).
\r