-
-
Notifications
You must be signed in to change notification settings - Fork 2
Refine CLI #31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refine CLI #31
Conversation
5533970 to
3720e21
Compare
| //****************************************************************************** | ||
| void Board::add_fixed_meshline_policies(Axis axis) { | ||
| auto [bar, i, _] = Progress::Bar::build( | ||
| fixed_meshline_policy_creators[axis].size(), |
Check notice
Code scanning / CodeQL
Unused local variable Note
| //****************************************************************************** | ||
| void ConflictManager::auto_solve_all_edge_in_polygon(Plane const plane) { | ||
| for(auto const& conflict : get_current_state().all_edge_in_polygons[plane]) | ||
| auto [bar, i, _] = Progress::Bar::build( |
Check notice
Code scanning / CodeQL
Unused local variable Note
| //****************************************************************************** | ||
| void ConflictManager::auto_solve_all_colinear_edges(Axis const axis) { | ||
| for(auto const& conflict : get_current_state().all_colinear_edges[axis]) | ||
| auto [bar, i, _] = Progress::Bar::build( |
Check notice
Code scanning / CodeQL
Unused local variable Note
|
|
||
| // // TODO C++26 already implemented | ||
| // auto [bar, _, _] = Progress::Bar::build( | ||
| auto [bar, _, __] = Progress::Bar::build( |
Check notice
Code scanning / CodeQL
Unused local variable Note
|
|
||
| // // TODO C++26 already implemented | ||
| // auto [bar, _, _] = Progress::Bar::build( | ||
| auto [bar, _, __] = Progress::Bar::build( |
Check notice
Code scanning / CodeQL
Unused local variable Note
|
|
||
| auto dimension_view = create_view(state.intervals[axis]); | ||
|
|
||
| auto [bar, i, _] = Progress::Bar::build( |
Check notice
Code scanning / CodeQL
Unused local variable Note
3720e21 to
ad6af49
Compare
ad9ca53 to
e4dbb82
Compare
|


This, along with other minor improvements and refactorings, mainly implements some progress bars to monitor the process in case of large files, both in the GUI and in the CLI.
Trying instructions:
[CTRL]+[O]->test/run_dual_dipole.xml.dmaxto500and observe again.