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
Package registry
Model registry
Operate
Terraform modules
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
Romin Tomasetti
gmsh
Commits
ae1964ea
Verified
Commit
ae1964ea
authored
3 years ago
by
Giannis Nikiteas
Browse files
Options
Downloads
Patches
Plain Diff
Minor changes and update gmsh.f90
parent
44ebf7a3
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
api/GenApi.py
+1
-1
1 addition, 1 deletion
api/GenApi.py
api/gmsh.f90
+3
-5
3 additions, 5 deletions
api/gmsh.f90
with
4 additions
and
6 deletions
api/GenApi.py
+
1
−
1
View file @
ae1964ea
...
...
@@ -810,7 +810,7 @@ def iargcargv():
a
.
julia_arg
=
"
length(argv), argv
"
a
.
texi
=
"
(argc = 0)}, @code{argv = []
"
a
.
fortran_name_pre
=
"
argc,
"
a
.
fortran_type
=
"
integer
(C_INT
), value :: argc
\n
type (C_PTR
)
"
a
.
fortran_type
=
"
integer
(c_int
), value :: argc
\n
"
+
"
"
*
8
+
"
type(c_ptr
)
"
a
.
fortran_type_post
=
"
(*)
"
return
a
...
...
This diff is collapsed.
Click to expand it.
api/gmsh.f90
+
3
−
5
View file @
ae1964ea
...
...
@@ -21,9 +21,7 @@ module gmsh
integer
,
parameter
::
GMSH_API_VERSION_MAJOR
=
4
integer
,
parameter
::
GMSH_API_VERSION_MINOR
=
10
integer
,
parameter
::
GMSH_API_VERSION_PATCH
=
4
! TODO: the len= is problematic
character
(
len
=
100
),
parameter
::
GMSH_API_VERSION
=
"4.10.4"
real
(
c_double
),
parameter
::
M_PI
=
3.14159265358979323846d0
interface
...
...
@@ -39,8 +37,8 @@ module gmsh
!! to "General.NumThreads".
subroutine
gmshInitialize
(
argc
,
argv
,
readConfigFiles
,
run
,
ierr
)
bind
(
C
,
name
=
"gmshInitialize"
)
use
,
intrinsic
::
iso_c_binding
integer
(
C_INT
),
value
::
argc
type
(
C_PTR
)
::
argv
(
*
)
integer
(
c_int
),
value
::
argc
type
(
c_ptr
)
::
argv
(
*
)
integer
(
c_int
),
value
::
readConfigFiles
integer
(
c_int
),
value
::
run
integer
(
c_int
)
::
ierr
...
...
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