GithubHelp home page GithubHelp logo

defer's Introduction

Defer: a simple library for traceable computation

One of the benefits of computers is that they can easily evaluate mathematical expressions with great accuracy and speed. On the other hand, it can be very clumsy making a report of those expressions.

For example, suppose you need to calculate x=3*99:

>>> x = 3*99
>>> print x
297

You get the answer, but where is the context? It is missing. We have to do this:

>>> x = 3*99
>>> print "x = 3*99 = ", x
x = 3*99 =  297

But that's not good, because now we have to repeat the expression twice, once in the evaluation, and once in the report, and these can get out of sync.

The Defer library is a way of producing computations that can both be evaluated and described, so that the results can be kept in sync. For example:

>>> k = DeferConstant(5.21,'k')
>>> m = 2+k*7%3
>>> m.value
2.469999999999999
>>> m
2+k*7%3

Defer is published under the Apache License and can be easily incorporated into Python applications.

defer's People

Contributors

jason-s avatar

Watchers

 avatar James Cloos avatar  avatar

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.