Skip to content
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

Introduce LAST option in INSTALL and MOVE and change default behaviour #1113

Merged
merged 5 commits into from
Aug 15, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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!]

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
Loading