Thanks to this post I'm getting my head around dependent method types. I have a structure similar to the following
trait Environment{
type Population <: PopulationBase
protected trait PopulationBase
def evolveUs(population: Population): Population
}
object FactoredOut{
def evolvePopulation(env: Environment)(prevPopulation: env.Population): env.Population = {
env.evolveUs(prevPopulation)
}
}
I now want to start using actors to spread the work in the FactoredOut
part across a cluster. To do this I need a way to pass immutable messages which carry the Environment
.
Obviously the following doesn't work, but demonstrates what I'm trying to do
object Messages{
case class EvolvePopulation(env: Environment)(prevPopulation: env.Population)
}
What is the correct way to pass the population and it's enclosing environment around?
(Would have added the dependent-method-types tag, but I don't have enough points to add a 'new' tag)
Your intuition that you need to pack up both the value of the dependent type (
env.Population
) and the value that the type depends on (env
) as a single object is exactly right.Given the definitions you've already posted, probably the simplest approach would be something like this,
Now if we define a concrete environment type,
we can use it directly as before,
and we can also package up an environment and population for distribution,