/**
* Name: ants_coupling
* Author: HUYNH Quang Nghi
* Description:  THIS MODEL IS NOT SUPPOSED TO LAUNCH. This is the coupling of Ants model. It is supposed to use in the Comodeling Example as an interface. 
* Tags: comodel
*/
model ants_coupling

import "../../../Toy Models/Ants (Foraging and Sorting)/models/Ant Foraging.gaml"

//this is the experiment that supposed to uses
experiment Base type: gui 
{
	list get_ants
	{
		return list(ant);
	}

	list get_ant_grid
	{
		return list(ant_grid);
	}
	//if we redefine the output, i.e, a blank output, the displays in parent experiment don't show.
	output
	{
	}

}