Friday November 30 On p. 172, the subsection Process Overview and Scheduling describes four actions that are to be executed at each step. For Friday, implement the first three of these actions in the go procedure. (You should also add a go button to the interface.) The Submodels subsection on p. 173 - 174 provides further details on how to do this. Here are some suggestions: One version of the flocking model we worked on earlier has a procedure find-flockmates that sets the agentset flockmates to the set of birds that are within a certain distance of the bird that is being moved. You will be doing something similar, but with patches (customers) that are within a certain distance of a telemarketer. As explained in the Submodels subsection, if the number of potential calls is greater than the maximum number of calls, you will also have to select a random subset of maximum size from the set of potential calls. The reporter n-of (see dictionary) will help you do this. Another useful example is in the Models Library, in the Code Examples section, named Neighborhoods Example.