init commit; data shapes mostly defined. some tests and sketched documentation in README. core algorithm TODO next

This commit is contained in:
Thomas (Tom) C. Gorordo 2025-04-18 01:52:37 -07:00
commit c571fa1d17
Signed by: tgorordo
GPG key ID: 0CBED22BB0D94490
8 changed files with 434 additions and 0 deletions

16
shell.nix Normal file
View file

@ -0,0 +1,16 @@
#let
# nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.11";
# pkgs = import nixpkgs { config = {}; overlays = []; };
#in
{ pkgs ? import <nixpkgs> {}}:
#pkgs.mkShellNoCC {
# packages = with pkgs; [
# uv
# ];
# }
pkgs.mkShellNoCC {
packages = with pkgs; [ uv ];
}