Skip to content

Commit

Permalink
BDDPacket: reduce JFACTORY_CACHE_RATIO to 8 (#7823)
Browse files Browse the repository at this point in the history
* BDDPacket: reduce JFACTORY_CACHE_RATIO to 8

... from 32. i.e. use 4x more cache than before
  • Loading branch information
anothermattbrown committed Dec 16, 2021
1 parent f3f200b commit f2e0143
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class BDDPacket {
* The ratio of node table size to node cache size to preserve when resizing. The default
* value is 0, which means never resize the cache.
*/
private static final int JFACTORY_CACHE_RATIO = 32;
private static final int JFACTORY_CACHE_RATIO = 8;

/*
* Initial size of the BDD factory node cache. Automatically resized when the node table is,
Expand Down

0 comments on commit f2e0143

Please sign in to comment.