-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Landscape Configuration #79
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Now we are searching resources in depots - Now all the information of material delivery is recorded in resulting schedule - Refactoring
// TODO Fix writing down material planning info to the result
- Now we are searching resources in depots - Now all the information of material delivery is recorded in resulting schedule - Refactoring
// TODO Fix writing down material planning info to the result
…trial-AI-Research-Lab/sampo into feature/landscape_geometry # Conflicts: # sampo/scheduler/base.py # sampo/scheduler/heft/base.py # sampo/schemas/resources.py # sampo/schemas/works.py
- Now we are searching resources in depots - Now all the information of material delivery is recorded in resulting schedule - Refactoring
// TODO Fix writing down material planning info to the result
… feature/landscape_geometry
…riment representation)
…fting after found this time and before scheduling.
… changing start_time in scheduling part (after start time was found)
… feature/landscape_geometry # Conflicts: # pyproject.toml # sampo/generator/environment/landscape.py
…xisted algos and chooses the best.
StannisMod
approved these changes
Apr 8, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
enhancement
New feature or request
examples
refactor
The rewriting of existing code to improve code quality
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added
LandscapeConfiguration
- structure that could response on request about environment (the environment remains static over time), andLandGraph
, that describes a graph of environment:Developed algorithm of unrenewable resource delivery before the start of a work.
SupplyTimeline
was developed to take into account the resources' of:PlatformTimeline
is presented to avoid implementation difficult platforms' behaviour. The state of platform, that distributed over the time, has follow rules:A
if ALL timestamps after 'A' can provide necessary materials (not other way).Moreover,
SimpleSynthetic
was extended byLandscapeConfiguration
generator based on obtained WorkGraph.In addition, tests include flag about MaterialReq generation for each
GraphNode
inWorkGraph
.PlatformTimeline
is the beginning of separationSupplyTimeline
into individual timelines to consider the complex behaviour of each participant in evironment (holders, roads, vehicles, platforms).Added examples that demonstrate the work with landscape generator and without it.