-
Notifications
You must be signed in to change notification settings - Fork 38
Refactor WmmEncoder and add ActiveSetAnalysis class #980
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
692588f
33b7eba
1c26ec7
eb0d249
8148b1a
2f6872a
1c917e4
80f278a
8703fcb
9784081
d4e7c51
5ad3b25
1d467ab
f887355
0950bc1
f547895
e63c3d2
f074219
1fbb743
766e04b
869e725
db1beba
d589fb1
cb070e4
cfefeef
23e157c
c0049c4
54377ec
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -34,7 +34,7 @@ public class OptionNames { | |
| // Encoding Options | ||
| public static final String USE_INTEGERS = "encoding.integers"; | ||
| public static final String ENABLE_ACTIVE_SETS = "encoding.activeSets"; | ||
| public static final String REDUCE_ACYCLICITY_ENCODE_SETS = "encoding.wmm.reduceAcyclicityEncodeSets"; | ||
| public static final String REDUCE_ACYCLICITY_RELEVANT_SETS = "encoding.wmm.reduceAcyclicityRelevantSets"; | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Changing options name is never a good idea, so unless there is a really good reason to do so, we should avoid it.
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think that option is never used externally and there is no reason to. Honestly, we could just remove the option. But if we keep it, I want it to match with the internal naming of things instead of having a comment that says "btw. encode sets == relevant sets" and forever living with this ugly discrepancy. That being said, I could revert the renaming and use |
||
| public static final String MERGE_CF_VARS = "encoding.mergeCFVars"; | ||
| public static final String INITIALIZE_REGISTERS = "encoding.initializeRegisters"; | ||
| public static final String IGNORE_FILTER_SPECIFICATION = "encoding.ignoreFilterSpecification"; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.