You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fgMagenta, "umpPy)", resetStyle, " - e.g. ", styleBright, fgMagenta,
709
710
"FFS/RFP/FIN", resetStyle, ":"
710
-
#echo "Configuration (Full/Internal/Random/Graph)(Fractional/Integer)(Print/Shape/Numpysave) - e.g. FFS/RFP/FIN:"
711
+
#echo "Configuration (Full/Internal/Random/Graph/LimitedGraph)(Fractional/Integer)(Print/Shape/Numpysave) - e.g. FFS/RFP/FIN:"
711
712
let config =readLine(stdin)
712
713
configValidation(config)
713
714
@@ -724,6 +725,15 @@ when appType != "lib":
724
725
ndiv =readLine(stdin).parseInt()
725
726
nDivValidation(config, ndiv, dim)
726
727
728
+
var limitStr: string=""
729
+
if config[0] =='L':
730
+
if config[1] =='F':
731
+
styledEcho"List of float Min/Max limit pairs per each component / simplex dimension, formatted with `[`, `@[`, or `{` - e.g. ", styleBright, fgMagenta, "[[0,1],[0,0.666],[0.167,0.5]]", resetStyle, "):"
732
+
limitStr =readLine(stdin).strip()
733
+
else:
734
+
styledEcho"List of integer Min/Max limit pairs per each component / simplex dimension, expressed as qunata of ndiv, formatted with `[`, `@[`, or `{` - e.g. ", styleBright, fgMagenta, "[[0,12],[0,8],[2,6]]", resetStyle, "):"
735
+
limitStr =readLine(stdin).strip()
736
+
727
737
var npyName: string="nimplex_"& config[0..1] &"_"&$dim &"_"&$ndiv &".npy"
0 commit comments