All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.massisframework.massis.ai.sposh.senses.Succeed Maven / Gradle / Ivy

There is a newer version: 1.2.22
Show newest version
/*
 * 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.PrimitiveInfo;

/**
 * Primitive sense, always succeed (return true) and do nothing else.
 * 
 * @author rpax
 */
@PrimitiveInfo(name = "Succeed", description = "Returns always true")
public class Succeed extends SimulationSense {

	public Succeed(SimulationContext ctx) {
		super(ctx);
	}

	public Boolean query() {
		return true;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy