Commit 7fd005b5084f436737a15b421bcd36e85fcb5a8f
1 parent
b6c8cde0
Exists in
dev
New scheduler
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/core/pyros_django/scheduling/A_Scheduler.py
@@ -48,7 +48,7 @@ from decimal import Decimal | @@ -48,7 +48,7 @@ from decimal import Decimal | ||
48 | import zoneinfo | 48 | import zoneinfo |
49 | import numpy as np | 49 | import numpy as np |
50 | 50 | ||
51 | -class AgentScheduler(Agent): | 51 | +class A_Scheduler(Agent): |
52 | 52 | ||
53 | DPRINT = False | 53 | DPRINT = False |
54 | 54 | ||
@@ -581,6 +581,6 @@ class AgentScheduler(Agent): | @@ -581,6 +581,6 @@ class AgentScheduler(Agent): | ||
581 | 581 | ||
582 | if __name__ == "__main__": | 582 | if __name__ == "__main__": |
583 | 583 | ||
584 | - agent = build_agent(AgentScheduler) | 584 | + agent = build_agent(A_Scheduler) |
585 | print(agent) | 585 | print(agent) |
586 | agent.run() | 586 | agent.run() |