All Downloads are FREE. Search and download functionalities are using the official Maven repository.

model.unimplementedBiology.CNS Maven / Gradle / Ivy

There is a newer version: 2.3.3
Show newest version
package model.unimplementedBiology;

import model.MARK_II.Neocortex;

/**
 * @author Quinn Liu ([email protected])
 * @version June 5, 2013
 */
public class CNS {
    private Brain brain;

    /**
     * Things the spinal cord does for you:
     * 1) Local feedback loops control reflexes.
     * 2) Descending motor control signals from the
     * brain activae spinal motor neurons.
     * 3) Ascending sensory axons convey sensory
     * information (from muscles and skin) back to the brain.
     */
    // private SpinalCord spinalCord;
    public CNS(Neocortex neocortex, LGN LGN) {
        this.brain = new Brain(neocortex, LGN);
        // this.spinalCord = null;
    }

    public Brain getBrain() {
        return this.brain;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy