File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -291,13 +291,16 @@ NonLinMPC controller with a sample time Ts = 10.0 s:
291291 AutoSparse(
292292 AutoForwardDiff();
293293 sparsity_detector = TracerSparsityDetector(),
294- coloring_algorithm = GreedyColoringAlgorithm((
294+ coloring_algorithm = GreedyColoringAlgorithm(
295+ (
295296 NaturalOrder(),
296297 LargestFirst(),
297298 SmallestLast(),
298299 IncidenceDegree(),
299300 DynamicLargestFirst()
300- ))
301+ ),
302+ postprocessing = true
303+ )
301304 )
302305 ```
303306 that is, it will test many coloring orders at preparation and keep the best. This is
Original file line number Diff line number Diff line change @@ -382,13 +382,16 @@ MovingHorizonEstimator estimator with a sample time Ts = 10.0 s:
382382 AutoSparse(
383383 AutoForwardDiff();
384384 sparsity_detector = TracerSparsityDetector(),
385- coloring_algorithm = GreedyColoringAlgorithm((
385+ coloring_algorithm = GreedyColoringAlgorithm(
386+ (
386387 NaturalOrder(),
387388 LargestFirst(),
388389 SmallestLast(),
389390 IncidenceDegree(),
390391 DynamicLargestFirst()
391- ))
392+ ),
393+ postprocessing = true
394+ )
392395 )
393396 ```
394397 that is, it will test many coloring orders at preparation and keep the best.
You can’t perform that action at this time.
0 commit comments