this.base.revise(base);
}
public void vmk(String vkey) {
String type = context.getString("vectorSetType");
SimContext subcontext = context.getSub(type, vkey);
float accumuFactor = subcontext.getFloat("accumuFactor");
int sparseFactor = subcontext.getInt("sparseFactor");
if (type.equals(DenseVectorSet.TYPE)) {
this.vectorSets.put(vkey, new DenseVectorSet(vkey, this.base, accumuFactor, sparseFactor));
} else if (type.equals(SparseVectorSet.TYPE)) {
this.vectorSets.put(vkey, new SparseVectorSet(vkey, this.base, accumuFactor, sparseFactor));