1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-12-23 06:04:29 +00:00

Hadrons: first full implementation of the scheduler

This commit is contained in:
2016-01-13 20:23:51 -08:00
parent 17c43f49ac
commit ae682674e0
12 changed files with 264 additions and 55 deletions

View File

@@ -35,3 +35,12 @@ std::string Module::getName(void) const
{
return name_;
}
void Module::operator()(Environment &env)
{
allocate(env);
if (!env.isDryRun())
{
execute(env);
}
}