-
Can someone clarify to what extent "individually" is enforced? Does this mean grouping or caching writes is not permitted? Technically removing the even numbers is a violation of this rule. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
What matters for sure is that all the calculations and indexing related to clearing the prime candidate flags (whether they are booleans, bits or another data type) are performed during the "second operation" within the timed algorithm, and not based on pre-calculated bitmaps or something similar. Beyond that, as with any rule, we make up our minds about an approach when there is actual source code to look at. |
Beta Was this translation helpful? Give feedback.
-
Thanks. Just to clarify I was going to write bits in the second pass into quadwords before storing them one at a time. |
Beta Was this translation helpful? Give feedback.
What matters for sure is that all the calculations and indexing related to clearing the prime candidate flags (whether they are booleans, bits or another data type) are performed during the "second operation" within the timed algorithm, and not based on pre-calculated bitmaps or something similar. Beyond that, as with any rule, we make up our minds about an approach when there is actual source code to look at.