Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Merge requests
!1319
GUI: copy editing while reading distribution mechanism
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
GUI: copy editing while reading distribution mechanism
i443
into
main
Overview
6
Commits
8
Pipelines
3
Changes
42
Merged
Wuttke, Joachim
requested to merge
i443
into
main
2 years ago
Overview
6
Commits
8
Pipelines
3
Changes
42
Expand
0
0
Merge request reports
Compare
main
version 2
a91b4988
2 years ago
version 1
ada293e1
2 years ago
main (base)
and
latest version
latest version
6e92da33
8 commits,
2 years ago
version 2
a91b4988
8 commits,
2 years ago
version 1
ada293e1
7 commits,
2 years ago
42 files
+
116
−
119
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
42
Search (e.g. *.vue) (Ctrl+P)
Base/Axis/Frame.cpp
+
2
−
2
Options
@@ -62,9 +62,9 @@ size_t Frame::projectedIndex(size_t i_flat, size_t k_axis) const
return
(
i_flat
/
m_axes
[
1
]
->
size
())
%
m_axes
[
0
]
->
size
();
if
(
k_axis
==
1
)
return
i_flat
%
m_axes
[
1
]
->
size
();
ASSERT
(
0
);
ASSERT
(
false
);
}
ASSERT
(
0
);
ASSERT
(
false
);
}
size_t
Frame
::
toGlobalIndex
(
const
std
::
vector
<
unsigned
>&
axes_indices
)
const
Loading