Skip to main content

About

https://travis-ci.org/scidam/solver.svg?branch=master

A simple problem solver written in pure Python

Module provides an easy way to solve various problems that require calculations. Lets imagine a problem formulated in a text file using a some template language. Some places within the problem formulation text correspond to variables that have default values. What does to solve a problem mean in this context? To solve the problem is to 1) define output template (used to render solution), 2) write code that exploits input variables, 3) set up output variables in the code and, finally, 4) render the solution template. With help of solver classes these steps of getting a problem solution can be made easily.

Solver features:
  • arbitrary and independent input and output markups used in problem formulation and solution templates.

  • ability of asynchronous problem solving (Celery is required).

  • heuristic testing of problem solvability.

  • using all of Python computational power (with third party libraries) to solve your problems.

  • using jinja2 template language to produce dynamic parts of a problem formulation/solution.

Requirements

The solver works under Python 2.7.x and Python 3.3 and higher. The only requirements:

  • jinja2

  • six

Installation

Install pysolver

$ pip install python-solver

Testing

To run tests enter the command (additionally numpy is required):

$ python -m solver.tests

Usage example

A simple test problem. My name is John. I have 100 $. I want to buy several papers. Each paper worth is 5 $. How many papers can I buy?

Test problem (abstraction level)

test_problem_template_formulation = """My name is {{username}}. I have {{total}} $.
I want to buy several papers. Each paper worth is {{paper_cost}}$.
How many papers can I buy?
"""

test_problem_solution_code = """
    OUTPUTS['result']=INPUTS['total']/INPUTS['paper_cost']
    OUTPUTS['name'] = INPUTS['username']
    """
test_problem_output_template="""
    My name is {{name}} and answer is {{result}}.
    """

from solver import Task, Solver

task = Task(test_problem_template_formulation,
            default_vals={'username': 'John',
            'total': 100, 'paper_cost': 20},
            solution_template=test_problem_output_template,
            code = test_problem_solution_code
            )

psolver = Solver(task)

Solve the problem

$ psolver.solve()

or you can try to solve the problem asynchronously instead. if error occur in async_solve, the solve() method will be invoked by default.

psolver.async_solve()

Before rendering the results check the problem solution is ready (This step is required, when getting the solution asynchronously)

if psolver.is_solved:
    task.render_outputs()
print(task.output)

And, finally, print rendered template or do something else.

Release files for pysolver 0.0.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pysolver 0.0.3
File Size Uploaded
pysolver-0.0.3.tar.gz 10.5 kB Details

Release files / pysolver-0.0.3.tar.gz

Download URL pysolver-0.0.3.tar.gz
Size 10.5 kB
Tags Source
SHA-256 checksum
How to use checksums
2e77c9758911e540a835c4dcefe53565fabef59b5e4ccac8db89894be6bb2126
BLAKE2b-256 checksum
How to use checksums
eb51e2cbc4b7ef84c212e614c0bdf350dd259093b85b7cab62236e3cfab2ba29
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.0.3 This release

1 release file

0.0.2

1 release file

0.0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page