[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] branch main updated: Fix intset-fold-right on transient
From: |
Andy Wingo |
Subject: |
[Guile-commits] branch main updated: Fix intset-fold-right on transient intsets |
Date: |
Thu, 15 Aug 2024 06:19:17 -0400 |
This is an automated email from the git hooks/post-receive script.
wingo pushed a commit to branch main
in repository guile.
The following commit(s) were added to refs/heads/main by this push:
new d0790d766 Fix intset-fold-right on transient intsets
d0790d766 is described below
commit d0790d766bedf08fb65231eff53f6c8044eb94f1
Author: Andy Wingo <wingo@pobox.com>
AuthorDate: Thu Aug 15 12:18:02 2024 +0200
Fix intset-fold-right on transient intsets
* module/language/cps/intset.scm (make-intset-folder): intset-fold-right
on a transient intset would dispatch to left fold after making the
persistent set. Sadness!
---
module/language/cps/intset.scm | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/module/language/cps/intset.scm b/module/language/cps/intset.scm
index 54def5cb5..0fe90fe9f 100644
--- a/module/language/cps/intset.scm
+++ b/module/language/cps/intset.scm
@@ -1,5 +1,5 @@
;;; Functional name maps
-;;; Copyright (C) 2014, 2015, 2017 Free Software Foundation, Inc.
+;;; Copyright (C) 2014, 2015, 2017, 2024 Free Software Foundation, Inc.
;;;
;;; This library is free software: you can redistribute it and/or modify
;;; it under the terms of the GNU Lesser General Public License as
@@ -454,13 +454,14 @@
(lp (if forward? (1+ i) (1- i)) seed ...)))
(lp (if forward? (1+ i) (1- i)) seed ...)))
(values seed ...)))))))
- (match set
- (($ <intset> min shift root)
- (cond
- ((not root) (values seed ...))
- (else (visit-branch root shift min seed ...))))
- (($ <transient-intset>)
- (intset-fold f (persistent-intset set) seed ...)))))
+ (let fold ((set set))
+ (match set
+ (($ <intset> min shift root)
+ (cond
+ ((not root) (values seed ...))
+ (else (visit-branch root shift min seed ...))))
+ (($ <transient-intset>)
+ (fold (persistent-intset set)))))))
(define intset-fold
(case-lambda
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Guile-commits] branch main updated: Fix intset-fold-right on transient intsets,
Andy Wingo <=