Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | solver: Make `params` public. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
5fd72003f9e9b7772ef7e2fc675e41be |
| User & Date: | fifr 2016-09-28 11:26:30.754 |
Context
|
2016-09-28
| ||
| 11:27 | solver: Add validity check for parameters. check-in: 4cf9ac6c65 user: fifr tags: trunk | |
| 11:26 | solver: Make `params` public. check-in: 5fd72003f9 user: fifr tags: trunk | |
| 11:25 | Remove `max_minorants` and `set_max_minorants` from master problems. check-in: 4d3eca3661 user: fifr tags: trunk | |
Changes
Changes to src/solver.rs.
| ︙ | ︙ | |||
258 259 260 261 262 263 264 |
pub struct Solver<P>
where P : for <'a> FirstOrderProblem<'a>
{
/// The first order problem description.
problem : P,
/// The solver parameter.
| | | 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
pub struct Solver<P>
where P : for <'a> FirstOrderProblem<'a>
{
/// The first order problem description.
problem : P,
/// The solver parameter.
pub params : SolverParams,
/// Termination predicate.
pub terminator: Box<Terminator>,
/// Weighter heuristic.
pub weighter: Box<Weighter>,
|
| ︙ | ︙ |