summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/yap/example/autodiff_library/Tape.cpp
blob: 0a5682f3b5bd60d2254fb158b246bf09ea442285 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Tape.cpp
 *
 *  Created on: 6 Nov 2013
 *      Author: s0965328
 */



#include "Tape.h"

namespace AutoDiff
{
	template<> Tape<unsigned int>* Tape<unsigned int>::indexTape = NULL;
	template<> Tape<double>* Tape<double>::valueTape = NULL;
}