dft working

This commit is contained in:
2026-02-03 12:22:08 +01:00
parent ec2289e4b8
commit f66f627c2e
4 changed files with 164 additions and 49 deletions

View File

@@ -3,7 +3,7 @@ default: test_langs
test_langs:
# Test all languages and tools in this project
uv run python ./main.py
julia ./src/main.jl
julia --project=. ./src/main.jl
bun run ./index.ts
go run ./src/main.go
bash ./src/bscript.sh
@@ -13,7 +13,17 @@ test_langs:
nix flake metadata
neville:
julia -i ./src/neville-algo-ml.jl
julia --project=. -i ./src/neville-algo-ml.jl
doc:
typst compile ./src/ocs.typ
j:
@echo $(pwd)
julia --project=. -i ./src/dft.jl
# Setup python environment with uv
setup:
uv sync
# Instantiate julia
julia --project=. -e 'using Pkg; Pkg.instantiate()'