I'm using the BigInteger library. However when converting from string to BigInteger I summon the error "no matching function for call BigInteger(string&)".
How should one convert from between the two without invoking an error?
Here is a snippit of my code:
#include "BigIntegerLibrary.hh"
str1=randomStrGen(1);
str2=randomStrGen(1);
BigInteger s1 = new BigInteger(str1);
BigInteger s2 = new BigInteger(str2);
BigInteger Library downloaded from https://mattmccutchen.net/bigint/, 2010.04.30 Release