Skip to content
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

Large(r) Internally represented FFE's #2846

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lib/ffe.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@
##
## This file deals with internal finite field elements.
##
## Update September 2018: MAXSIZE_GF_INTERNAL changed to 2^24.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That doesn't really belong here, that kind of information is available in the repository.

##


#############################################################################
##

#V MAXSIZE_GF_INTERNAL . . . . . . . . . . . . maximal size of internal ffes
##
BIND_GLOBAL( "MAXSIZE_GF_INTERNAL", 2^16 );
BIND_GLOBAL( "MAXSIZE_GF_INTERNAL", 2^24 ); #jdebeule 16/09/18 2^24 was 2^16.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Drop the #jdebeule comment

This applies many times again later on, so I'll not repeat this each time.



#############################################################################
Expand Down
Loading