public static void Create(int from, int to) { IntObjective = "__integers"; IntObjective.Create("dummy"); for (int i = from; i < to; i++) { IntObjective[i.ToString()] = i; } }
public static void Setup() { BOOL_VALUES.Create("dummy"); BOOL_VALUES["true"] = 1; BOOL_VALUES["false"] = 0; }