Check there is an absolute new appeared branch.
(&self, bucket: BucketType)
| 77 | |
| 78 | /// Check there is an absolute new appeared branch. |
| 79 | fn check_absolute_new(&self, bucket: BucketType) -> bool { |
| 80 | if self.bucket == BUCKET_MASK && bucket != 0 { |
| 81 | return true; |
| 82 | } |
| 83 | false |
| 84 | } |
| 85 | |
| 86 | pub fn check_new(&self, func_state: &BranchState) -> bool { |
| 87 | let bucket = func_state.bucket; |