Skip to content
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

scheduling towards a deadline (retroplanning) #131

Closed
niol opened this issue Dec 18, 2013 · 3 comments
Closed

scheduling towards a deadline (retroplanning) #131

niol opened this issue Dec 18, 2013 · 3 comments

Comments

@niol
Copy link

niol commented Dec 18, 2013

In the schduling I'm trying to accomplish, I have to make sure some stuff is done before some work from another larger project can start. Therefore, I work planning tasks in reverse (retroplanning).

For instance, I do not know if the impossibility to schedule the following is a bug or a feature request.

project proj "Project" 2015-10-01 - 2016-12-31 {
}

task work "pre-Works" {
    scheduling alap
    task first "First task" {
        duration 1w
    }
    task second "Second task" {
        depends !first
        duration 1w
    }
}

task "Work" {
    depends work.second
    start 2016-01-01
}
@scrapper
Copy link
Member

attributes like 'depends' or 'start' change the 'scheduling' direction. You need to override the scheduling after you have used those attributes.

@niol
Copy link
Author

niol commented Mar 17, 2014

Sorry but I cannot fix the example above so as to express what I want. Can you be more explicit about how to make it work?

@scrapper
Copy link
Member

Try something like this:

task work "pre-Works" {
task first "First task" {
duration 1w
precedes !second
}
task second "Second task" {
duration 1w
precedes work1
}
}

task work1 "Work" {
end 2016-01-01
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants