model.unimplementedBiology.Cerebrum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WalnutiQ Show documentation
Show all versions of WalnutiQ Show documentation
A Java based Neuron Modeling framework
package model.unimplementedBiology;
import model.MARK_II.Neocortex;
/**
* @author Quinn Liu ([email protected])
* @version June 5, 2013
*/
public class Cerebrum {
private CerebralCortex cerebralCortex;
// private BasalGanglia basalGanglia;
// private Hippocampus hippocampus;
// private Amygdala amygdala;
public Cerebrum(Neocortex neocortex) {
this.cerebralCortex = new CerebralCortex(neocortex);
// this.basalGanglia = null;
// this.hippocampus = null;
// this.amygdala = null;
}
public CerebralCortex getCerebralCortex() {
return this.cerebralCortex;
}
}