Skip to content

internal value tracking #45

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

Open
NaC-L opened this issue Nov 11, 2024 · 0 comments
Open

internal value tracking #45

NaC-L opened this issue Nov 11, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@NaC-L
Copy link
Owner

NaC-L commented Nov 11, 2024

Knownbits are unreliable for value tracking especially for carry operations.

  0011
  000?
+____
  0???

now we have 2^3 possible outcomes, however 0011 + 000? only could be 0100 or 0011, thus it can be represented as 2<=>3
We have to keep these values in a range. But range only works if we dont know the trail.

ex:

  0110
  00?0
+____
  ???0

now it could be 0110 or 1000, so 6 or 8.

We can do a mix of both ranges and bits to solve this.

??? - 0
info for ??? would be a range and 0 is knownbits

@NaC-L NaC-L added the enhancement New feature or request label Nov 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant