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.
Preliminary deforestation implementation for hkmc2 #289
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
base: hkmc2
Are you sure you want to change the base?
Preliminary deforestation implementation for hkmc2 #289
Changes from 9 commits
d42cd71
374f2f2
738df06
80be404
7d72fa5
7f34cb2
837dfc3
78364b4
84582c8
c49b902
50475fc
960438d
45d7ed4
d76a91b
476511e
c838208
342db56
ad91803
c2ecb6e
e37fb12
85cf293
faeb52d
5947353
3783c31
9401488
0065624
dd3e57f
9f6b669
de68a14
cf96bda
11d6bab
cf4c316
2792e52
4c4ce71
f3808e7
163df5d
d9b8e65
dd3acf8
fec747d
8a6ad5e
f1f9ee1
2d4e428
0b37088
f026427
c16cb0a
943a329
f6a920a
d3d2a3b
fa81521
e7b4562
ec12a65
d67f667
2ab41d7
77762b9
3430239
294d10d
881b859
ae2601e
35704a2
9709578
d4358d7
fc630a3
7823ec5
f290844
7e5160c
8b5453b
fd4dd8b
88f3dd8
6e089d7
3ed8c7a
d306937
bb12dfc
85f0381
0c0805d
1495b25
fc67528
b11d654
4e221bc
ab886a1
935b5ff
1b5901b
58c4cef
210d96a
414e23f
6ed7e76
479bcd1
210fa1d
264983e
31376e5
8e64cd6
d1f99fe
b248653
a81ca85
a187b4f
84ff209
57df882
f27b72c
270495a
f3833d6
d7c7e42
32130a5
da297ea
8e3eebd
aaac95e
0a02e4f
f4a80b7
7f07ab8
64994f4
c6550cf
ca4cdd5
dec504d
bf504b6
291b868
f021437
d144789
b6ee001
d626ecf
8eca442
832db64
eb0a955
06a4ddb
4c472fd
8a0fcc6
42977e6
8b2496e
c39b54d
2365471
44239ab
75cf3af
43f738e
79c489f
bf718c8
3f3fe05
5d96ecb
2268f3c
41fd30c
7f85ac1
f117a68
8991cd3
640cc59
87781c3
c5afea7
921665d
f901a80
120d7be
5615ba8
6a664fc
7d9ce98
4d337fd
b258545
2373e06
58cc209
35679fe
d65224e
4614a0d
d029daf
4ba1ea9
a855c0f
a666b60
8d8a83a
b61ea2e
7a3cb55
f4c693f
f86dc2c
f8c2fc5
b648936
5194522
4b27f05
0739bf6
8bcb753
a16a2b7
31bc090
0e68eec
2486b4d
f75d2be
b92abee
3a47e3b
33f4703
1553cc8
ca9a63f
a3b4308
ce79cb5
f0c022c
0e96f9e
418ee33
c91409c
987e7bd
2efe8c6
6ade5c3
8f7639d
aafc673
2519a80
7e835e1
dbd9173
3125840
15d1524
56e2373
04bdcfb
5e19b31
51485b3
1048529
d7ce214
48467a7
cadb80b
79e38c7
10c9d22
daf8749
793c57e
fd306ac
7edb825
e382b8e
8b2b77a
f5da463
e92a50f
a529545
f4f7f95
5d3c3ff
ef9c008
028f5f4
0546800
0da2822
817d408
d9d9ace
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.
Why do you remove all empty lines around these definitions, but use empty lines lower, down?
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.
Sorry I am not sure if I fully get your question. I think I just removed this empty line (line 29) without thinking about the reason...😨 and by "but use empty lines lower, down" do you mean empty lines at line 35-36? For those I also just randomly kept them there...
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'm not sure exactly what I meant by "lower, down" either, but your use of whitespace looks weird and inconsistent, mainly around this new
StratVarUidHandler
definition, which comes right in between theStratVarState
class and its companion and is somehow not separated by whitespace below it. By the way, why not renamrStratVarUidHandler
toStratVar
and move it next to the homonym type definition?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.
Thanks I see. I did the renaming, and I also realize that all the handler objects seem to be defined in
Uid.scala
, so I move the definition there.