API Reference
This section provides the API documentation for mdotoolbox.
Core
BestSolution
dataclass
Tracks the best iterate found during optimization under the lexicographic progress criterion.
Source code in src/mdotoolbox/core/base.py
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 |
|
to_dict()
Export best results as a dictionary.
Source code in
src/mdotoolbox/core/base.py
511 512 513 |
|
update(z_bar_new, x_bar_new, y_bar_new, f_new, h_new, J_i_new, eta=1e-08, epsilon_h=1e-06, epsilon_J=1e-06)
Update the stored best iterate if the new point represents progress.
Source code in
src/mdotoolbox/core/base.py
499 500 501 502 503 504 505 506 507 508 509 |
|
BudgetManager
dataclass
Manages evaluation budget allocation for Collaborative Optimization frameworks.
Source code in src/mdotoolbox/core/base.py
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 |
|
__repr__()
Detailed representation of BudgetManager
Source code in
src/mdotoolbox/core/base.py
711 712 713 |
|
__str__()
Print budget allocation summary
Source code in
src/mdotoolbox/core/base.py
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 |
|
get_remaining_total()
Get remaining total budget
Source code in
src/mdotoolbox/core/base.py
678 679 680 |
|
get_status()
Get current budget status
Source code in
src/mdotoolbox/core/base.py
682 683 684 685 686 687 688 689 690 |
|
get_subsystem_maxiter(subsystem_idx)
Get maxiter for a subsystem.
Source code in
src/mdotoolbox/core/base.py
624 625 626 627 628 629 630 631 632 633 634 635 636 637 |
|
get_system_maxiter()
Get maxiter for system optimization.
Source code in
src/mdotoolbox/core/base.py
639 640 641 642 643 644 645 646 647 648 649 650 |
|
initialize(n_subsystems)
Initialize budget tracking for given number of subsystems
Source code in
src/mdotoolbox/core/base.py
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 |
|
is_subsystem_exhausted(subsystem_idx)
Check if subsystem budget is exhausted
Source code in
src/mdotoolbox/core/base.py
662 663 664 665 666 |
|
is_system_exhausted()
Check if system budget is exhausted
Source code in
src/mdotoolbox/core/base.py
668 669 670 671 672 |
|
is_total_exhausted()
Check if total budget is exhausted
Source code in
src/mdotoolbox/core/base.py
674 675 676 |
|
record_subsystem_evals(subsystem_idx, n_evals)
Record evaluations used by a subsystem
Source code in
src/mdotoolbox/core/base.py
652 653 654 655 |
|
record_system_evals(n_evals)
Record evaluations used by system
Source code in
src/mdotoolbox/core/base.py
657 658 659 660 |
|
Constraint
dataclass
Constraint definition for optimization problems.
Source code in src/mdotoolbox/core/base.py
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 |
|
__repr__()
Detailed representation of Constraint
Source code in
src/mdotoolbox/core/base.py
226 227 228 |
|
__str__()
String representation of Constraint
Source code in
src/mdotoolbox/core/base.py
214 215 216 217 218 219 220 221 222 223 224 |
|
DoE
dataclass
Design of Experiments (DoE) container for storing sampling data.
Source code in src/mdotoolbox/core/base.py
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 |
|
__post_init__()
Validate and normalize data after initialization.
Source code in
src/mdotoolbox/core/base.py
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 |
|
__repr__()
Detailed representation of DoE
Source code in
src/mdotoolbox/core/base.py
167 168 169 |
|
__str__()
String representation of DoE
Source code in
src/mdotoolbox/core/base.py
153 154 155 156 157 158 159 160 161 162 163 164 165 |
|
get_best_feasible(objective_key='obj', tol=1e-06)
Find the best (minimum objective) feasible point in the DoE.
Source code in
src/mdotoolbox/core/base.py
138 139 140 141 142 143 144 145 146 |
|
get_f_min(objective_key='obj', tol=1e-06)
Get the minimum objective value from feasible points.
Source code in
src/mdotoolbox/core/base.py
148 149 150 151 |
|
get_feasible_indices(tol=1e-06)
Get indices of feasible points in the DoE.
Source code in
src/mdotoolbox/core/base.py
132 133 134 135 136 |
|
to_dict()
Export DoE data as a dictionary.
Source code in
src/mdotoolbox/core/base.py
124 125 126 127 128 129 130 |
|
update_DoE(x_n, y_n, constraint_violation_n=None, tol=1e-10, drop_duplicates=True)
Add a new sample point to the Design of Experiments.
Source code in
src/mdotoolbox/core/base.py
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 |
|
Function
dataclass
Callable function wrapper for optimization problems.
Source code in src/mdotoolbox/core/base.py
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 |
|
__repr__()
Detailed representation of Function
Source code in
src/mdotoolbox/core/base.py
193 194 195 |
|
__str__()
String representation of Function
Source code in
src/mdotoolbox/core/base.py
187 188 189 190 191 |
|
ParetoEntry
dataclass
A single entry in the Pareto set.
Source code in src/mdotoolbox/core/base.py
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 |
|
nondominated_all_spaces
property
True if non-dominated in all three bi-objective spaces simultaneously.
Problem
dataclass
Complete optimization problem definition.
Source code in src/mdotoolbox/core/base.py
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 |
|
__post_init__()
Verify input lengths
Source code in
src/mdotoolbox/core/base.py
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 |
|
__repr__()
Detailed representation of Problem
Source code in
src/mdotoolbox/core/base.py
386 387 388 389 390 |
|
__str__()
String representation of Problem
Source code in
src/mdotoolbox/core/base.py
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 |
|
compute_constraint_violation(constraint_values)
Compute total constraint violation for each sample point.
Source code in
src/mdotoolbox/core/base.py
343 344 345 346 347 348 349 350 351 352 353 354 355 |
|
evaluate(x, f, c)
Evaluate objective and/or constraints at a given point.
Source code in
src/mdotoolbox/core/base.py
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 |
|
initial_DoE(n)
Generate initial Design of Experiments using Latin Hypercube Sampling.
Source code in
src/mdotoolbox/core/base.py
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 |
|
Results
dataclass
Container for the complete output of an optimization run.
Source code in src/mdotoolbox/core/base.py
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 |
|
pareto_all
property
Archive entries non-dominated in all three bi-objective spaces.
update_pareto(f, h, J_i, z_bar, x_bar, y_bar)
Pass the current iterate to the Pareto set update procedure.
Source code in
src/mdotoolbox/core/base.py
541 542 543 544 |
|
TextColor
ANSI escape sequences for text formatting in terminal
Source code in src/mdotoolbox/core/base.py
715 716 717 718 719 720 721 722 723 724 725 726 727 |
|
pareto_archive_to_df(pareto_set)
Convert an internal Pareto set list to a DataFrame.
Source code in src/mdotoolbox/core/base.py
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 |
|
update_pareto(pareto_set, f, h, J_i, z_bar, x_bar, y_bar)
Insert a new iterate into the Pareto set if it is non-dominated in at least one bi-objective space, and update membership codes of existing entries.
Source code in src/mdotoolbox/core/base.py
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 |
|
Multi-Disciplinary Optimization (MDO) problem definitions.
Discipline
dataclass
Single discipline (subsystem) in a Multi-Disciplinary Optimization problem.
Source code in src/mdotoolbox/core/mdo.py
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 |
|
evaluate(z_under, x_under, y_bar_coupled)
Evaluate discipline outputs given current variable values.
Source code in
src/mdotoolbox/core/mdo.py
62 63 64 65 66 67 |
|
evaluate_constraints(z_under, x_under, y_bar_coupled)
Evaluate discipline-level constraints.
Source code in
src/mdotoolbox/core/mdo.py
69 70 71 72 73 74 75 76 77 78 79 |
|
MDOProblem
dataclass
Multi-Disciplinary Optimization (MDO) problem definition.
Source code in src/mdotoolbox/core/mdo.py
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 |
|
__post_init__()
Validate MDO problem structure
Source code in
src/mdotoolbox/core/mdo.py
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 |
|
compute_coupling_residuals(z_bar, x_bar, y_bar)
Compute coupling residuals: ||y_computed - y_bar||^2
Source code in
src/mdotoolbox/core/mdo.py
178 179 180 181 182 183 184 185 186 187 188 189 190 |
|
evaluate_disciplines(z_bar, x_bar, y_bar)
Evaluate all discipline outputs.
Source code in
src/mdotoolbox/core/mdo.py
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
|
evaluate_system(z_bar, x_bar, y_bar)
Evaluate system objective.
Source code in
src/mdotoolbox/core/mdo.py
157 158 159 160 |
|
Frameworks
src/mdotoolbox/frameworks/baco.py
BACOSubsystem
dataclass
Subsystem for Bayesian Collaborative Optimization framework.
Source code in src/mdotoolbox/frameworks/baco.py
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 |
|
build_surrogate_J_i()
Train Gaussian Process surrogate for discrepancy J_i.
Source code in
src/mdotoolbox/frameworks/baco.py
237 238 239 |
|
build_surrogate_g_i()
Train Gaussian Process surrogates for all subsystem constraints.
Source code in
src/mdotoolbox/frameworks/baco.py
241 242 243 244 245 |
|
initialize_doe(n_samples, z_bar, x_bar, y_bar)
Initialize Design of Experiments using Latin Hypercube Sampling.
Source code in
src/mdotoolbox/frameworks/baco.py
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 |
|
solve_acquisition(z_bar, x_bar, y_bar, optimizer, acq_func, n_multistart=10)
Optimize acquisition function to find next evaluation point.
Source code in
src/mdotoolbox/frameworks/baco.py
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 |
|
BACOSystem
dataclass
System-level problem for BACO
Source code in src/mdotoolbox/frameworks/baco.py
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 |
|
build_surrogate_system()
Build GPs for system objective and constraints
Source code in
src/mdotoolbox/frameworks/baco.py
369 370 371 372 373 |
|
initialize_doe(n_samples)
Initialize system DoE
Source code in
src/mdotoolbox/frameworks/baco.py
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 |
|
solve_acquisition(optimizer, acq_func, f_min, n_multistart=10, epsilon_J=1.0)
Solve system: maximize alpha_f subject to mu_c >= 0, mu_J_i <= epsilon_J
Source code in
src/mdotoolbox/frameworks/baco.py
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 |
|
BayesianCollaborativeOptimization
dataclass
Bases:
BaseSolver
BACO solver
Source code in src/mdotoolbox/frameworks/baco.py
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 |
|
iterate()
Execute one BACO iteration
Source code in
src/mdotoolbox/frameworks/baco.py
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 |
|
solve(z0, x_bar0, y_bar0, z_hat0, x0)
Execute BACO
Source code in
src/mdotoolbox/frameworks/baco.py
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 |
|
src/mdotoolbox/frameworks/co.py
COSubsystem
dataclass
Bases:
BaseSubsystem
Subsystem for Collaborative Optimization framework.
Source code in src/mdotoolbox/frameworks/co.py
19 20 21 22 |
|
COSystem
dataclass
Bases:
BaseSystem
System-level coordinator for Collaborative Optimization.
Source code in src/mdotoolbox/frameworks/co.py
24 25 26 27 |
|
CollaborativeOptimization
dataclass
Bases:
BaseSolver
Main solver for Collaborative Optimization framework.
Source code in src/mdotoolbox/frameworks/co.py
29 30 31 32 |
|
src/mdotoolbox/frameworks/eco.py
ECOSubsystem
dataclass
Bases:
BaseSubsystem
Subsystem for Enhanced Collaborative Optimization framework.
Source code in src/mdotoolbox/frameworks/eco.py
22 23 24 25 |
|
ECOSystem
dataclass
Bases:
BaseSystem
System-level coordinator for Enhanced Collaborative Optimization.
Source code in src/mdotoolbox/frameworks/eco.py
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 |
|
EnhancedCollaborativeOptimization
dataclass
Bases:
BaseSolver
Enhanced Collaborative Optimization solver with relaxation parameter alpha.
Source code in src/mdotoolbox/frameworks/eco.py
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 |
|
src/mdotoolbox/frameworks/ico.py
ICOSubsystem
dataclass
Bases:
BaseSubsystem
Subsystem for Improved Collaborative Optimization.
Source code in src/mdotoolbox/frameworks/ico.py
23 24 25 26 |
|
ICOSystem
dataclass
Bases:
BaseSystem
System-level coordinator for Improved Collaborative Optimization.
Source code in src/mdotoolbox/frameworks/ico.py
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 |
|
ImprovedCollaborativeOptimization
dataclass
Bases:
BaseSolver
Improved Collaborative Optimization solver with dynamic penalty.
Source code in src/mdotoolbox/frameworks/ico.py
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 |
|
src/mdotoolbox/frameworks/mco.py
MCOSubsystem
dataclass
Bases:
BaseSubsystem
Subsystem for Modified Collaborative Optimization.
Source code in src/mdotoolbox/frameworks/mco.py
24 25 26 27 |
|
MCOSystem
dataclass
Bases:
BaseSystem
System-level coordinator for Modified Collaborative Optimization.
Source code in src/mdotoolbox/frameworks/mco.py
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 |
|
solve(optimizer, system_iter, global_start_time, maxiter=None, **kwargs)
Solve MCO system problem - optimizes only (x_bar, y_bar).
Source code in
src/mdotoolbox/frameworks/mco.py
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 |
|
ModifiedCollaborativeOptimization
dataclass
Bases:
BaseSolver
Modified Collaborative Optimization solver with averaged z.
Source code in src/mdotoolbox/frameworks/mco.py
123 124 125 126 127 128 129 130 131 132 133 134 |
|