Lines Matching refs:solutions
32 std::vector<double> &solutions;
37 : degree(_degree), N(degree+1), solutions(sol), bc(degree)
56 std::vector<double> &solutions, /* RETURN candidate t-values */
60 Bernsteins B(degree, solutions);
65 find_bernstein_roots(std::vector<double> &solutions, /* RETURN candidate t-values */
69 Bernsteins B(bz.degree(), solutions);
101 if (n_crossings == 0) return; // no solutions here
114 solutions.push_back(left_t - Ax*w[0] / Ay);
145 solutions.push_back(r*right_t + (1-r)*left_t);
179 solutions.push_back(mid_t);