#ifndef __INSTANCES_H__
#define __INSTANCES_H__

template class IBFSGraph<int,int,int>;
// template class IBFSGraph<short,int,int>;
template class IBFSGraph<float,float,float>;
template class IBFSGraph<double,double,double>;

#endif