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
5adb8aa4
Commit
5adb8aa4
authored
13 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
No commit message
No commit message
parent
ab956ea5
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
Fltk/onelabWindow.cpp
+4
-1
4 additions, 1 deletion
Fltk/onelabWindow.cpp
doc/texinfo/gmsh.texi
+4
-3
4 additions, 3 deletions
doc/texinfo/gmsh.texi
with
8 additions
and
4 deletions
Fltk/onelabWindow.cpp
+
4
−
1
View file @
5adb8aa4
...
...
@@ -722,7 +722,10 @@ static void onelab_choose_executable_cb(Fl_Widget *w, void *data)
#if defined(WIN32)
pattern
+=
".exe"
;
#endif
if
(
fileChooser
(
FILE_CHOOSER_SINGLE
,
"Choose executable"
,
pattern
.
c_str
())){
const
char
*
old
=
0
;
if
(
!
c
->
getCommandLine
().
empty
())
old
=
c
->
getCommandLine
().
c_str
();
if
(
fileChooser
(
FILE_CHOOSER_SINGLE
,
"Choose executable"
,
pattern
.
c_str
(),
old
)){
std
::
string
exe
=
fileChooserGetName
(
1
);
c
->
setCommandLine
(
exe
);
if
(
c
->
getIndex
()
>=
0
&&
c
->
getIndex
()
<
5
)
...
...
This diff is collapsed.
Click to expand it.
doc/texinfo/gmsh.texi
+
4
−
3
View file @
5adb8aa4
...
...
@@ -3041,9 +3041,10 @@ solver module, you need to specify its name (@code{Solver.Name0},
@ref
{
Solver options list
}
).
The client-server API for the solver interface is defined in the
@file
{
onelab.h
}
header. See the sources of GetDP
(@url
{
http://geuz.org/getdp
}
, for an example on how to use the ONELAB
programming interface.
@file
{
onelab.h
}
header. See @file
{
utils/solvers/c++/solver.cpp
}
for a
simple example on how to use the ONELAB programming interface. See the
sources of GetDP (@url
{
http://geuz.org/getdp
}
for a more comprehensive
example.
@menu
* Solver options::
...
...
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