/*
* pollard.c
*
*
* Created by Andrew Roberts on 31/01/2006.
* Copyright 2006 __MyCompanyName__. All rights reserved.
*
*/
#include <math.h>
#include <stdlib.h>
#include <stdio.h>
#include "gmp.h"
void pollardsrho(mpz_t n){
mpz_t d, x, y, c, p, q, fy, ans, gcd, abs;
int...