/**
* Name: boids_adapter
* Author: HUYNH Quang Nghi
* Description: It is NOT supposed to launch. This is the coupling of Boids model. It is used in the "Boid and Voronoi" as an interface. 
* Tags: comodel
*/
model boids_adapter

import "../../../../Toy Models/Boids/models/Boids.gaml"


experiment "Adapter" type:gui  {
	
	list get_boids_goal{
		return list(boids_goal);
	}
	
	list get_boids{
		return list(boids);
	}
	
	output{
	}
}