Home
last modified time | relevance | path

Searched refs:stopcond (Results 1 – 8 of 8) sorted by relevance

/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/libnest2d/include/libnest2d/
H A Dlibnest2d.hpp77 StopCondition stopcond = []{ return false; }; in __anona070cb720102() member
81 NestControl(StopCondition sc) : stopcond{std::move(sc)} {} in NestControl()
83 : progressfn{std::move(pr)}, stopcond{std::move(sc)} in NestControl()
98 if(ctl.stopcond) nester.stopCondition(ctl.stopcond);
/dports/devel/libnest2d-ultimaker/libnest2d-4d6fb4d/include/libnest2d/
H A Dlibnest2d.hpp76 StopCondition stopcond = []{ return false; }; in __anonf35bbbd10102() member
80 NestControl(StopCondition sc) : stopcond{std::move(sc)} {} in NestControl()
82 : progressfn{std::move(pr)}, stopcond{std::move(sc)} in NestControl()
97 if(ctl.stopcond) nester.stopCondition(ctl.stopcond);
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/libslic3r/SLA/
H A DRotfinder.hpp34 std::function<bool()> stopcond = [] () { return false; } in __anonf13a3d7e0202()
H A DRotfinder.cpp244 std::function<bool()> stopcond) in find_best_rotation() argument
285 rot = find_min_score<2>(objfn, inputs.begin(), inputs.end(), stopcond); in find_best_rotation()
291 .stop_condition(stopcond), in find_best_rotation()
/dports/net/linknx/linknx-0.0.1.32/src/
H A Dthreads.h34 typedef void (Runable::*THREADENTRY) (pth_sem_t * stopcond);
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/libnest2d/include/libnest2d/selections/
H A Ddjd_heuristic.hpp588 StopCondition stopcond = this->stopcond_; in packItems() local
592 stopcond, in packItems()
604 while(!not_packed.empty() && !stopcond()) { in packItems()
609 while(it != not_packed.end() && !stopcond() && in packItems()
/dports/devel/libnest2d-ultimaker/libnest2d-4d6fb4d/include/libnest2d/selections/
H A Ddjd_heuristic.hpp588 StopCondition stopcond = this->stopcond_; in packItems() local
592 stopcond, in packItems()
604 while(!not_packed.empty() && !stopcond()) { in packItems()
609 while(it != not_packed.end() && !stopcond() && in packItems()
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/libslic3r/
H A DArrange.cpp314 std::function<bool(void)> stopcond) in AutoArranger() argument
383 if (stopcond) m_pck.stopCondition(stopcond); in AutoArranger()