Skip to content

Commit

Permalink
solver option update
Browse files Browse the repository at this point in the history
  • Loading branch information
harshangrjn committed Sep 6, 2022
1 parent 97b9105 commit 22c4402
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ If you find the underlying piecewise polyhedral formulations implemented in Alpi
}
@article{alpine_OptOnline2022,
title={Piecewise Polyhedral Relaxations of Multilinear Optimization},
author={Kim, Jongeun and Richard, Jean-Philippe P. and Tawarmalani, Mohit},
eprinttype={Optimization Online},
date={2022}
title={Piecewise Polyhedral Relaxations of Multilinear Optimization},
author={Kim, Jongeun and Richard, Jean-Philippe P. and Tawarmalani, Mohit},
eprinttype={Optimization Online},
date={2022}
}
```
8 changes: 4 additions & 4 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ If you find the underlying piecewise polyhedral formulations implemented in Alpi
}
@article{alpine_OptOnline2022,
title={Piecewise Polyhedral Relaxations of Multilinear Optimization},
author={Kim, Jongeun and Richard, Jean-Philippe P. and Tawarmalani, Mohit},
eprinttype={Optimization Online},
date={2022}
title={Piecewise Polyhedral Relaxations of Multilinear Optimization},
author={Kim, Jongeun and Richard, Jean-Philippe P. and Tawarmalani, Mohit},
eprinttype={Optimization Online},
date={2022}
}
```
3 changes: 0 additions & 3 deletions src/solver_options.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ mutable struct OptimizerOptions
convhull_ebd_ibs::Bool # Enable independent branching scheme
convhull_ebd_link::Bool # Linking constraints between x and α, type 1 uses hierarchical and type 2 uses big-m
convhull_warmstart::Bool # Warm start the bounding MIP
convhull_no_good_cuts::Bool # Add no-good cuts to MIP based on the pool solutions
linking_constraints::Bool # Multilinear linking constraint feature
linking_constraints_degree_limit::Int64 # Degree of shared multilinear terms up to which the linking constraints are built and added

Expand Down Expand Up @@ -95,7 +94,6 @@ function get_default_options()
convhull_ebd_ibs = false
convhull_ebd_link = false
convhull_warmstart = true
convhull_no_good_cuts = false
linking_constraints = true
linking_constraints_degree_limit = 4 # check up to quadrilinear sharing across terms

Expand Down Expand Up @@ -140,7 +138,6 @@ function get_default_options()
convhull_ebd_ibs,
convhull_ebd_link,
convhull_warmstart,
convhull_no_good_cuts,
linking_constraints,
linking_constraints_degree_limit,
presolve_track_time,
Expand Down

0 comments on commit 22c4402

Please sign in to comment.