Class Job

A single computation with its configuration and result

Declaration

class Job:

Documentation

A single computation with its configuration and result

Attributes
* config - `OrderedDict` of function parameters (use with `Builder.run_with_config`)
* value - resulting value of the computation
* job_setup - setup for the job
* created - datetime when job was created
* comp_time - time of computation when job was created, or None if job was inserted

Methods

Reexports