Parallel
mle.txt
Associated article: Machine Learning & Agent-Based Computing
Tags: Parallel
Published source code accompanying the article Zhimin Ding and Li Liu in which they discuss the application of machine-learning technology to control software agents, and presents MLEngine--a general-purpose AI engine with real-time learning capability. Also see MLE.ZIP.
Machine Learning and Agent-based Computing
by Zhimin Ding and Li Liu
Listing One
typedef state int;
typefef action int;
class MLEngine {
public:
MLEngine(int dim_sate, int dim_action, int dim_order);
~MLEngine();
void SetGoal(state); //one of the states ...


