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

model.unimplementedBiology.CerebralCortex Maven / Gradle / Ivy

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

import model.MARK_II.Neocortex;


/**
 * A layered sheet of neurons. About 1/8th inch thick with approximately 30 billion
 * neurons. Each neuron with about 10,000 synapses.
 *
 * @author Quinn Liu ([email protected])
 * @version June 5, 2013
 */
public class CerebralCortex {
    private Neocortex neocortex;
    // private Paleocortex paleocortex;
    // private Archicortex archicortex;

    public CerebralCortex(Neocortex neocortex) {
        this.neocortex = neocortex;
        // this.paleocortex = null;
        // this.archicortex = null;
    }

    public Neocortex getNeocortex() {
        return this.neocortex;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy