conspire 0.7.6

The Rust interface to conspire.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
#[cfg(test)]
mod test;

use super::{
    super::{
        Erase, Hessian, HessianBlock, Is, Jacobian, LuDecomposition, Matrix, Quantity, Scalar,
        Solution, SquareMatrix, Tensor, Vector,
        sparse::{CscMatrix, SparseSolver},
    },
    BacktrackingLineSearch, EqualityConstraint, FirstOrderRootFinding, FirstOrderRootFindingBlock,
    FirstOrderRootFindingIncremental, LineSearch, LineSearchError, OptimizationError,
    SecondOrderOptimization, SecondOrderOptimizationBlock, SecondOrderOptimizationIncremental,
    SolveStrategy, Tolerances, TrustRegion,
};
use crate::math::Norm;
use crate::units::{Dimensionless, UnitDiv, UnitMul, UnitSum};
use std::{
    fmt::{self, Debug, Formatter},
    ops::{Div, Mul},
};

/// The Newton-Raphson method.
#[derive(Clone)]
pub struct NewtonRaphson {
    /// Absolute error tolerances.
    pub abs_tol: Tolerances,
    /// Norm type for error evaluation.
    pub error_norm: Norm,
    /// Line search algorithm.
    pub line_search: LineSearch,
    /// Maximum number of steps.
    pub max_steps: usize,
    /// Relative error tolerance.
    pub rel_tol: Option<Scalar>,
    /// How far the step is trusted.
    pub trust_region: TrustRegion,
}

impl<J, X> BacktrackingLineSearch<J, X> for NewtonRaphson {
    fn get_line_search(&self) -> &LineSearch {
        &self.line_search
    }
}

impl Debug for NewtonRaphson {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "NewtonRaphson {{ abs_tol: {:?}, line_search: {}, max_steps: {:?}, rel_tol: {:?}, trust_region: {:?} }}",
            self.abs_tol, self.line_search, self.max_steps, self.rel_tol, self.trust_region
        )
    }
}

impl Default for NewtonRaphson {
    fn default() -> Self {
        Self {
            abs_tol: Tolerances::default(),
            error_norm: Norm::Chebyshev,
            line_search: LineSearch::None,
            max_steps: 25,
            rel_tol: None,
            trust_region: TrustRegion::None,
        }
    }
}

impl<F, J, X, E> FirstOrderRootFinding<F, J, X> for NewtonRaphson
where
    F: Jacobian,
    for<'a> &'a F: Div<J, Output = X>,
    J: Hessian,
    F: Erase<Erased = E>,
    X: Erase<Erased = E> + Solution,
    E: Tensor,
    <X as Tensor>::Unit: UnitDiv<<X as Tensor>::Unit, Output = Dimensionless>,
    for<'a> &'a X: Mul<Quantity<Dimensionless>, Output = X> + Mul<Scalar, Output = X>,
    for<'a> &'a Matrix: Mul<&'a X, Output = Vector>,
{
    fn root(
        &self,
        function: impl FnMut(&X) -> Result<F, String>,
        jacobian: impl FnMut(&X) -> Result<J, String>,
        initial_guess: X,
        equality_constraint: EqualityConstraint,
        sparse: Option<SparseSolver>,
    ) -> Result<X, OptimizationError> {
        match match equality_constraint {
            EqualityConstraint::Fixed(indices) => constrained_fixed(
                self,
                |_: &X| panic!("No line search in root finding"),
                function,
                jacobian,
                |_: &X, _: &Vector, _: Scalar, _: bool| Ok(()),
                initial_guess,
                sparse,
                indices,
            ),
            EqualityConstraint::Linear(constraint_matrix, constraint_rhs) => constrained(
                self,
                |_: &X| panic!("No line search in root finding"),
                function,
                jacobian,
                |_: &X, _: &Vector, _: Scalar, _: bool| Ok(()),
                initial_guess,
                sparse,
                constraint_matrix,
                constraint_rhs,
            ),
            EqualityConstraint::None => unconstrained(
                self,
                |_: &X| panic!("No line search in root finding"),
                function,
                jacobian,
                initial_guess,
                sparse,
            ),
        } {
            Ok(solution) => Ok(solution),
            Err(error) => Err(OptimizationError::Upstream(
                format!("{error}"),
                format!("{self:?}"),
            )),
        }
    }
}

impl<F, J, X, E> FirstOrderRootFindingIncremental<F, J, X> for NewtonRaphson
where
    F: Jacobian,
    for<'a> &'a F: Div<J, Output = X>,
    J: Hessian,
    F: Erase<Erased = E>,
    X: Erase<Erased = E> + Solution,
    E: Tensor,
    <X as Tensor>::Unit: UnitDiv<<X as Tensor>::Unit, Output = Dimensionless>,
    for<'a> &'a X: Mul<Quantity<Dimensionless>, Output = X> + Mul<Scalar, Output = X>,
    for<'a> &'a Matrix: Mul<&'a X, Output = Vector>,
{
    fn root_incremental(
        &self,
        function: impl FnMut(&X) -> Result<F, String>,
        jacobian: impl FnMut(&X) -> Result<J, String>,
        update: impl FnMut(&X, &Vector, Scalar, bool) -> Result<(), String>,
        initial_guess: X,
        equality_constraint: EqualityConstraint,
        sparse: Option<SparseSolver>,
    ) -> Result<X, OptimizationError> {
        match match equality_constraint {
            EqualityConstraint::Fixed(indices) => constrained_fixed(
                self,
                |_: &X| panic!("No line search in root finding"),
                function,
                jacobian,
                update,
                initial_guess,
                sparse,
                indices,
            ),
            EqualityConstraint::Linear(constraint_matrix, constraint_rhs) => constrained(
                self,
                |_: &X| panic!("No line search in root finding"),
                function,
                jacobian,
                update,
                initial_guess,
                sparse,
                constraint_matrix,
                constraint_rhs,
            ),
            EqualityConstraint::None => unimplemented!(
                "An unconstrained solution has no chained vector to lend the increment through."
            ),
        } {
            Ok(solution) => Ok(solution),
            Err(error) => Err(OptimizationError::Upstream(
                format!("{error}"),
                format!("{self:?}"),
            )),
        }
    }
}

impl<F, J, H, X, E> SecondOrderOptimization<F, J, H, X> for NewtonRaphson
where
    F: Erase<Erased = Scalar> + Tensor,
    <J as Tensor>::Unit: UnitMul<<X as Tensor>::Unit>,
    <<J as Tensor>::Unit as UnitMul<<X as Tensor>::Unit>>::Output: UnitSum,
    <<<J as Tensor>::Unit as UnitMul<<X as Tensor>::Unit>>::Output as UnitSum>::Output:
        Is<<F as Tensor>::Unit>,
    H: Hessian,
    J: Jacobian,
    for<'a> &'a J: Div<H, Output = X>,
    J: Erase<Erased = E>,
    X: Erase<Erased = E> + Solution,
    E: Tensor,
    <X as Tensor>::Unit: UnitDiv<<X as Tensor>::Unit, Output = Dimensionless>,
    for<'a> &'a X: Mul<Quantity<Dimensionless>, Output = X> + Mul<Scalar, Output = X>,
    for<'a> &'a Matrix: Mul<&'a X, Output = Vector>,
{
    fn minimize(
        &self,
        mut function: impl FnMut(&X) -> Result<F, String>,
        jacobian: impl FnMut(&X) -> Result<J, String>,
        hessian: impl FnMut(&X) -> Result<H, String>,
        initial_guess: X,
        equality_constraint: EqualityConstraint,
        sparse: Option<SparseSolver>,
    ) -> Result<X, OptimizationError> {
        let function = move |argument: &X| function(argument).map(|value| *value.erase());
        match match equality_constraint {
            EqualityConstraint::Fixed(indices) => constrained_fixed(
                self,
                function,
                jacobian,
                hessian,
                |_: &X, _: &Vector, _: Scalar, _: bool| Ok(()),
                initial_guess,
                sparse,
                indices,
            ),
            EqualityConstraint::Linear(constraint_matrix, constraint_rhs) => constrained(
                self,
                function,
                jacobian,
                hessian,
                |_: &X, _: &Vector, _: Scalar, _: bool| Ok(()),
                initial_guess,
                sparse,
                constraint_matrix,
                constraint_rhs,
            ),
            EqualityConstraint::None => {
                unconstrained(self, function, jacobian, hessian, initial_guess, sparse)
            }
        } {
            Ok(solution) => Ok(solution),
            Err(error) => Err(OptimizationError::Upstream(
                format!("{error}"),
                format!("{self:?}"),
            )),
        }
    }
}

impl<F, J, H, X, E> SecondOrderOptimizationIncremental<F, J, H, X> for NewtonRaphson
where
    F: Erase<Erased = Scalar> + Tensor,
    <J as Tensor>::Unit: UnitMul<<X as Tensor>::Unit>,
    <<J as Tensor>::Unit as UnitMul<<X as Tensor>::Unit>>::Output: UnitSum,
    <<<J as Tensor>::Unit as UnitMul<<X as Tensor>::Unit>>::Output as UnitSum>::Output:
        Is<<F as Tensor>::Unit>,
    H: Hessian,
    J: Jacobian,
    for<'a> &'a J: Div<H, Output = X>,
    J: Erase<Erased = E>,
    X: Erase<Erased = E> + Solution,
    E: Tensor,
    <X as Tensor>::Unit: UnitDiv<<X as Tensor>::Unit, Output = Dimensionless>,
    for<'a> &'a X: Mul<Quantity<Dimensionless>, Output = X> + Mul<Scalar, Output = X>,
    for<'a> &'a Matrix: Mul<&'a X, Output = Vector>,
{
    fn minimize_incremental(
        &self,
        mut function: impl FnMut(&X) -> Result<F, String>,
        jacobian: impl FnMut(&X) -> Result<J, String>,
        hessian: impl FnMut(&X) -> Result<H, String>,
        update: impl FnMut(&X, &Vector, Scalar, bool) -> Result<(), String>,
        initial_guess: X,
        equality_constraint: EqualityConstraint,
        sparse: Option<SparseSolver>,
    ) -> Result<X, OptimizationError> {
        let function = move |argument: &X| function(argument).map(|value| *value.erase());
        match match equality_constraint {
            EqualityConstraint::Fixed(indices) => constrained_fixed(
                self,
                function,
                jacobian,
                hessian,
                update,
                initial_guess,
                sparse,
                indices,
            ),
            EqualityConstraint::Linear(constraint_matrix, constraint_rhs) => constrained(
                self,
                function,
                jacobian,
                hessian,
                update,
                initial_guess,
                sparse,
                constraint_matrix,
                constraint_rhs,
            ),
            EqualityConstraint::None => unimplemented!(
                "An unconstrained solution has no chained vector to lend the increment through."
            ),
        } {
            Ok(solution) => Ok(solution),
            Err(error) => Err(OptimizationError::Upstream(
                format!("{error}"),
                format!("{self:?}"),
            )),
        }
    }
}

impl<U, V, Ru, Rv, Kuu, Kvu, Kuv, Kvv> FirstOrderRootFindingBlock<U, V, Ru, Rv, Kuu, Kvu, Kuv, Kvv>
    for NewtonRaphson
where
    U: Solution,
    V: Solution,
    Ru: Jacobian,
    Rv: Jacobian,
    Kuu: HessianBlock,
    Kvu: HessianBlock,
    Kuv: HessianBlock,
    Kvv: HessianBlock,
    for<'a> &'a CscMatrix: Mul<&'a U, Output = Vector> + Mul<&'a V, Output = Vector>,
{
    fn root_block(
        &self,
        residual_global: impl FnMut(&U, &V) -> Result<Ru, String>,
        residual_local: impl FnMut(&U, &V) -> Result<Rv, String>,
        tangents: impl FnMut(&U, &V) -> Result<(Kuu, Kvu, Kuv, Kvv), String>,
        initial_guess: (U, V),
        constraint_global: (CscMatrix, Vector),
        constraint_local: (CscMatrix, Vector),
        sparse: Option<SparseSolver>,
        strategy: SolveStrategy,
    ) -> Result<(U, V), OptimizationError> {
        match blocked(
            self,
            |_: &U, _: &V| panic!("No line search in root finding"),
            false,
            residual_global,
            residual_local,
            tangents,
            initial_guess,
            constraint_global,
            constraint_local,
            sparse,
            strategy,
        ) {
            Ok(solution) => Ok(solution),
            Err(error) => Err(OptimizationError::Upstream(
                format!("{error}"),
                format!("{self:?}"),
            )),
        }
    }
}

impl<F, U, V, Ru, Rv, Kuu, Kvu, Kuv, Kvv>
    SecondOrderOptimizationBlock<F, U, V, Ru, Rv, Kuu, Kvu, Kuv, Kvv> for NewtonRaphson
where
    F: Erase<Erased = Scalar> + Tensor,
    <Ru as Tensor>::Unit: UnitMul<<U as Tensor>::Unit>,
    <<Ru as Tensor>::Unit as UnitMul<<U as Tensor>::Unit>>::Output: UnitSum,
    <<<Ru as Tensor>::Unit as UnitMul<<U as Tensor>::Unit>>::Output as UnitSum>::Output:
        Is<<F as Tensor>::Unit>,
    <Rv as Tensor>::Unit: UnitMul<<V as Tensor>::Unit>,
    <<Rv as Tensor>::Unit as UnitMul<<V as Tensor>::Unit>>::Output: UnitSum,
    <<<Rv as Tensor>::Unit as UnitMul<<V as Tensor>::Unit>>::Output as UnitSum>::Output:
        Is<<F as Tensor>::Unit>,
    U: Solution,
    V: Solution,
    Ru: Jacobian,
    Rv: Jacobian,
    Kuu: HessianBlock,
    Kvu: HessianBlock,
    Kuv: HessianBlock,
    Kvv: HessianBlock,
    for<'a> &'a CscMatrix: Mul<&'a U, Output = Vector> + Mul<&'a V, Output = Vector>,
{
    fn minimize_block(
        &self,
        mut function: impl FnMut(&U, &V) -> Result<F, String>,
        residual_global: impl FnMut(&U, &V) -> Result<Ru, String>,
        residual_local: impl FnMut(&U, &V) -> Result<Rv, String>,
        tangents: impl FnMut(&U, &V) -> Result<(Kuu, Kvu, Kuv, Kvv), String>,
        initial_guess: (U, V),
        constraint_global: (CscMatrix, Vector),
        constraint_local: (CscMatrix, Vector),
        sparse: Option<SparseSolver>,
        strategy: SolveStrategy,
    ) -> Result<(U, V), OptimizationError> {
        let function = move |global: &U, local: &V| function(global, local).map(|v| *v.erase());
        match blocked(
            self,
            function,
            true,
            residual_global,
            residual_local,
            tangents,
            initial_guess,
            constraint_global,
            constraint_local,
            sparse,
            strategy,
        ) {
            Ok(solution) => Ok(solution),
            Err(error) => Err(OptimizationError::Upstream(
                format!("{error}"),
                format!("{self:?}"),
            )),
        }
    }
}

const PENALTY_SAFETY: Scalar = 2.0;

fn violation<M, T>(constraint_matrix: &M, constraint_rhs: &Vector, variables: &T) -> Scalar
where
    for<'a> &'a M: Mul<&'a T, Output = Vector>,
{
    (constraint_rhs - constraint_matrix * variables)
        .iter()
        .map(|entry| entry.abs())
        .sum()
}

/// Raises the penalty until it outweighs every multiplier the step would reach.
///
/// The penalty only ever climbs, so a step taken where the multipliers were
/// larger is not undone by one taken where they are smaller.
fn raise_penalty<'a>(
    penalty: Scalar,
    multipliers: impl Iterator<Item = (&'a Scalar, &'a Scalar)>,
) -> Scalar {
    penalty.max(
        PENALTY_SAFETY
            * multipliers.fold(0.0, |largest: Scalar, (multiplier, decrement)| {
                largest.max((multiplier - decrement).abs())
            }),
    )
}

/// The slope of the merit function along the step.
///
/// Stated in the sign the line search reads, where a positive slope is the
/// decrease a step buys, so the violation the penalty charges for adds to the
/// descent the gradient promises rather than subtracting from it.
fn merit_slope<'a>(
    gradients: impl Iterator<Item = (&'a Scalar, &'a Scalar)>,
    violated: Scalar,
) -> Scalar {
    gradients
        .map(|(gradient, decrement)| gradient * decrement)
        .sum::<Scalar>()
        + violated
}

/// Backtracks on the merit function, or takes the whole step where there is
/// nothing to backtrack along.
///
/// The line search refuses a direction that is not one of descent, and cannot
/// resolve one whose descent is finer than the merit it would be measured
/// against: the conditions all compare a decrease that the subtraction has
/// already rounded away. Either is met by stepping whole rather than by
/// asking and being turned away.
///
/// A slope is a merit against a step, so it is the merit it is judged
/// against, which leaves the comparison a ratio and the threshold the
/// precision that ratio is held in. A number of its own would carry units and
/// mean something different at every scale.
fn backtrack_penalty(
    newton_raphson: &NewtonRaphson,
    merit: impl FnMut(Scalar) -> Result<Scalar, String>,
    value: Scalar,
    slope: Scalar,
) -> Result<Scalar, OptimizationError> {
    if slope <= Scalar::EPSILON * value.abs() {
        Ok(1.0)
    } else {
        newton_raphson
            .line_search
            .backtrack_merit(merit, value, slope, 1.0)
            .map_err(|error| {
                OptimizationError::Upstream(format!("{error}"), format!("{newton_raphson:?}"))
            })
    }
}

#[allow(clippy::too_many_arguments)]
fn kkt_entry<Kuu, Kvu, Kuv, Kvv>(
    row: usize,
    column: usize,
    num_global: usize,
    num_outer: usize,
    num_local: usize,
    tangent_uu: &Kuu,
    tangent_vu: &Kvu,
    tangent_uv: &Kuv,
    tangent_vv: &Kvv,
    constraint_matrix_global: &CscMatrix,
    constraint_matrix_local: &CscMatrix,
) -> Scalar
where
    Kuu: HessianBlock,
    Kvu: HessianBlock,
    Kuv: HessianBlock,
    Kvv: HessianBlock,
{
    let local = num_outer + num_local;
    let row_global = row < num_global;
    let row_local = (num_outer..local).contains(&row);
    let column_global = column < num_global;
    let column_local = (num_outer..local).contains(&column);
    if row_global && column_global {
        tangent_uu.entry(row, column)
    } else if row_global && column_local {
        tangent_uv.entry(row, column - num_outer)
    } else if row_local && column_global {
        tangent_vu.entry(row - num_outer, column)
    } else if row_local && column_local {
        tangent_vv.entry(row - num_outer, column - num_outer)
    } else if row_global && (num_global..num_outer).contains(&column) {
        -constraint_matrix_global.entry(column - num_global, row)
    } else if (num_global..num_outer).contains(&row) && column_global {
        -constraint_matrix_global.entry(row - num_global, column)
    } else if row_local && column >= local {
        -constraint_matrix_local.entry(column - local, row - num_outer)
    } else if row >= local && column_local {
        -constraint_matrix_local.entry(row - local, column - num_outer)
    } else {
        0.0
    }
}

/// Shortens the step until it lands somewhere the problem can be evaluated,
/// or gives up.
///
/// This asks nothing of a merit function, so it is the one line search root
/// finding can also take, and it says nothing about descent. Where a trial
/// point is, and what makes it reachable, is left to the formulation asking:
/// whatever was eliminated is stepped alongside, so the state to test is the
/// one everything arrives at together.
fn backtrack_errors(
    newton_raphson: &NewtonRaphson,
    mut reachable: impl FnMut(Scalar) -> bool,
    cut_back: Scalar,
    max_steps: usize,
) -> Result<Scalar, OptimizationError> {
    let mut trial_size = 1.0;
    for _ in 0..max_steps {
        if reachable(trial_size) {
            return Ok(trial_size);
        }
        trial_size *= cut_back
    }
    Err(OptimizationError::Upstream(
        format!(
            "{}",
            LineSearchError::MaximumStepsReached(
                format!("{:?}", newton_raphson.line_search),
                max_steps
            )
        ),
        format!("{newton_raphson:?}"),
    ))
}

/// Whether every block of the residual has come within the tolerance.
///
/// Each block is measured on its own against a tolerance of its own, the
/// constraint violation being of another kind entirely from the residual, and
/// either kind in one block from that in another.
///
/// The scales are what each block was on the first step, so that the relative
/// tolerance is compared against a ratio of two norms of the same kind, and
/// means the same thing whatever units that kind is measured in.
fn converged(
    newton_raphson: &NewtonRaphson,
    residual: &Vector,
    variables: usize,
    scales: &mut Option<(Scalar, Scalar)>,
) -> bool {
    let norms = (
        newton_raphson
            .error_norm
            .over(residual.iter().take(variables).copied()),
        newton_raphson
            .error_norm
            .over(residual.iter().skip(variables).copied()),
    );
    let scales = scales.get_or_insert(norms);
    let met = |norm: Scalar, scale: Scalar, abs_tol: Scalar| {
        norm < abs_tol
            || newton_raphson
                .rel_tol
                .is_some_and(|rel_tol| norm / scale < rel_tol)
    };
    met(norms.0, scales.0, newton_raphson.abs_tol.residual)
        && met(norms.1, scales.1, newton_raphson.abs_tol.constraint)
}

/// Shortens the step until the variables move no further than the maximum.
///
/// Only the variables are measured, the multipliers being of another kind
/// entirely, but everything is scaled together so that the direction survives.
fn limit_decrement(newton_raphson: &NewtonRaphson, decrements: &mut [(&mut Vector, usize)]) {
    if let TrustRegion::Fixed { radius, norm } = newton_raphson.trust_region {
        let size = norm.over(
            decrements
                .iter()
                .flat_map(|(decrement, variables)| decrement.iter().take(*variables).copied()),
        );
        if size > radius {
            decrements
                .iter_mut()
                .for_each(|(decrement, _)| **decrement *= radius / size)
        }
    }
}

fn kkt_block<K>(
    tangent: &K,
    constraint_matrix: &CscMatrix,
    size: usize,
    block: &mut SquareMatrix,
    offset: usize,
) where
    K: HessianBlock,
{
    tangent.fill_into_block(block, offset, offset);
    constraint_matrix.iter().for_each(|(a, j, entry)| {
        block[offset + size + a][offset + j] = -entry;
        block[offset + j][offset + size + a] = -entry;
    })
}

fn kkt_residual<R, T>(
    residual: R,
    multipliers: &Vector,
    constraint_matrix: &CscMatrix,
    constraint_rhs: &Vector,
    variables: &T,
    chained: &mut Vector,
) where
    R: Jacobian,
    for<'a> &'a CscMatrix: Mul<&'a T, Output = Vector>,
{
    (residual - multipliers * constraint_matrix)
        .fill_into_chained(constraint_rhs - constraint_matrix * variables, chained)
}

/// Converges the local variables at fixed global ones.
///
/// The condensed strategy treats the local variables as a function of the
/// global ones, so anywhere the global variables are moved to, this is what
/// the local ones become.
#[allow(clippy::too_many_arguments)]
fn converge_local<U, V, Rv, Kuu, Kvu, Kuv, Kvv>(
    local_solver: &NewtonRaphson,
    residual_local: &mut impl FnMut(&U, &V) -> Result<Rv, String>,
    tangents: &mut impl FnMut(&U, &V) -> Result<(Kuu, Kvu, Kuv, Kvv), String>,
    global: &U,
    local: &mut V,
    multipliers_local: &mut Vector,
    constraint_matrix_local: &CscMatrix,
    constraint_rhs_local: &Vector,
    num_local: usize,
    update_inner: &mut Vector,
    tangent_inner: &mut SquareMatrix,
    factorization: &mut LuDecomposition,
) -> Result<(), OptimizationError>
where
    Rv: Jacobian,
    Kvv: HessianBlock,
    V: Solution,
    for<'a> &'a CscMatrix: Mul<&'a V, Output = Vector>,
{
    let mut local_steps = 0;
    let mut scales = None;
    loop {
        kkt_residual(
            residual_local(global, local)?,
            multipliers_local,
            constraint_matrix_local,
            constraint_rhs_local,
            local,
            update_inner,
        );
        if converged(local_solver, update_inner, num_local, &mut scales)
            || local_steps == local_solver.max_steps
        {
            return Ok(());
        }
        local_steps += 1;
        let (_, _, _, tangent) = tangents(global, local)?;
        kkt_block(
            &tangent,
            constraint_matrix_local,
            num_local,
            tangent_inner,
            0,
        );
        tangent_inner.factorize_lu_into(factorization)?;
        let mut decrement = factorization.solve(update_inner);
        limit_decrement(local_solver, &mut [(&mut decrement, num_local)]);
        local.decrement_from_chained(multipliers_local, &decrement)
    }
}

#[allow(clippy::too_many_arguments)]
fn blocked<U, V, Ru, Rv, Kuu, Kvu, Kuv, Kvv>(
    newton_raphson: &NewtonRaphson,
    mut function: impl FnMut(&U, &V) -> Result<Scalar, String>,
    minimizing: bool,
    mut residual_global: impl FnMut(&U, &V) -> Result<Ru, String>,
    mut residual_local: impl FnMut(&U, &V) -> Result<Rv, String>,
    mut tangents: impl FnMut(&U, &V) -> Result<(Kuu, Kvu, Kuv, Kvv), String>,
    initial_guess: (U, V),
    constraint_global: (CscMatrix, Vector),
    constraint_local: (CscMatrix, Vector),
    sparse: Option<SparseSolver>,
    strategy: SolveStrategy,
) -> Result<(U, V), OptimizationError>
where
    U: Solution,
    V: Solution,
    Ru: Jacobian,
    Rv: Jacobian,
    Kuu: HessianBlock,
    Kvu: HessianBlock,
    Kuv: HessianBlock,
    Kvv: HessianBlock,
    for<'a> &'a CscMatrix: Mul<&'a U, Output = Vector> + Mul<&'a V, Output = Vector>,
{
    let (mut global, mut local) = initial_guess;
    let mut penalty = 0.0 as Scalar;
    let (constraint_matrix_global, constraint_rhs_global) = constraint_global;
    let (constraint_matrix_local, constraint_rhs_local) = constraint_local;
    let num_global = global.size();
    let num_local = local.size();
    let num_outer = num_global + constraint_rhs_global.len();
    let num_inner = num_local + constraint_rhs_local.len();
    let mut multipliers_global = Vector::zero(constraint_rhs_global.len());
    let mut multipliers_local = Vector::zero(constraint_rhs_local.len());
    let eliminating = !matches!(strategy, SolveStrategy::Monolithic { elimination: false });
    let condensed = match strategy {
        SolveStrategy::Condensed(ref local_solver) => Some(local_solver),
        SolveStrategy::Monolithic { .. } => None,
    };
    if sparse.is_some() && eliminating {
        unimplemented!(
            "Eliminating the local block sparsely wants it held as the blocks it is, not as one matrix."
        )
    }
    let (inner, outer) = if eliminating {
        (num_inner, num_outer)
    } else {
        (0, 0)
    };
    let whole = if eliminating || sparse.is_some() {
        0
    } else {
        num_outer + num_inner
    };
    let mut column = Vector::zero(inner);
    let mut coupling_global = Matrix::zero(outer, inner);
    let mut coupling_local = Matrix::zero(inner, outer);
    let mut decrement_inner = Vector::zero(num_inner);
    let mut decrement_outer = Vector::zero(num_outer);
    let mut decrement_whole = Vector::zero(whole);
    let mut eliminated = vec![Vector::zero(inner); outer.min(num_global)];
    let mut factorization = LuDecomposition::zero(inner);
    let mut factorization_outer = LuDecomposition::zero(outer);
    let mut factorization_whole = LuDecomposition::zero(whole);
    let mut monolithic = SquareMatrix::zero(whole);
    let mut residual = Vector::zero(num_outer + num_inner);
    let mut scales_inner = None;
    let mut scales_outer = None;
    let mut tangent_inner = SquareMatrix::zero(inner);
    let mut tangent_outer = SquareMatrix::zero(outer);
    let mut update_inner = Vector::zero(num_inner);
    let mut update_outer = Vector::zero(num_outer);
    let mut steps = 0;
    loop {
        if let Some(local_solver) = condensed {
            converge_local(
                local_solver,
                &mut residual_local,
                &mut tangents,
                &global,
                &mut local,
                &mut multipliers_local,
                &constraint_matrix_local,
                &constraint_rhs_local,
                num_local,
                &mut update_inner,
                &mut tangent_inner,
                &mut factorization,
            )?
        }
        kkt_residual(
            residual_global(&global, &local)?,
            &multipliers_global,
            &constraint_matrix_global,
            &constraint_rhs_global,
            &global,
            &mut update_outer,
        );
        kkt_residual(
            residual_local(&global, &local)?,
            &multipliers_local,
            &constraint_matrix_local,
            &constraint_rhs_local,
            &local,
            &mut update_inner,
        );
        update_outer
            .iter()
            .chain(update_inner.iter())
            .zip(residual.iter_mut())
            .for_each(|(entry, residual_i)| *residual_i = *entry);
        let converged_outer =
            converged(newton_raphson, &update_outer, num_global, &mut scales_outer);
        let converged_inner =
            converged(newton_raphson, &update_inner, num_local, &mut scales_inner);
        if converged_outer && converged_inner {
            return Ok((global, local));
        } else if steps == newton_raphson.max_steps {
            return Err(OptimizationError::MaximumStepsReached(
                newton_raphson.max_steps,
                format!("{newton_raphson:?}"),
            ));
        }
        steps += 1;
        let (tangent_uu, tangent_vu, tangent_uv, tangent_vv) = tangents(&global, &local)?;
        if eliminating {
            kkt_block(
                &tangent_uu,
                &constraint_matrix_global,
                num_global,
                &mut tangent_outer,
                0,
            );
            kkt_block(
                &tangent_vv,
                &constraint_matrix_local,
                num_local,
                &mut tangent_inner,
                0,
            );
            tangent_uv.fill_into_block(&mut coupling_global, 0, 0);
            tangent_vu.fill_into_block(&mut coupling_local, 0, 0);
            tangent_inner.factorize_lu_into(&mut factorization)?;
            eliminated
                .iter_mut()
                .enumerate()
                .for_each(|(k, eliminated_k)| {
                    (0..num_local).for_each(|i| column[i] = coupling_local[i][k]);
                    factorization.solve_into(&column, eliminated_k)
                });
            factorization.solve_into(&update_inner, &mut decrement_inner);
            (0..num_global).for_each(|i| {
                (0..num_local).for_each(|j| {
                    let coupling = coupling_global[i][j];
                    (0..num_global)
                        .for_each(|k| tangent_outer[i][k] -= coupling * eliminated[k][j]);
                    update_outer[i] -= coupling * decrement_inner[j]
                })
            });
            tangent_outer.factorize_lu_into(&mut factorization_outer)?;
            factorization_outer.solve_into(&update_outer, &mut decrement_outer);
            (0..num_global).for_each(|k| {
                decrement_inner
                    .iter_mut()
                    .zip(eliminated[k].iter())
                    .for_each(|(decrement_inner_i, eliminated_ki)| {
                        *decrement_inner_i -= eliminated_ki * decrement_outer[k]
                    })
            });
        } else {
            if sparse.is_none() {
                kkt_block(
                    &tangent_uu,
                    &constraint_matrix_global,
                    num_global,
                    &mut monolithic,
                    0,
                );
                kkt_block(
                    &tangent_vv,
                    &constraint_matrix_local,
                    num_local,
                    &mut monolithic,
                    num_outer,
                );
            }
            if let Some(ref solver) = sparse {
                //
                // The block layout is the same either way, so the entry a
                // sparse solver asks for is read from whichever block holds it.
                //
                decrement_whole = solver.solve(
                    |i, j| {
                        kkt_entry(
                            i,
                            j,
                            num_global,
                            num_outer,
                            num_local,
                            &tangent_uu,
                            &tangent_vu,
                            &tangent_uv,
                            &tangent_vv,
                            &constraint_matrix_global,
                            &constraint_matrix_local,
                        )
                    },
                    &residual,
                )?
            } else {
                tangent_uv.fill_into_block(&mut monolithic, 0, num_outer);
                tangent_vu.fill_into_block(&mut monolithic, num_outer, 0);
                monolithic.factorize_lu_into(&mut factorization_whole)?;
                factorization_whole.solve_into(&residual, &mut decrement_whole)
            }
            decrement_whole
                .iter()
                .zip(decrement_outer.iter_mut().chain(decrement_inner.iter_mut()))
                .for_each(|(entry, decrement_i)| *decrement_i = *entry);
        }
        limit_decrement(
            newton_raphson,
            &mut [
                (&mut decrement_outer, num_global),
                (&mut decrement_inner, num_local),
            ],
        );
        let step_size = if matches!(newton_raphson.line_search, LineSearch::None) {
            1.0
        } else if !minimizing
            && let LineSearch::Error {
                cut_back,
                max_steps,
            } = &newton_raphson.line_search
        {
            //
            // Root finding has no merit function to backtrack against, so the
            // trial point is judged by whether the problem can be evaluated
            // there at all. Minimization keeps its merit function instead.
            //
            backtrack_errors(
                newton_raphson,
                |trial_size| {
                    let mut trial_global = global.clone();
                    let mut trial_local = local.clone();
                    let mut trial_multipliers_global = multipliers_global.clone();
                    let mut trial_multipliers_local = multipliers_local.clone();
                    trial_global.decrement_from_chained(
                        &mut trial_multipliers_global,
                        &(&decrement_outer * trial_size),
                    );
                    let reached = if let Some(local_solver) = condensed {
                        converge_local(
                            local_solver,
                            &mut residual_local,
                            &mut tangents,
                            &trial_global,
                            &mut trial_local,
                            &mut trial_multipliers_local,
                            &constraint_matrix_local,
                            &constraint_rhs_local,
                            num_local,
                            &mut update_inner,
                            &mut tangent_inner,
                            &mut factorization,
                        )
                        .is_ok()
                    } else {
                        trial_local.decrement_from_chained(
                            &mut trial_multipliers_local,
                            &(&decrement_inner * trial_size),
                        );
                        true
                    };
                    reached
                        && residual_global(&trial_global, &trial_local).is_ok()
                        && residual_local(&trial_global, &trial_local).is_ok()
                        && tangents(&trial_global, &trial_local).is_ok()
                },
                *cut_back,
                *max_steps,
            )?
        } else {
            penalty = raise_penalty(
                penalty,
                multipliers_global
                    .iter()
                    .zip(decrement_outer.iter().skip(num_global))
                    .chain(
                        multipliers_local
                            .iter()
                            .zip(decrement_inner.iter().skip(num_local)),
                    ),
            );
            let violated = penalty
                * (violation(&constraint_matrix_global, &constraint_rhs_global, &global)
                    + violation(&constraint_matrix_local, &constraint_rhs_local, &local));
            let mut gradient_global = Vector::zero(num_global);
            let mut gradient_local = Vector::zero(num_local);
            residual_global(&global, &local)?.fill_into(&mut gradient_global);
            residual_local(&global, &local)?.fill_into(&mut gradient_local);
            let slope = merit_slope(
                gradient_global
                    .iter()
                    .zip(decrement_outer.iter())
                    .chain(gradient_local.iter().zip(decrement_inner.iter())),
                violated,
            );
            let value = function(&global, &local)? + violated;
            backtrack_penalty(
                newton_raphson,
                |step| {
                    let mut trial_global = global.clone();
                    let mut trial_local = local.clone();
                    let mut trial_multipliers_global = multipliers_global.clone();
                    let mut trial_multipliers_local = multipliers_local.clone();
                    trial_global.decrement_from_chained(
                        &mut trial_multipliers_global,
                        &(&decrement_outer * step),
                    );
                    //
                    // Condensed makes the local variables a function of the
                    // global ones, so a trial point is where they solve to,
                    // not where the increment predicted they would.
                    //
                    if let Some(local_solver) = condensed {
                        converge_local(
                            local_solver,
                            &mut residual_local,
                            &mut tangents,
                            &trial_global,
                            &mut trial_local,
                            &mut trial_multipliers_local,
                            &constraint_matrix_local,
                            &constraint_rhs_local,
                            num_local,
                            &mut update_inner,
                            &mut tangent_inner,
                            &mut factorization,
                        )
                        .map_err(|error| format!("{error}"))?
                    } else {
                        trial_local.decrement_from_chained(
                            &mut trial_multipliers_local,
                            &(&decrement_inner * step),
                        )
                    }
                    Ok(function(&trial_global, &trial_local)?
                        + penalty
                            * (violation(
                                &constraint_matrix_global,
                                &constraint_rhs_global,
                                &trial_global,
                            ) + violation(
                                &constraint_matrix_local,
                                &constraint_rhs_local,
                                &trial_local,
                            )))
                },
                value,
                slope,
            )?
        };
        if step_size == 1.0 {
            global.decrement_from_chained(&mut multipliers_global, &decrement_outer);
            local.decrement_from_chained(&mut multipliers_local, &decrement_inner)
        } else {
            global.decrement_from_chained(&mut multipliers_global, &(&decrement_outer * step_size));
            local.decrement_from_chained(&mut multipliers_local, &(&decrement_inner * step_size))
        }
    }
}

fn unconstrained<J, H, X, E>(
    newton_raphson: &NewtonRaphson,
    mut function: impl FnMut(&X) -> Result<Scalar, String>,
    mut jacobian: impl FnMut(&X) -> Result<J, String>,
    mut hessian: impl FnMut(&X) -> Result<H, String>,
    initial_guess: X,
    sparse: Option<SparseSolver>,
) -> Result<X, OptimizationError>
where
    H: Hessian,
    J: Jacobian,
    for<'a> &'a J: Div<H, Output = X>,
    J: Erase<Erased = E>,
    X: Erase<Erased = E> + Solution,
    E: Tensor,
    <X as Tensor>::Unit: UnitDiv<<X as Tensor>::Unit, Output = Dimensionless>,
    for<'a> &'a X: Mul<Quantity<Dimensionless>, Output = X> + Mul<Scalar, Output = X>,
{
    let mut decrement;
    let mut flattened = Vector::zero(if sparse.is_none() {
        0
    } else {
        initial_guess.size()
    });
    let mut residual;
    let mut solution = initial_guess;
    let mut step_size;
    let mut steps = 0;
    loop {
        residual = jacobian(&solution)?;
        if newton_raphson.error_norm.apply(&residual) < newton_raphson.abs_tol.residual() {
            return Ok(solution);
        } else if steps == newton_raphson.max_steps {
            return Err(OptimizationError::MaximumStepsReached(
                newton_raphson.max_steps,
                format!("{newton_raphson:?}"),
            ));
        } else {
            steps += 1;
            decrement = if let Some(ref solver) = sparse {
                let hess = hessian(&solution)?;
                residual.fill_into(&mut flattened);
                X::from(solver.solve(|i, j| hess.entry(i, j), &flattened)?)
            } else {
                &residual / hessian(&solution)?
            };
            if let TrustRegion::Fixed { radius, norm } = newton_raphson.trust_region {
                let size = norm.measure(&decrement);
                if size > radius {
                    decrement *= radius / size
                }
            }
            step_size = newton_raphson.backtracking_line_search::<X, E>(
                |trial: &X, _: Scalar| function(trial),
                &mut jacobian,
                &solution,
                &residual,
                &decrement,
                1.0,
            )?;
            if step_size != 1.0 {
                decrement *= step_size
            }
            solution -= decrement
        }
    }
}

#[allow(clippy::too_many_arguments)]
fn constrained_fixed<J, H, X, E>(
    newton_raphson: &NewtonRaphson,
    mut function: impl FnMut(&X) -> Result<Scalar, String>,
    mut jacobian: impl FnMut(&X) -> Result<J, String>,
    mut hessian: impl FnMut(&X) -> Result<H, String>,
    mut update: impl FnMut(&X, &Vector, Scalar, bool) -> Result<(), String>,
    initial_guess: X,
    sparse: Option<SparseSolver>,
    indices: Vec<usize>,
) -> Result<X, OptimizationError>
where
    H: Hessian,
    J: Jacobian,
    J: Erase<Erased = E>,
    X: Erase<Erased = E> + Solution,
    E: Tensor,
    <X as Tensor>::Unit: UnitDiv<<X as Tensor>::Unit, Output = Dimensionless>,
    for<'a> &'a X: Mul<Quantity<Dimensionless>, Output = X> + Mul<Scalar, Output = X>,
{
    let mut applied = Vector::zero(initial_guess.size());
    let mut retained = vec![true; initial_guess.size()];
    indices.iter().for_each(|&index| retained[index] = false);
    let unmap: Vec<usize> = retained
        .iter()
        .enumerate()
        .filter_map(|(index, &keep)| keep.then_some(index))
        .collect();
    let mut decrement = Vector::zero(unmap.len());
    let mut factorization = LuDecomposition::zero(if sparse.is_none() { unmap.len() } else { 0 });
    let mut residual;
    let mut solution = initial_guess;
    let mut step_size;
    let mut steps = 0;
    loop {
        residual = jacobian(&solution)?.retain_from(&retained);
        if newton_raphson.error_norm.apply(&residual) < newton_raphson.abs_tol.residual() {
            return Ok(solution);
        } else if steps == newton_raphson.max_steps {
            return Err(OptimizationError::MaximumStepsReached(
                newton_raphson.max_steps,
                format!("{newton_raphson:?}"),
            ));
        } else if let Some(ref solver) = sparse {
            let hess = hessian(&solution)?;
            decrement = solver.solve(|i, j| hess.entry(unmap[i], unmap[j]), &residual)?
        } else {
            hessian(&solution)?
                .retain_from(&retained)
                .factorize_lu_into(&mut factorization)?;
            factorization.solve_into(&residual, &mut decrement)
        }
        steps += 1;
        limit_decrement(newton_raphson, &mut [(&mut decrement, unmap.len())]);
        //
        // Spread over the variables it belongs to before anything shortens it,
        // so that whatever was eliminated is offered the whole direction and
        // the fraction of it being taken, rather than a direction of its own.
        //
        applied.iter_mut().for_each(|entry| *entry = 0.0);
        unmap
            .iter()
            .zip(decrement.iter())
            .for_each(|(&index, decrement_a)| applied[index] = *decrement_a);
        step_size = if matches!(newton_raphson.line_search, LineSearch::None) {
            1.0
        } else if let LineSearch::Error {
            cut_back,
            max_steps,
        } = &newton_raphson.line_search
        {
            backtrack_errors(
                newton_raphson,
                |trial_size| {
                    let mut trial = solution.clone();
                    trial.decrement_from_retained(&retained, &(&decrement * trial_size));
                    update(&solution, &applied, trial_size, false).is_ok()
                        && jacobian(&trial).is_ok()
                },
                *cut_back,
                *max_steps,
            )?
        } else {
            let jac = jacobian(&solution)?;
            let mut decrement_full = &solution * 0.0;
            decrement_full.decrement_from_retained(&retained, &decrement);
            decrement_full *= -1.0;
            newton_raphson.backtracking_line_search::<X, E>(
                |trial: &X, step: Scalar| {
                    update(&solution, &applied, step, false)?;
                    function(trial)
                },
                &mut jacobian,
                &solution,
                &jac,
                &decrement_full,
                1.0,
            )?
        };
        update(&solution, &applied, step_size, true)?;
        if step_size != 1.0 {
            decrement *= step_size
        }
        solution.decrement_from_retained(&retained, &decrement)
    }
}

#[allow(clippy::too_many_arguments)]
fn constrained<J, H, X>(
    newton_raphson: &NewtonRaphson,
    mut function: impl FnMut(&X) -> Result<Scalar, String>,
    mut jacobian: impl FnMut(&X) -> Result<J, String>,
    mut hessian: impl FnMut(&X) -> Result<H, String>,
    mut update: impl FnMut(&X, &Vector, Scalar, bool) -> Result<(), String>,
    initial_guess: X,
    sparse: Option<SparseSolver>,
    constraint_matrix: Matrix,
    constraint_rhs: Vector,
) -> Result<X, OptimizationError>
where
    H: Hessian,
    J: Jacobian,
    X: Solution,
    for<'a> &'a Matrix: Mul<&'a X, Output = Vector>,
{
    let mut penalty = 0.0 as Scalar;
    let num_variables = initial_guess.size();
    let mut applied = Vector::zero(num_variables);
    let num_constraints = constraint_rhs.len();
    let num_total = num_variables + num_constraints;
    let mut decrement = Vector::zero(num_total);
    let mut factorization = LuDecomposition::zero(if sparse.is_none() { num_total } else { 0 });
    let mut multipliers = Vector::zero(num_constraints);
    let mut residual = Vector::zero(num_total);
    let mut scales = None;
    let mut solution = initial_guess;
    let mut tangent = SquareMatrix::zero(if sparse.is_none() { num_total } else { 0 });
    if sparse.is_none() {
        constraint_matrix
            .iter()
            .enumerate()
            .for_each(|(i, constraint_matrix_i)| {
                constraint_matrix_i
                    .iter()
                    .enumerate()
                    .for_each(|(j, constraint_matrix_ij)| {
                        tangent[i + num_variables][j] = -constraint_matrix_ij;
                        tangent[j][i + num_variables] = -constraint_matrix_ij;
                    })
            });
    }
    let mut steps = 0;
    loop {
        (jacobian(&solution)? - &multipliers * &constraint_matrix).fill_into_chained(
            &constraint_rhs - &constraint_matrix * &solution,
            &mut residual,
        );
        if converged(newton_raphson, &residual, num_variables, &mut scales) {
            return Ok(solution);
        } else if steps == newton_raphson.max_steps {
            return Err(OptimizationError::MaximumStepsReached(
                newton_raphson.max_steps,
                format!("{newton_raphson:?}"),
            ));
        } else if let Some(ref solver) = sparse {
            let hess = hessian(&solution)?;
            decrement = solver.solve(
                |i, j| {
                    if i >= num_variables {
                        -constraint_matrix[i - num_variables][j]
                    } else if j >= num_variables {
                        -constraint_matrix[j - num_variables][i]
                    } else {
                        hess.entry(i, j)
                    }
                },
                &residual,
            )?;
        } else {
            hessian(&solution)?.fill_into(&mut tangent);
            tangent.factorize_lu_into(&mut factorization)?;
            factorization.solve_into(&residual, &mut decrement)
        }
        steps += 1;
        limit_decrement(newton_raphson, &mut [(&mut decrement, num_variables)]);
        //
        // Only the variables are lent out, the multipliers chained onto the end
        // of the decrement being of another kind entirely.
        //
        applied
            .iter_mut()
            .zip(decrement.iter())
            .for_each(|(applied_i, decrement_i)| *applied_i = *decrement_i);
        let step_size = if matches!(newton_raphson.line_search, LineSearch::None) {
            1.0
        } else if let LineSearch::Error {
            cut_back,
            max_steps,
        } = &newton_raphson.line_search
        {
            backtrack_errors(
                newton_raphson,
                |trial_size| {
                    let mut trial = solution.clone();
                    let mut trial_multipliers = multipliers.clone();
                    trial
                        .decrement_from_chained(&mut trial_multipliers, &(&decrement * trial_size));
                    update(&solution, &applied, trial_size, false).is_ok()
                        && jacobian(&trial).is_ok()
                },
                *cut_back,
                *max_steps,
            )?
        } else {
            penalty = raise_penalty(
                penalty,
                multipliers.iter().zip(decrement.iter().skip(num_variables)),
            );
            let violated = penalty * violation(&constraint_matrix, &constraint_rhs, &solution);
            let mut gradient = Vector::zero(num_variables);
            jacobian(&solution)?.fill_into(&mut gradient);
            let slope = merit_slope(gradient.iter().zip(decrement.iter()), violated);
            update(&solution, &applied, 0.0, false)?;
            let value = function(&solution)? + violated;
            backtrack_penalty(
                newton_raphson,
                |step| {
                    let mut trial = solution.clone();
                    let mut trial_multipliers = multipliers.clone();
                    trial.decrement_from_chained(&mut trial_multipliers, &(&decrement * step));
                    update(&solution, &applied, step, false)?;
                    Ok(function(&trial)?
                        + penalty * violation(&constraint_matrix, &constraint_rhs, &trial))
                },
                value,
                slope,
            )?
        };
        //
        // The increment is lent out whole, before it is applied and before it
        // is shortened, so that the eliminated variables take the same fraction
        // of their own direction as the retained ones take of theirs.
        //
        update(&solution, &applied, step_size, true)?;
        if step_size != 1.0 {
            decrement *= step_size
        }
        solution.decrement_from_chained(&mut multipliers, &decrement)
    }
}