Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
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
Model registry
Operate
Environments
Monitor
Incidents
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
Larry Price
gmsh
Commits
200b4326
Commit
200b4326
authored
12 years ago
by
Jonathan Lambrechts
Browse files
Options
Downloads
Patches
Plain Diff
dg : -Wall -Werror -pedantic -DFORTIFY_SOURCE=1 -Wno-long-long
parent
f43522e3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Geo/STensor3.h
+2
-2
2 additions, 2 deletions
Geo/STensor3.h
with
2 additions
and
2 deletions
Geo/STensor3.h
+
2
−
2
View file @
200b4326
...
@@ -332,7 +332,7 @@ inline SVector3 operator* (const STensor3& t, const SVector3& v){
...
@@ -332,7 +332,7 @@ inline SVector3 operator* (const STensor3& t, const SVector3& v){
for
(
int
j
=
0
;
j
<
3
;
j
++
)
for
(
int
j
=
0
;
j
<
3
;
j
++
)
temp
[
i
]
+=
t
(
i
,
j
)
*
v
[
j
];
temp
[
i
]
+=
t
(
i
,
j
)
*
v
[
j
];
return
temp
;
return
temp
;
}
;
}
inline
SVector3
operator
*
(
const
SVector3
&
v
,
const
STensor3
&
t
){
inline
SVector3
operator
*
(
const
SVector3
&
v
,
const
STensor3
&
t
){
SVector3
temp
(
0.
,
0.
,
0.
);
SVector3
temp
(
0.
,
0.
,
0.
);
...
@@ -340,7 +340,7 @@ inline SVector3 operator* (const SVector3& v, const STensor3& t){
...
@@ -340,7 +340,7 @@ inline SVector3 operator* (const SVector3& v, const STensor3& t){
for
(
int
j
=
0
;
j
<
3
;
j
++
)
for
(
int
j
=
0
;
j
<
3
;
j
++
)
temp
[
j
]
+=
v
[
i
]
*
t
(
i
,
j
);
temp
[
j
]
+=
v
[
i
]
*
t
(
i
,
j
);
return
temp
;
return
temp
;
}
;
}
inline
STensor3
operator
*
(
const
STensor3
&
t
,
double
m
)
inline
STensor3
operator
*
(
const
STensor3
&
t
,
double
m
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment