Lines Matching refs:solutions
59 l->solutions = calloc(sizeof(l->solutions[0]), node_count);
61 memset(l->solutions, ~0, sizeof(l->solutions[0]) * node_count);
80 free(l->solutions);
138 lcra_test_linear(struct lcra_state *l, unsigned *solutions, unsigned i)
141 signed constant = solutions[i];
144 if (solutions[j] == ~0) continue;
146 signed lhs = solutions[j] - constant;
162 if (l->solutions[step] != ~0) continue;
181 l->solutions[step] = ((m * P + n) << shift) + class_start;
182 succ = lcra_test_linear(l, l->solutions, step);