Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Marlin refactoring #34
Marlin refactoring #34
Changes from 7 commits
f34881c
e757cdc
c715661
84b214d
c803cef
0e12360
c9a4d7d
a787380
aae25de
deced53
9c3b921
4100a98
6fd9718
60db3d7
69950e9
22489a2
41a5a38
8a9e209
4e1040a
457ab55
bd03496
314e910
bc38f53
7a513b1
5a746d5
dba6b4f
ca6334d
5ce0cf1
b34e381
20de557
2755a83
a6c725a
e332dff
233e36f
8e939a2
17d5a1b
0951fc5
b2823ac
a461d13
02a60dc
5ea98e1
de16d79
37ca6d4
794bf7a
f5e1976
21cb0e8
929be30
ebfc590
2565b0a
6206fc1
4a671a3
148f2e0
0a9bd28
ce6395a
d91c5bc
5debbd5
90d5bc7
5cc4ec5
e0300d1
b56e000
d8e5099
42fa234
d8c25d4
7dd96de
5b57d52
47ab73e
4d11f6c
97d1242
b23dd3e
ec104e4
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would have renamed also here the
*_star_arith
to*_star
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the reason for moving the balancer out of the function?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now function
to_matrix_helper()
needs to take in inputdomain_h
anddomain_x
, which are returned by functionbuild_domains()
. Andbuild_domains()
should be called after having calledbalance_matrices()
, because balancing the matrices could possibly affect the size of the domains (more precisely ofdomain_k
anddomain_b
).