Tape.cpp 247 B

12345678910111213141516
  1. /*
  2. * Tape.cpp
  3. *
  4. * Created on: 6 Nov 2013
  5. * Author: s0965328
  6. */
  7. #include "Tape.h"
  8. namespace AutoDiff
  9. {
  10. template<> Tape<unsigned int>* Tape<unsigned int>::indexTape = NULL;
  11. template<> Tape<double>* Tape<double>::valueTape = NULL;
  12. }