alpaqa
pi-pico
Nonconvex constrained optimization
Loading...
Searching...
No Matches
src
alpaqa
include
alpaqa
util
dl-flags.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#include <alpaqa/export.h>
4
5
namespace
alpaqa
{
6
7
/// Flags to be passed to `dlopen`.
8
struct
ALPAQA_EXPORT
DynamicLoadFlags
{
9
/// `RTLD_GLOBAL` (true) or `RTLD_LOCAL` (false).
10
bool
global =
false
;
11
/// `RTLD_LAZY` (true) or `RTLD_NOW` (false).
12
bool
lazy =
false
;
13
/// `RTLD_NODELETE`
14
bool
nodelete =
true
;
15
/// `RTLD_DEEPBIND`
16
bool
deepbind =
true
;
17
18
operator
int
()
const
;
19
};
20
21
}
// namespace alpaqa
alpaqa
Definition
anderson.hpp:10
alpaqa::inf
constexpr const auto inf
Definition
config.hpp:112
alpaqa::DynamicLoadFlags
Flags to be passed to dlopen.
Definition
dl-flags.hpp:8
Generated on Fri May 3 2024 for alpaqa by
1.9.8