class SkillBranch(DiSkillV2):
# unique skill used to bind similar skills
"""
* contains collection of skills
* mutates active skill if detects conjuration
* mutates active skill if algorithm results in
* negative feedback
* positive feedback negates active skill...
class SkillBranch(DiSkillV2):
# unique skill used to bind similar skills
"""
* contains collection of skills
* mutates active skill if detects conjuration
* mutates active skill if algorithm results in
* negative feedback
* positive feedback negates active skill...
class SkillHubAlgDispenser:
# super class to output an algorithm out of a selection of skills
"""
engage the hub with dispenseAlg and return the value to outAlg attribute
of the containing skill (which houses the skill hub)
this module enables using a selection of 1...
public class SkillBranch extends DiSkillV2 {
// unique skill used to bind similar skills
/*
* contains collection of skills
* mutates active skill if detects conjuration
* mutates active skill if algorithm results in
* negative feedback
* positive feedback negates...
public class SkillHubAlgDispenser {
// super class to output an algorithm out of a selection of skills
// engage the hub with dispenseAlg and return the value to outAlg attribute
// of the containing skill (which houses the skill hub)
// this module enables using a selection...
public class AXSkillBundle {
private final ArrayList<DiSkillV2> skills = new ArrayList<DiSkillV2>();
private final Neuron tempN = new Neuron();
private Kokoro kokoro = new Kokoro(new AbsDictionaryDB());
public void setKokoro(Kokoro kokoro) {
this.kokoro = kokoro...
public class AXSkillBundle {
private ArrayList<DiSkillV2> skills = new ArrayList<DiSkillV2>();
private Neuron tempN = new Neuron();;
public AXSkillBundle(DiSkillV2...skillsParams) {
for (DiSkillV2 skill : skillsParams)
{
skills.add(skill);
}
}...
public class AXSkillBundle {
private ArrayList<DiSkillV2> skills = new ArrayList<DiSkillV2>();
private Neuron tempN = new Neuron();;
public AXSkillBundle(DiSkillV2...skillsParams) {
for (DiSkillV2 skill : skillsParams)
{
skills.add(skill);
}
}...