August 2018
Beginner
334 pages
10h 19m
English
Now, let's create the class that handles the blackboard and the main logic behind our metaphor:
using System.Collections.Generic;public class Blackboard{ public List<BlackboardDatum> entries; public List<BlackboardAction> pastActions; public List<BlackboardExpert> experts;}
public Blackboard(){ entries = new List<BlackboardDatum>(); pastActions = new List<BlackboardAction>(); experts = new List<BlackboardExpert>();}
public void RunIteration(){ // next steps}
Read now
Unlock full access