-
Notifications
You must be signed in to change notification settings - Fork 161
Dual simplex performance improvements #1043
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
base: main
Are you sure you want to change the base?
Changes from all commits
652aeeb
b4121cc
3c20852
f41e81b
db17f4d
46d8a31
45ca97e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -435,7 +435,7 @@ class pseudo_costs_t { | |
| pseudo_cost_num_up(num_variables), | ||
| pseudo_cost_mutex_up(num_variables), | ||
| pseudo_cost_mutex_down(num_variables), | ||
| AT(1, 1, 1) | ||
| Arow(1, 1, 1) | ||
| { | ||
| } | ||
|
|
||
|
|
@@ -526,7 +526,7 @@ class pseudo_costs_t { | |
|
|
||
| reliability_branching_settings_t<i_t, f_t> reliability_branching_settings; | ||
|
|
||
| csc_matrix_t<i_t, f_t> AT; // Transpose of the constraint matrix A | ||
| csr_matrix_t<i_t, f_t> Arow; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it an invariant that all the nonbasic coefficients appear first, or only in some contexts? Consider documenting. I'm also wondering if there's scope for a helper struct to group
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In order to use the compute_delta_z function the nonbasic coefficients must appear first. I can add some documentation and consider grouping with a struct. |
||
| std::vector<omp_atomic_t<f_t>> pseudo_cost_sum_up; | ||
| std::vector<omp_atomic_t<f_t>> pseudo_cost_sum_down; | ||
| std::vector<omp_atomic_t<i_t>> pseudo_cost_num_up; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.