74. Módosítás: „Equation” ellenőrzése
Mutáció az Egyenlet kódjának ellenőrzéséhez. Az Egyenlet motor a következőre épül: python nyelv, közönséges matematikai műveletek támogatásával.
A támogatott műveletek listája:
Python alapmodul: abs, all, any, bin, bool, bytearray, bytes, chr, complex, dict, dir, divmod, enumerate, filter, float, format, frozenset, hash, hex, id, int, isinstance, len, list, map, max, min, oct, ord, pow, range, repr, reversed, round, set, slice, sorted, str, sum, tuple, type, zip.
Python math modul: acos, acosh, asin, asinh, atan, atan2, atanh, ceil, copysign, cos, cosh, degrees, e, exp, fabs, factorial, floor, fmod, frexp, fsum, hypot, isinf, isnan, ldexp, log, log10, log1p, modf, pi, pow, radians, sin, sinh, sqrt, tan, tanh, trunc.
Python feltételek: if, elif, else.
Python ciklusok: for, while.
equationAsText """<equation>""" közé kell zárni, és a kódnak Python-stílusúnak kell lennie.
Tartsd meg csak a szükséges tabulációt és szóközöket.
mutation VerifyEquation {
verifyEquation(input: {
dataVariables: [{
variable: "yield_vol"
sampleValue: 1.1
}, {
variable: "prod"
sampleValue: 2.2
}]
equationAsText: """calculated = yield_vol/prod + 3.5
if calculated >= 30:
result = 35
elif calculated >= 20 and calculated < 30:
result = 25
else:
result = 15
"""
equationResultVariable: "result"
}) {
executed
result
errorMessage
}
}Utoljára frissítve:
Hasznos volt ez?