Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(common-utils): Change classify_integer_position return type … #7

Open
wants to merge 1 commit into
base: experiments
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions experiments/utils/common-utils.metta
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,18 @@
(: classify_integer_position (-> Number String))
(= (classify_integer_position $x)
(if (> $x 0)
("Greater than zero")
1 ; Return 1 if x is greater than zero
(case (equals-to-zero $x)
(
(False "Less than zero")
(True "Equal to zero")))))
(False -1) ; Return -1 if x is less than zero
(True 0))))) ; Return 0 if x is equal to zero
;; pow is a function that calculates a to the power of b where a and b are numbers
(: pow (-> Number Number Number))
(= (pow $a $b)
(case (classify_integer_position $b)
(
("Equal to zero" 1)
("Less than zero" (/ 1 (pow $a (abs $b))))
(0 1)
(-1 (/ 1 (pow $a (abs $b))))
($_ (* $a (pow $a (- $b 1))))
)
)
Expand All @@ -110,4 +110,14 @@
True
False
)
)
)

; Define a function to create a map (dictionary) from key-value pairs
(= (create-map $a $b ) (py-dict (($a $b))))

;; Define a function to get a value from the map (dictionary) given a key
(=(get-value $y $dict)
((py-dot $dict get) $y)
)
!(create-map 7 8)
!(get-value 7 (create-map 7 8))
9 changes: 9 additions & 0 deletions experiments/utils/test-utils.metta
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,14 @@
!(pow 5 3)
! (pow 100000 -7)
! (pow 5 3)
!(classify_integer_position -10)
!(classify_integer_position 10)
!(classify_integer_position 0)
!(pow 1 0)
! (+ (abs -5) 10) ; 15

;; Example usage of create-map and get-value
!(create-map 7 8)
!(get-value 7 (create-map 7 8))