com.massisframework.massis.ai.sposh.senses.SimulationSense Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of massis-ai-sposh Show documentation
Show all versions of massis-ai-sposh Show documentation
SPOSH High Level Controller
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.massisframework.massis.ai.sposh.senses;
import com.massisframework.massis.ai.sposh.SimulationContext;
import cz.cuni.amis.pogamut.sposh.executor.ParamsSense;
/**
* SPOSH sense in MASSIS engine
*
* @author rpax
*/
public abstract class SimulationSense
extends ParamsSense {
public SimulationSense(SimulationContext ctx)
{
super(ctx);
}
}