Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
nl_64.h
1/*
2 * Copyright (c) 2000-2022 Inria
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * * Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * * Neither the name of the ALICE Project-Team nor the names of its
14 * contributors may be used to endorse or promote products derived from this
15 * software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
21 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 * POSSIBILITY OF SUCH DAMAGE.
28 *
29 * Contact: Bruno Levy
30 *
31 * https://www.inria.fr/fr/bruno-levy
32 *
33 * Inria,
34 * Domaine de Voluceau,
35 * 78150 Le Chesnay - Rocquencourt
36 * FRANCE
37 *
38 */
39
40/*
41 * Wrappers to avoid warnings when using OpenNL functions with 64 bit
42 * indices. Note: dimension of matrix still limited to 32 bit indices
43 * (but not NNZ).
44 */
45
46#ifndef NL_64_H
47#define NL_64_H
48
49#if defined(__cplusplus) && defined(GARGANTUA)
50
51#include <limits>
52#include <cassert>
53
54inline NLuint nlTo32(NLulong x) {
55#ifndef NDEBUG
56 assert(x <= NLulong(std::numeric_limits<NLuint>::max()));
57#endif
58 return NLuint(x);
59}
60
61inline double nlGetVariable(NLulong i) {
62 return nlGetVariable(nlTo32(i));
63}
64
65inline void nlSetVariable(NLulong i, NLdouble a) {
66 nlSetVariable(nlTo32(i), a);
67}
68
69inline void nlLockVariable(NLulong i) {
70 nlLockVariable(nlTo32(i));
71}
72
74 return nlVariableIsLocked(nlTo32(index));
75}
76
77inline void nlCoefficient(NLulong i, NLdouble a) {
78 nlCoefficient(nlTo32(i), a);
79}
80
82 return nlAddIJCoefficient(nlTo32(i), nlTo32(j), a);
83}
84
85inline void nlAddIRightHandSide(NLulong i, NLdouble a) {
86 nlAddIRightHandSide(nlTo32(i), a);
87}
88
89inline void nlAddIJCoefficientAt(
90 NLulong i, NLulong j, NLdouble a, NLulong pos
91) {
92 nlAddIJCoefficientAt(nlTo32(i), nlTo32(j), a, pos);
93}
94
95inline void nlSetIJCoefficientAtRowOffset(
96 NLulong i, NLulong j, NLdouble a, NLulong row_offset
97) {
98 nlSetIJCoefficientAtRowOffset(nlTo32(i), nlTo32(j), a, nlTo32(row_offset));
99}
100
101inline double nlGetEigenValue(int i) {
102 return nlGetEigenValue(NLuint(i));
103}
104
105inline double nlGetEigenValue(NLulong i) {
106 return nlGetEigenValue(nlTo32(i));
107}
108
109inline double nlMultiGetVariable(NLulong i, NLulong j) {
110 return nlMultiGetVariable(nlTo32(i),nlTo32(j));
111}
112
113#endif
114
115#endif
uint32_t NLuint
A 4-bytes unsigned integer.
Definition nl.h:263
NLAPI void NLAPIENTRY nlCoefficient(NLuint i, NLdouble value)
Appends a coefficient to the current row.
uint64_t NLulong
A 8-bytes unsigned integer.
Definition nl.h:273
NLAPI NLulong NLAPIENTRY nlAddIJCoefficient(NLuint i, NLuint j, NLdouble value)
Adds a coefficient to the current matrix.
NLAPI void NLAPIENTRY nlSetVariable(NLuint i, NLdouble value)
Sets the value of a variable.
double NLdouble
A double-precision floating-point number.
Definition nl.h:288
NLAPI NLdouble NLAPIENTRY nlMultiGetVariable(NLuint i, NLuint k)
Gets the value of a variable when there are several systems to solve.
NLAPI void NLAPIENTRY nlLockVariable(NLuint index)
Locks a variable.
unsigned char NLboolean
A truth value (NL_TRUE or NL_FALSE).
Definition nl.h:221
NLAPI NLboolean NLAPIENTRY nlVariableIsLocked(NLuint index)
Tests whether a variable is locked.
NLAPI NLdouble NLAPIENTRY nlGetVariable(NLuint i)
Gets the value of a variable.
NLAPI void NLAPIENTRY nlAddIRightHandSide(NLuint i, NLdouble value)
Adds a coefficient to a component of the right hand side of the equation.
NLAPI double NLAPIENTRY nlGetEigenValue(NLuint i)
Gets an eigenvalue.
NLAPI void NLAPIENTRY nlAddIJCoefficientAt(NLuint i, NLuint j, NLdouble value, NLulong index)
Adds a coefficient to the current matrix with known index.