File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ struct DeckTransformationGroup
57
57
end
58
58
59
59
function DeckTransformationGroup (F:: SampledSystem )
60
- symmetries = _init_symmetries (length (F . deck_permutations), unknowns (F))
60
+ symmetries = _init_symmetries (length (deck_permutations (F) ), unknowns (F))
61
61
return DeckTransformationGroup (symmetries, F)
62
62
end
63
63
@@ -628,7 +628,7 @@ function symmetries_fixing_parameters!(
628
628
end
629
629
630
630
scalings = _scalings_commuting_with_deck (F, scaling_symmetries (F))
631
- scalings = param_dep ? scalings : restrict_scalings (scalings, unknowns (F)) # TODO : justify!
631
+ # scalings = param_dep ? scalings : restrict_scalings(scalings, unknowns(F)) # TODO : justify!
632
632
if isempty (grading (scalings))
633
633
logging && printstyled (" Running dense version...\n " , color= :green )
634
634
return symmetries_fixing_parameters_dense! (
@@ -644,6 +644,7 @@ function symmetries_fixing_parameters!(
644
644
F,
645
645
grading (scalings);
646
646
degree_bound= degree_bound,
647
+ param_dep= param_dep,
647
648
tols= tols,
648
649
logging= logging
649
650
)
Original file line number Diff line number Diff line change 34
34
nfree (grading:: Grading ) = isnothing (grading. free_part) ? 0 : size (grading. free_part, 1 )
35
35
nscalings (grading:: Grading ) = grading. nscalings
36
36
Base. isempty (grading:: Grading ) = isnothing (grading. free_part) && isempty (grading. mod_part)
37
- Base. copy (grading:: Grading ) = Grading (grading. free_part, grading. mod_part)
37
+ Base. copy (grading:: Grading ) = Grading (nscalings (grading), grading. free_part, grading. mod_part)
38
38
39
39
function _structure (grading:: Grading )
40
40
str = " "
You can’t perform that action at this time.
0 commit comments