-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add option to collapse the Jones chain inside the solver (#356)
* Add WIP on dynamically collapsing the chain of gain terms - hacky DI version working. * Improve intelligencein collapse to keep chain as short as possible. Fix inciental regex warning. * Chain collapse is now an optional feature which will be configured to be the default in a future commit. * Better handling of DD case. * Expose parameter to control chain collapse. Fix formatting. * Add time input to parameterized terms. * Remove time from parallactic angle term as it is now used in all terms. * Add newline. * Fix incorrect handling of direction dependent terms. Ignore intervals on parallactic angle term.
- Loading branch information
Showing
6 changed files
with
187 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,8 @@ | |
"WEIGHT", | ||
"FLAG", | ||
"ROW_MAP", | ||
"ROW_WEIGHTS" | ||
"ROW_WEIGHTS", | ||
"TIME" | ||
) | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,8 @@ | |
"WEIGHT", | ||
"FLAG", | ||
"ROW_MAP", | ||
"ROW_WEIGHTS" | ||
"ROW_WEIGHTS", | ||
"TIME" | ||
) | ||
) | ||
|
||
|