Tried executing a basic try code Try1.cpp in vol_test/examples/Sampling_New:
#include<stdio.h>
#include "random_walks.hpp"
using namespace std;
int main()
{
cout<<"Ran"<<endl;
return 0;
}
Returned the following error (sqrt,pow not a member of std):

Resolved that by using #include<cmath> . However cmath ideally should not have been needed to be included.