Hrvoje Bandov
Hrvoje Bandov
We have been thinking about those ideas. We still don't have a worked-out plan but we will definitely go in that direction. We want to keep the simple executable version...
The example assumes at least two nodes. I will fix the example, but I also have to check something when those distributed spawns are called on non-distributed lunatic.
@MarkintoshZ let's see next week. The distributed branch doesn't have a lot of changes in the host functions, only a new namespace with a few additional host functions.
Let's improve the error handling. After this PR we will need to do this across all distributed APIs. Otherwise looks ok.
> time step to use? Days, Months, Years, Decades? I think the smallest difference between naive dates (1 day) is very intuitive. `NaiveDate` provides a method `succ` and I would...
> I would be super happy to accept a PR implementing iterators! I think @gnzlbg made PR #208 and described everything above. Again, I don't understand why some people find...
> The fact that the logic is more complex is part of the reason that you'd want to push it down into a library where fixes can be shared. Iterating...
By the way, thanks for working on chrono! I'm just trying to be helpful!
@brianbruggeman note that the discussion was about `NaiveDate`, not timestamps (datetime). For `DateTime` it makes sense to have `Duration` steps, but for dates the smallest step is "day" (and as...
@brianbruggeman sure, but then you need to define what it means to iterate `NaiveDate` by 1 minute. We don't have an API for iterating integers by 0.1 either. IMO, it's...