(selected, dimensions)
| 303 | } |
| 304 | |
| 305 | function fallbackRoute(dimensions) { |
| 306 | if (dimensions.requiresParallel) return '/fleet --quick'; |
| 307 | if (dimensions.requiresPersistence || dimensions.complexity >= 4) return '/archon'; |
| 308 | if (dimensions.complexity <= 1) return 'direct-edit'; |
| 309 | return '/marshal'; |
| 310 | } |
| 311 | |
| 312 | function fallbackReason(selected, dimensions) { |
| 313 | if (selected === '/fleet --quick') return 'the request signals independent parallel work.'; |