MPSolve 3.2.1
Loading...
Searching...
No Matches
matrix.h
1/*
2 * This file is part of MPSolve 3.2.1
3 *
4 * Copyright (C) 2001-2020, Dipartimento di Matematica "L. Tonelli", Pisa.
5 * License: http://www.gnu.org/licenses/gpl.html GPL version 3 or higher
6 *
7 * Authors:
8 * Leonardo Robol <leonardo.robol@unipi.it>
9 */
10
11#ifndef MPS_MATRIX_H_
12#define MPS_MATRIX_H_
13
14/* macros used to access matrix elements */
15#define MPS_MATRIX_ELEM(M, i, j, n) M[(i) * (n) + (j)]
16
17#endif