21 lines
433 B
C#
21 lines
433 B
C#
namespace RobotNet10.FleetManager.Services.TrafficControl.Models;
|
|
|
|
/// <summary>
|
|
/// Strategies for resolving conflicts
|
|
/// </summary>
|
|
public enum ResolutionStrategy
|
|
{
|
|
/// <summary>
|
|
/// Robot waits at node (can only add wait node to Horizon, NOT to Base)
|
|
/// </summary>
|
|
WaitAtNode,
|
|
|
|
/// <summary>
|
|
/// Robot reroutes (can only reroute Horizon, NOT Base)
|
|
/// </summary>
|
|
Reroute
|
|
}
|
|
|
|
|
|
|