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

ode.ai.0.1.1.source-code.WorldState Maven / Gradle / Ivy

There is a newer version: 0.1.7
Show newest version
package com.gracefulcode.ai;

/**
 * WorldState is an encoding of the state of the world. It is highly
 * application-dependent and exists primary to declare intent rather than to
 * demand a specific contract.
 *
 * @version 0.1
 * @since 0.1
 */
public interface WorldState extends Cloneable {
	/**
	 * Clones this WorldState and returns the clone. The clone should behave
	 * such that original.isEqual returns true, but original == return false.
	 * Any modifications that you do inside of your {@link Behavior}s should
	 * affect only the clone, not the original.
	 *
	 * @return The clone.
	 */
	public Object clone();	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy