Lines Matching refs:times
93 LevelsCrossings(std::vector<std::vector<double> > const ×,
97 for (unsigned i=0; i<times.size(); i++){
99 for (unsigned j=0; j<times[i].size(); j++){
101 lc.pt = f.valueAt(times[i][j]);
102 lc.t = times[i][j];
103 lc.sign = ( dx.valueAt(times[i][j])>0 );
386 std::vector<std::vector<double> > times;
387 times = multi_roots(x,levels);
391 for (unsigned i=0; i<times.size(); i++){
392 if ( times[i].size()>0 ){
393 double last_t = times[i][0]-1;//ugly hack!!
394 for (unsigned j=0; j<times[i].size(); j++){
395 if (times[i][j]-last_t >0.000001){
396 last_t = times[i][j];
402 times = cleaned_times;
405 LevelsCrossings lscs(times,f,dx);