Separate TFactor and Factor classes.

Rename TFactor to GenericFactor. GenericFactor.cpp is empty for now.
This commit is contained in:
Tiago Gomes
2013-03-04 15:47:47 +00:00
parent 98efd54da7
commit 93fa793683
5 changed files with 11 additions and 308 deletions

View File

@@ -103,7 +103,7 @@ Factor::multiply (Factor& g)
if (args_.empty()) {
clone (g);
} else {
TFactor<VarId>::multiply (g);
GenericFactor<VarId>::multiply (g);
}
}