moved splay-trees to trees.splay

release
Alex Chapman 2007-09-30 16:38:37 +10:00
parent 342399df29
commit 2cac88bde8
8 changed files with 9 additions and 4 deletions

View File

@ -1,6 +1,6 @@
! Copyright (c) 2005 Mackenzie Straight.
! See http://factorcode.org/license.txt for BSD license.
USING: kernel tools.test splay-trees namespaces assocs
USING: kernel tools.test trees.splay math namespaces assocs
sequences random ;
IN: temporary

View File

@ -1,7 +1,7 @@
! Copyright (c) 2005 Mackenzie Straight.
! See http://factorcode.org/license.txt for BSD license.
USING: kernel math combinators assocs parser ;
IN: splay-trees
IN: trees.splay
TUPLE: splay-tree r count ;
INSTANCE: splay-tree assoc

View File

@ -1 +1,2 @@
collections
trees

View File

@ -1 +1,2 @@
collections trees
collections
trees

2
extra/trees/todo.txt Normal file
View File

@ -0,0 +1,2 @@
- Make trees.splay use the same tree protocol as trees.binary and trees.avl
- Make all trees follow the assoc protocol

View File

@ -1,6 +1,7 @@
! Copyright (C) 2007 Alex Chapman
! See http://factorcode.org/license.txt for BSD license.
USING: kernel generic math math.parser sequences arrays io namespaces namespaces.private random layouts ;
USING: kernel generic math math.parser sequences arrays io namespaces
namespaces.private random layouts ;
IN: trees
TUPLE: tree root ;