Use camel case for constants and enumerators.
All capitals case should be reserved for macros and besides there is no big need to emphasize constness in general.
This commit is contained in:
@@ -19,11 +19,11 @@ typedef TinySet<EgNode*> EGNeighs;
|
||||
|
||||
|
||||
enum ElimHeuristic {
|
||||
SEQUENTIAL,
|
||||
MIN_NEIGHBORS,
|
||||
MIN_WEIGHT,
|
||||
MIN_FILL,
|
||||
WEIGHTED_MIN_FILL
|
||||
sequentialEh,
|
||||
minNeighborsEh,
|
||||
minWeightEh,
|
||||
minFillEh,
|
||||
weightedMinFillEh
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user