Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pharo-containers/AVL
AVL Tree from Roassal 3
https://github.com/pharo-containers/AVL
Last synced: 3 months ago
JSON representation
AVL Tree from Roassal 3
- Host: GitHub
- URL: https://github.com/pharo-containers/AVL
- Owner: pharo-containers
- License: mit
- Created: 2022-09-03T18:47:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-20T12:13:21.000Z (over 1 year ago)
- Last Synced: 2024-08-03T17:09:23.708Z (7 months ago)
- Language: Smalltalk
- Size: 50.8 KB
- Stars: 4
- Watchers: 7
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pharo - AVL Tree
README
# AVL
[![CI](https://github.com/pharo-containers/AVL/actions/workflows/runTests.yml/badge.svg)](https://github.com/pharo-containers/AVL/actions/workflows/runTests.yml)
AVL Tree migration from Roassal 3. A work in progress since it should be packaged to follow project conventions.
## How to install it
To install `AVL`, go to the Playground (Ctrl+OW) in your [Pharo](https://pharo.org/) image and execute the following Metacello script (select it and press Do-it button or Ctrl+D):
```st
Metacello new
baseline: 'AVLTree';
repository: 'github://pharo-containers/AVL:main';
load
```## How to depend on it
If you want to add a dependency on `linear-models` to your project, include the following lines into your baseline method:
```st
spec
baseline: 'AVL'
with: [ spec repository: 'github://pharo-containers/AVL' ].
```