Skip to content

Commit

Permalink
fix: incorrect import path.
Browse files Browse the repository at this point in the history
  • Loading branch information
Panadestein committed Feb 25, 2025
1 parent 59c5de2 commit c116f74
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/bqn/hf.bqn
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
SinCosATanErf•math
SetplotPlot•Import "../bqn-utils/plots.bqn"
SetplotPlot•Import "../../bqn-utils/plots.bqn"

E1e¯6<(13)‿((π÷4)÷×Erf√⊢)
P+˝×1
Expand Down
2 changes: 1 addition & 1 deletion src/bqn/nn.bqn
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SetplotPlot•Import "../bqn-utils/plots.bqn"
SetplotPlot•Import "../../bqn-utils/plots.bqn"
U0.5-˜•rand.Range0
M+˝×1
RMS√≠⊢÷˜·+´×˜-
Expand Down
2 changes: 1 addition & 1 deletion src/posts/hf.org
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ First, we import the required BQN system values and utility functions:

#+begin_src bqn :results none :tangle ../bqn/hf.bqn
Sin‿Cos‿ATan‿Erf ← •math
Setplot‿Plot ← •Import "../bqn-utils/plots.bqn"
Setplot‿Plot ← •Import "../../bqn-utils/plots.bqn"
#+end_src

Some auxiliary functions are needed for the computation of the Boys function, the matrix and vector product,
Expand Down
2 changes: 1 addition & 1 deletion src/posts/nn.org
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ no dependencies[fn:2]. As usual, we will set the stage by importing and defining
namely plotting, random number generation, matrix product, and root mean square error:

#+begin_src bqn :tangle ../bqn/nn.bqn
Setplot‿Plot ← •Import "../bqn-utils/plots.bqn"
Setplot‿Plot ← •Import "../../bqn-utils/plots.bqn"
U ← 0.5-˜•rand.Range⟜0
M ← +˝∘×⎉1‿∞
RMS ← √≠∘⊢÷˜·+´×˜∘-
Expand Down

0 comments on commit c116f74

Please sign in to comment.