Skip to content

Commit

Permalink
Merge pull request #1113 from rdemaria/stabilize_order
Browse files Browse the repository at this point in the history
Introduce LAST option in INSTALL and MOVE and change default behaviour
  • Loading branch information
rdemaria committed Aug 15, 2022
2 parents 28b769b + 649e1c8 commit 3364035
Show file tree
Hide file tree
Showing 16 changed files with 594 additions and 302 deletions.
1 change: 1 addition & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ MAD-X master
* [PR 1107](https://github.com/MethodicalAcceleratorDesign/MAD-X/pull/1107) Stabizes few tests due to compiler dependent numerical noise (R. De Maria)
* [PR 1095](https://github.com/MethodicalAcceleratorDesign/MAD-X/pull/1095) Implement more robust, optional, PTC DA map output (L. Deniau)
* [PR 1088](https://github.com/MethodicalAcceleratorDesign/MAD-X/pull/1088) Additional explanation bv flag (J. Dilly)
* [PR 1113](https://github.com/MethodicalAcceleratorDesign/MAD-X/pull/1113) Introduce LAST option in INSTALL and MOVE and change default behaviour [Breaking change!]
* [PR 1131](https://github.com/MethodicalAcceleratorDesign/MAD-X/pull/1131) Add spin table (P. Skowonronski)

MAD-X release 5.08.01 (2022.02.25)
Expand Down
2 changes: 1 addition & 1 deletion Makefile_test
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ test-ptc-track-polygonaper \
test-ptc-trackline test-ptc-trackline-2 test-ptc-trackline-3 \
test-ptc-align test-ptc-align-2 \
test-touschek test-touschek-2 \
test-sequence test-sequence-2 test-sequence-3 test-sequence-4 test-sequence-5 test-sequence-6 test-sequence-7 test-sequence-8 test-sequence-9\
test-sequence test-sequence-2 test-sequence-3 test-sequence-4 test-sequence-5 test-sequence-6 test-sequence-7 test-sequence-8 test-sequence-9 test-sequence-10\
test-line \
test-plot test-plot-2 \
test-setknob test-fillknob \
Expand Down
230 changes: 118 additions & 112 deletions doc/latexuguide/seqedit.tex

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions src/mad_dict.c
Original file line number Diff line number Diff line change
Expand Up @@ -921,13 +921,15 @@ const char *const_command_def =
"element = [s, none, none], "
"class = [s, none, none], "
"at = [r, 0, 0], "
"from = [s, none, none]; "
"from = [s, none, none], "
"last = [l, true, true]; "
" "
"move: edit edit 0 0 "
"element = [s, none, none], "
"by = [r, 0, 0], "
"to = [r, 0, 0], "
"from = [s, none, none]; "
"from = [s, none, none], "
"last = [l, true, true]; "
" "
"remove: edit edit 0 0 "
"element = [s, none, none]; "
Expand Down

0 comments on commit 3364035

Please sign in to comment.