Git Product home page Git Product logo

Comments (1)

xbarin02 avatar xbarin02 commented on May 20, 2024

Yes, my implementation in libgmp is as follows:

#include <gmp.h>
#include <assert.h>

mp_bitcnt_t mpz_ctz(const mpz_t n)
{
	return mpz_scan1(n, 0);
}

void mpz_divexact_by3(mpz_t q)
{
	size_t n = mpz_size(q);
	mp_limb_t *lq = mpz_limbs_modify(q, n);
	mpn_divexact_by3(lq, lq, n);
	mpz_limbs_finish(q, n);
}

void mul(mpz_t m, const mpz_t a)
{
	assert(mpz_odd_p(m));

	if (mpz_cmp_ui(m, 1UL) == 0) {
		mpz_set(m, a);
		return;
	}

	mpz_addmul_ui(m, m, 2);
	mpz_add_ui(m, m, 1);

	mp_bitcnt_t beta = mpz_ctz(m);

	mpz_fdiv_q_2exp(m, m, beta);

	mul(m, a);

	mpz_mul_2exp(m, m, beta);

	mpz_sub(m, m, a);
	mpz_divexact_by3(m);
}

If you are interested in a speed measurement program, you can find it here.

from collatz.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.