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
01d14b18
Commit
01d14b18
authored
16 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
wrong commit
parent
77e3100a
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
Common/GmshMatrix.h
+2
-2
2 additions, 2 deletions
Common/GmshMatrix.h
contrib/NR/Makefile
+20
-15
20 additions, 15 deletions
contrib/NR/Makefile
contrib/NR/nrutil.cpp
+1
-1
1 addition, 1 deletion
contrib/NR/nrutil.cpp
doc/gmsh.html
+1
-1
1 addition, 1 deletion
doc/gmsh.html
with
24 additions
and
19 deletions
Common/GmshMatrix.h
+
2
−
2
View file @
01d14b18
...
...
@@ -96,13 +96,13 @@ class Gmsh_Matrix
for
(
int
i
=
0
;
i
<
b
.
size1
();
i
++
)
for
(
int
j
=
0
;
j
<
b
.
size2
();
j
++
)
for
(
int
k
=
0
;
k
<
size2
();
k
++
)
b
(
i
,
j
)
+=
(
*
this
)(
i
,
k
)
*
x
(
k
,
j
);
b
.
data
[
i
+
r
*
j
]
+=
(
*
this
)(
i
,
k
)
*
x
(
k
,
j
);
}
inline
void
mult
(
const
Gmsh_Vector
<
SCALAR
>
&
x
,
Gmsh_Vector
<
SCALAR
>
&
b
)
{
for
(
int
i
=
0
;
i
<
b
.
size
();
i
++
)
for
(
int
j
=
0
;
j
<
b
.
size
();
j
++
)
b
(
i
)
+=
(
*
this
)(
i
,
j
)
*
x
(
j
);
b
.
data
[
i
]
+=
(
*
this
)(
i
,
j
)
*
x
(
j
);
}
inline
void
set_all
(
const
double
&
m
)
{
...
...
This diff is collapsed.
Click to expand it.
contrib/NR/Makefile
+
20
−
15
View file @
01d14b18
#
GetDP - Copyright (C) 1997-2008 P. Dular, C. G
euzaine
#
$Id: Makefile,v 1.18 2008-07-10 11:54:05 g
euzaine
Exp $
#
# See the LICENSE.txt file for license information. Please report all
# bugs and problems to <getdp@geuz.org>.
# Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
#
# Please report all bugs and problems to <gmsh@geuz.org>.
include
../../variables
LIB
=
../../lib/libG
etDP
NR
${
LIBEXT
}
LIB
=
../../lib/libG
msh
NR
${
LIBEXT
}
INC
=
${
DASH
}
I../../Common
${
DASH
}
I../../DataStr
${
DASH
}
I../../Numeric
...
...
@@ -47,14 +63,3 @@ depend:
rm
-f
Makefile.new
# DO NOT DELETE THIS LINE
brent.o
:
brent.cpp nrutil.h
dpythag.o
:
dpythag.cpp nrutil.h
dsvdcmp.o
:
dsvdcmp.cpp nrutil.h
fdjac.o
:
fdjac.cpp nrutil.h
fmin.o
:
fmin.cpp nrutil.h
lnsrch.o
:
lnsrch.cpp nrutil.h
lubksb.o
:
lubksb.cpp
ludcmp.o
:
ludcmp.cpp nrutil.h
mnbrak.o
:
mnbrak.cpp nrutil.h
newt.o
:
newt.cpp nrutil.h
nrutil.o
:
nrutil.cpp ../../Common/Message.h ../../Common/GmshClient.h
This diff is collapsed.
Click to expand it.
contrib/NR/nrutil.cpp
+
1
−
1
View file @
01d14b18
// This file has been modified for inclusion in G
etDP
// This file has been modified for inclusion in G
msh
#include
<stdio.h>
#include
<stddef.h>
...
...
This diff is collapsed.
Click to expand it.
doc/gmsh.html
+
1
−
1
View file @
01d14b18
...
...
@@ -30,9 +30,9 @@ generator with built-in pre- and post-processing facilities</h1>
<center>
<a
href=
"#Description"
>
Description
</a>
|
<a
href=
"#Download"
><b>
Download
</b></a>
|
<a
href=
"#Authors"
>
Authors and credits
</a>
|
<a
href=
"#Documentation"
>
Documentation
</a>
|
<a
href=
"#Mailing lists"
>
Mailing lists
</a>
|
<a
href=
"#Authors"
>
Authors and credits
</a>
|
<a
href=
"#Licensing"
>
Licensing
</a>
|
<a
href=
"#Screenshots"
>
Screenshots
</a>
|
<a
href=
"#Links"
>
Links
</a>
...
...
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