Jonathan Clark

Results 48 issues of Jonathan Clark

My group has a C# library that we use for command line parsing and we have dozens of native exe's that use this same library. It would be easy for...

Implement summaries, as discussed in the tutorial. This will allow users to quickly summarize results so far in a workflow and make papers for tables, etc.

wish

Based on conversation with @ales-t, add a feature that allows sharing trusted repositories of intermediate results. E.g. If Jon and Ales are both working on a WMT system using the...

wish
under consideration

Graft globs that are routed to a parent task via a global variable do not work. The following should have only 1 realization for "broken" but instead has 2: ```...

bug

Ducttape is built around the principle that workflows should be run, edited, and then re-run without losing work. However, certain workflow changes can cause work to be lost (that is...

documentation

- Summaries are very useful when combined with plans - Summaries factor out constant branch points for you - Summaries aren't cached -- use only quick commands - Can be...

documentation

``` task few > x :: P=(BP1: 1..3) {} task completes < in=$x@few[BP1:*] {} task lots > x :: P=(BP1: 1..10) {} #task works1 :: z=$P@lots[BP1:*] {} #task works2 <...

bug
higher priority

The following fails silently, but should produce an error message: ``` task t :: (Exists: exists) {} plan p { reach t via (DoesNotExist: branch) reach t via (Exists: does_not_exist)...

The following should succeed, but instead gives a cryptic stack trace: ``` task t > file oops_param=@ {} global { oops_param=42 } ```

bug