File size: 203 Bytes
10f2621
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef H_OUTPUT_H
#define H_OUTPUT_H

#include <array>

#include "boundary_element.h"
#include "tabipb_timers.h"

std::array<double, 3> Output(const BoundaryElement& bem, const Timers& timers);

#endif