Skip to content
Snippets Groups Projects
Unverified Commit d15afd39 authored by Thorsten Hater's avatar Thorsten Hater Committed by GitHub
Browse files

Add some convenience to simulation creation. (#1904)

Encapsulates 80% of cases:
```cxx
 rec = recipe()
 ctx = make_context()
 dec = partition_load_balance(rec, ctx)
 sim = simulation(rec, dec, ctx)
```
is now written as
```cxx
 rec = recipe()
 sim = simulation(rec)
```
In python we use keyword args to allow
both to be specified separatly.

Partially fixes #1862 
parent 4a305b4f
No related merge requests found
Showing
with 47 additions and 53 deletions
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment