alpaqa
pi-pico
Nonconvex constrained optimization
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
u
v
w
Functions
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
u
w
Variables
Typedefs
a
c
d
e
f
i
l
m
p
r
s
t
u
v
Enumerations
Concepts
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
û
ŷ
α
γ
δ
ε
ζ
λ
ν
ρ
σ
τ
φ
ψ
ϵ
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
û
α
ρ
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
ŷ
α
γ
δ
ε
ζ
λ
ν
ρ
σ
τ
φ
ψ
ϵ
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
Enumerations
Enumerator
a
f
i
s
u
Related Symbols
Files
File List
File Members
All
a
b
c
d
e
f
g
l
m
p
r
s
t
u
w
Functions
a
c
d
e
f
g
l
m
p
r
s
t
w
Variables
Typedefs
Enumerations
Enumerator
Macros
a
b
c
e
p
u
Examples
Sphinx
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Concepts
Loading...
Searching...
No Matches
src
alpaqa
src
util
dl-flags.cpp
Go to the documentation of this file.
1
#include <
alpaqa/util/dl-flags.hpp
>
2
3
#if !_WIN32
4
#include <dlfcn.h>
5
#endif
6
7
namespace
alpaqa
{
8
9
DynamicLoadFlags::operator
int
()
const
{
10
#if _WIN32
11
return
0;
12
#else
13
return
(global ?
RTLD_GLOBAL
:
RTLD_LOCAL
) |
//
14
(lazy ?
RTLD_LAZY
:
RTLD_NOW
) |
//
15
(nodelete ?
RTLD_NODELETE
: 0) |
16
#
ifdef
RTLD_DEEPBIND
17
(deepbind ?
RTLD_DEEPBIND
: 0) |
18
#
endif
19
0;
20
#endif
21
}
9
DynamicLoadFlags::operator
int
()
const
{
…
}
22
23
}
// namespace alpaqa
dl-flags.hpp
alpaqa
Definition
anderson.hpp:10
alpaqa::inf
constexpr const auto inf
Definition
config.hpp:112
Generated on Fri May 3 2024 for alpaqa by
1.9.8