Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
S
src
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
70
Issues
70
List
Boards
Labels
Service Desk
Milestones
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Code Review
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OPAL
src
Commits
72d29459
Commit
72d29459
authored
Oct 07, 2020
by
gsell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compile issues fixed to the changes in class BoxCornerDomain
length_m has been removed but was still used in a constructor
parent
0fb1dfd2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
4 deletions
+2
-4
src/Solvers/BoxCornerDomain.cpp
src/Solvers/BoxCornerDomain.cpp
+1
-2
src/Solvers/BoxCornerDomain.h
src/Solvers/BoxCornerDomain.h
+1
-1
src/Solvers/MGPoissonSolver.cpp
src/Solvers/MGPoissonSolver.cpp
+0
-1
No files found.
src/Solvers/BoxCornerDomain.cpp
View file @
72d29459
...
...
@@ -33,7 +33,7 @@
//FIXME: ORDER HOW TO TRAVERSE NODES IS FIXED, THIS SHOULD BE MORE GENERIC! (PLACES MARKED)
BoxCornerDomain
::
BoxCornerDomain
(
double
A
,
double
B
,
double
C
,
double
length
,
BoxCornerDomain
::
BoxCornerDomain
(
double
A
,
double
B
,
double
C
,
double
L1
,
double
L2
,
IntVector_t
nr
,
Vector_t
hr
,
std
::
string
interpl
)
:
RegularDomain
(
nr
,
hr
,
interpl
)
...
...
@@ -41,7 +41,6 @@ BoxCornerDomain::BoxCornerDomain(double A, double B, double C, double length,
setRangeMin
(
Vector_t
(
-
A
,
-
B
,
L1
));
setRangeMax
(
Vector_t
(
A
,
B
,
L1
+
L2
));
C_m
=
C
;
length_m
=
length
;
throw
OpalException
(
"BoxCornerDomain::BoxCornerDomain()"
,
"This domain is currently not supported!"
);
...
...
src/Solvers/BoxCornerDomain.h
View file @
72d29459
...
...
@@ -79,7 +79,7 @@ public:
* \param L1 length of the first part of the structure
* \param L2 length of the corner
*/
BoxCornerDomain
(
double
A
,
double
B
,
double
C
,
double
length
,
BoxCornerDomain
(
double
A
,
double
B
,
double
C
,
double
L1
,
double
L2
,
IntVector_t
nr
,
Vector_t
hr
,
std
::
string
interpl
);
~
BoxCornerDomain
();
...
...
src/Solvers/MGPoissonSolver.cpp
View file @
72d29459
...
...
@@ -123,7 +123,6 @@ MGPoissonSolver::MGPoissonSolver ( PartBunch *beam,
new
BoxCornerDomain
(
currentGeometry
->
getA
(),
currentGeometry
->
getB
(),
currentGeometry
->
getC
(),
currentGeometry
->
getLength
(),
currentGeometry
->
getL1
(),
currentGeometry
->
getL2
(),
orig_nr_m
,
hr_m
,
interpl
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment