I have created pretty much every procedure needed for my Dijkstra algorithm to work but I am having some problems with the shortestpath procedure, I wrote it on paper but can't get it to work on scheme
(define (shortestpath origin destiny graph)
(define (update x)
(begin
(set! new-dist (+ (dist-between n x graph)
(dist-info-node (get-info-node i n))))
(when (< new-dist (dist-info-node (get-info-node i v)))
(update-previous-dist-node i v new-dist n))))
Above is the main procedure which is giving me an error on the 4th line
(define (get-info-node i n)
(define (get-info-node-aux i n cont)
(if (equal? n (vector-ref (no-info-no i) cont))
(vector-ref i cont)
(get-info-node-aux i n (+ cont 1))))
(get-info-node-aux i n 0))
(define (dist-info-node i)
(vector-ref i 1))
(define new-dist 0)
The error I'm getting is "expand: unbound identifier in module in: i" on the 4th line
(define (update-previous-dist-node! i n d a)
(define (update-previous-dist-node!-aux i n d a cont)
(if (equal? n (vector-ref (no-info-no i) cont))
(begin
(modify-dist! (vector-ref i cont) d)
(modify-previous! (vector-ref i cont) a))
(update-previous-dist-node!-aux i n d a (+ cont 1))))
(update-previous-dist-node!-aux i n d a 0))
All procedures are defined as they should but the main one is not working properly. This was wrote on paper first, I have tried everything and I must be missing something