Changeset 1076
- Timestamp:
- 02/16/21 06:37:09 (4 years ago)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/util/extvalue.cpp
r1005 r1076 986 986 case TUnknown: 987 987 case TInvalid: 988 logPrintf("ExtValue", "get Int", LOG_ERROR, "Getting floating point value from %s", getString().c_str());988 logPrintf("ExtValue", "getDouble", LOG_ERROR, "Getting floating point value from %s", getString().c_str()); 989 989 return 0.0; 990 990 default:; -
cpp/frams/vm/classes/collectionobj.cpp
r1041 r1076 36 36 { "add", 0, PARAM_NOSTATIC, "Append at the end", "p(x value)", PROCEDURE(p_add), }, 37 37 { "find", 0, PARAM_NOSTATIC, "Find", "p d(x value)", PROCEDURE(p_find), "returns the element index or -1 if not found" }, 38 { "avg", 0, PARAM_READONLY | PARAM_NOSTATIC, "Average", " f", GETONLY(avg) },39 { "stdev", 0, PARAM_READONLY | PARAM_NOSTATIC, "Standard deviation", " f", GETONLY(stdev), "=sqrt(sum((element[i]-avg)^2)/(size-1)) which is estimated population std.dev. from sample std.dev." },38 { "avg", 0, PARAM_READONLY | PARAM_NOSTATIC, "Average", "x", GETONLY(avg) }, 39 { "stdev", 0, PARAM_READONLY | PARAM_NOSTATIC, "Standard deviation", "x", GETONLY(stdev), "=sqrt(sum((element[i]-avg)^2)/(size-1)) which is estimated population std.dev. from sample std.dev." }, 40 40 { "toString", 0, PARAM_READONLY | PARAM_NOSTATIC, "Textual form", "s", GETONLY(toString), }, 41 41 { "new", 0, 0, "Create new Vector", "p oVector()", STATICPROCEDURE(p_new), }, -
framspy/FramsticksCLI.py
r1060 r1076 26 26 OUTPUT_DIR = "scripts_output" 27 27 GENOTYPE_INVALID = "/*invalid*/" # this is how genotype invalidity is represented in Framsticks 28 STDOUT_ENDOPER_MARKER = "FileObject.write " # we look for this message on Framsticks CLI stdout to detect when Framsticks created a file with the result we expect28 STDOUT_ENDOPER_MARKER = "FileObject.write:" # we look for this message on Framsticks CLI stdout to detect when Framsticks created a file with the result we expect 29 29 30 30 FILE_PREFIX = 'framspy_'
Note: See TracChangeset
for help on using the changeset viewer.