Esempio n. 1
0
        public static void Create(int from, int to)
        {
            IntObjective = "__integers";
            IntObjective.Create("dummy");

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