From f4d7197f476374b5e50077860fdea1df4e1f3051 Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Tue, 18 Feb 2020 12:36:44 +0100 Subject: [PATCH] bn: Better structure provide. --- bn.rkt | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/bn.rkt b/bn.rkt index 560a2da..c5f73b8 100644 --- a/bn.rkt +++ b/bn.rkt @@ -9,10 +9,14 @@ (require "utils.rkt") -(provide Variable State UpdateFunc Network - update make-state make-bn-funcs update-func-form->update-func - bn-form->bn make-bn-forms - bn) +(provide + ;; Types + Variable State UpdateFunc Network + ;; Functions + update make-state make-bn-funcs update-func-form->update-func + bn-form->bn make-bn-forms + ;; Syntax + bn) ;;; =================