From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1glbZB-0004a6-7r for mharc-gwl-devel@gnu.org; Mon, 21 Jan 2019 10:32:49 -0500 Received: from eggs.gnu.org ([209.51.188.92]:46975) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1glbZ9-0004Zr-EM for gwl-devel@gnu.org; Mon, 21 Jan 2019 10:32:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1glbZ8-00037s-FZ for gwl-devel@gnu.org; Mon, 21 Jan 2019 10:32:47 -0500 Received: from sender-of-o53.zoho.com ([135.84.80.218]:21717) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1glbZ5-000337-OV for gwl-devel@gnu.org; Mon, 21 Jan 2019 10:32:45 -0500 References: <87bm4df2ld.fsf@elephly.net> <878szgg9bi.fsf@elephly.net> From: Ricardo Wurmus In-reply-to: <878szgg9bi.fsf@elephly.net> Date: Mon, 21 Jan 2019 16:32:31 +0100 Message-ID: <878szedo1c.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: =?UTF-8?B?UmU6IG1lcmdpbmcg4oCccHJvY2Vzc2Vz4oCdIGFuZCDigJxyZXN0?= =?UTF-8?B?cmljdGlvbnPigJ0=?= List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: zimoun Cc: gwl-devel@gnu.org Ricardo Wurmus writes: > We need a procedure that takes any number of processes as inputs and > matches inputs with outputs to generate an adjacency list of processes. > This shouldn=E2=80=99t be difficult. This procedure is called =E2=80=9Cconnect=E2=80=9D and it is now available.= With connect and well-specified inputs and outputs one can now do this: (workflow (name "pipeline") (processes (connect compress-files create-files move-archives))) All of these processes declare inputs and outputs and the correct adjacency list is produced by =E2=80=9Cconnect=E2=80=9D by matching them up. --=20 Ricardo