Coder Social home page Coder Social logo

Comments (1)

johncbowman avatar johncbowman commented on July 2, 2024

Thanks for reporting this. Actually, the int type in Asymptote is supposed to be the highest precision native integer (normally 64 bits) so for consistency, format should always enforce ll. In fact, an explicit 'll' doesn't really make sense from the point of view of the Asymptote machine (which, except for the bitwise functions AND, OR, XOR, NOT, CLZ, and CTZ pretends to be unaware of bit representations). So the desired behavour should be:

format("%x",intMax);
7ffffffffffffffd

format("%x",intMin);
8000000000000000

format("%d",intMax);
9223372036854775805

format("%d",intMin);
-9223372036854775808

In fact the current version of Asymptote tries to turn 1 trillion dollars into a huge loss:
format("$%'d",1000000000000);
$-727,379,968

With commit 488d809, the correct result is produced:
format("$%'d",1000000000000);
$1,000,000,000,000

from asymptote.

Related Issues (20)

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.