Aprepro 5.0x
Loading...
Searching...
No Matches
apr_array.h
Go to the documentation of this file.
1/*
2 * Copyright(C) 1999-2020, 2022 National Technology & Engineering Solutions
3 * of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
4 * NTESS, the U.S. Government retains certain rights in this software.
5 *
6 * See packages/seacas/LICENSE for details
7 */
8#pragma once
9
10namespace SEAMS {
11 struct array;
12
13 double array_value(array *arr, double row, double col);
14 array *array_add(const array *a, const array *b);
15 array *array_sub(const array *a, const array *b);
16 array *array_scale(const array *a, double s);
17 array *array_mult(const array *a, const array *b);
18} // namespace SEAMS
Definition apr_aprepro.cc:57
array * array_sub(const array *a, const array *b)
Definition apr_array.cc:91
array * array_mult(const array *a, const array *b)
Definition apr_array.cc:112
double array_value(array *arr, double row, double col)
Definition apr_array.cc:54
array * array_scale(const array *a, double s)
Definition apr_array.cc:101
array * array_add(const array *a, const array *b)
Definition apr_array.cc:82