Skip to content
Snippets Groups Projects
Commit 8dd79146 authored by Mark Jenkinson's avatar Mark Jenkinson
Browse files

Reverted to branch version

parent 279e8ae4
No related branches found
No related tags found
No related merge requests found
......@@ -7,14 +7,11 @@
/* CCOPYRIGHT */
#include <cmath>
#include <stdexcept>
#include "config.h"
#include "f2z.h"
#include "utils/log.h"
#include "utils/tracer_plus.h"
#include <stdexcept>
#include "libprob.h"
#include "miscmaths.h"
using namespace NEWMAT;
using namespace Utilities;
......@@ -63,7 +60,7 @@ namespace MISCMATHS {
for(int i = 1; i <= N; i++)
{
// cerr << "i=" << i;
iter = iter + top* ( std::pow( f,float(-(n+i-1)) ) / ( std::pow(alpha,double(i))*bot ) );
iter = iter + top* ( std::pow( f,float(-(n+i-1)) ) / ( std::pow(alpha,double(i))*bot ) );
top = top*(n-1+i)*(-1);
bot = bot*(n+m-1+i);
// cerr << "iter=" << iter;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment