Blame view

stim/math/constants.h 379 Bytes
8e4f8364   David Mayerich   started a new opt...
1
2
  #ifndef STIM_CONSTANTS_H
  #define STIM_CONSTANTS_H
821513c8   David Mayerich   ERROR plane wave ...
3
  
4252d827   David Mayerich   ivote3 fixes and ...
4
5
6
  #define STIM_PI		3.1415926535897932384626433832795028841971693993751058209749445923078164062862
  #define STIM_TAU	2 * STIM_PI
  
9339fbad   David Mayerich   implementing mie ...
7
  #include "stim/cuda/cudatools/callable.h"
8e4f8364   David Mayerich   started a new opt...
8
9
10
11
  namespace stim{
  	const double PI		=	3.1415926535897932384626433832795028841971693993751058209749445923078164062862;
  	const double TAU	=	2 * stim::PI;
  }
821513c8   David Mayerich   ERROR plane wave ...
12
  
8a86bd56   David Mayerich   changed rts names...
13
  #endif