#ifndef DIFFUSION_H_ #define DIFFUSION_H_ #include #include typedef Eigen::Triplet T; extern void BTCS1D(int x, std::vector &c, std::vector &alpha, double timestep, std::vector &bc); extern void BTCS2D(int x, int y, std::vector &c, std::vector &alpha, double timestep); #endif // DIFFUSION_H_