From 26248a437d7fa24400ca9be0893bd5a534dcb68d Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Mon, 2 Jan 2017 23:52:56 +0000 Subject: [PATCH] Updated Post Scarcity Hardware (markdown) --- Post-Scarcity-Hardware.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Post-Scarcity-Hardware.md b/Post-Scarcity-Hardware.md index 617f96f..74bfb3b 100644 --- a/Post-Scarcity-Hardware.md +++ b/Post-Scarcity-Hardware.md @@ -32,12 +32,12 @@ Performance doesn't actually improve very much. Consider this function, which is just map over cells within a row. That's because it isn't worth starting a new thread for each cell, but there may be efficiency gains in running rows in parallel." - (\[world function\] + ([world function] (map-world world function nil)) - (\[world function additional-args\] - (into \[\] - (pmap (fn \[row\] - (into \[\] (map + ([world function additional-args] + (into [] + (pmap (fn [row] + (into [] (map #(apply function (cons world (cons % additional-args))) row)))