Skip to content

Commit

Permalink
add reminder that IPARM[10]=2 is probably wrong
Browse files Browse the repository at this point in the history
- setting it to 1 would give the line "Scaling is turned ON"
  • Loading branch information
svigerske committed Dec 9, 2024
1 parent d63fe2c commit db0e648
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ bool PardisoMKLSolverInterface::InitializeImpl(
IPARM_[5] = 1;// Overwrite right-hand side
IPARM_[7] = max_iterref_steps;
IPARM_[9] = 12;// pivot perturbation (as higher as less perturbation)
IPARM_[10] = 2;// enable scaling (recommended for interior-point indefinite matrices)
IPARM_[10] = 2;// enable scaling (recommended for interior-point indefinite matrices) //FIXME there is no value 2 for this option
IPARM_[12] = (int)match_strat_;// enable matching (recommended, as above)
IPARM_[20] = 3;// bunch-kaufman pivoting
IPARM_[23] = 1;// parallel fac
Expand Down

0 comments on commit db0e648

Please sign in to comment.