我继续Num
对 Ocaml 库的探索,原因是整个逻辑库都是使用它编写的。
今天,我想做一个有理数的负数。获得-1/2
, 从1/2
.
为此,我认为,给定 ana
类型Ratio.ratio
,我可以通过以下方式计算它的负数(并返回 a ratio
,而不是 a num
):
ratio_of_num (minus_num (num_of_ratio a))
(函数来自:https ://ocaml.org/releases/4.05/htmlman/libref/Num.html#TYPEnum )
现在,我想检查结果,但我总是得到这个解决方案:Ratio.ratio = <abstr>
关键是,现在我意识到当我使用ratio_of_num
. 例如:
ratio_of_num (Int 2);;
- : Ratio.ratio = <abstr>
我搜索了一下,发现这个问题(OCaml 顶级输出格式)使用了不同的函数(ratio_of_int 2
),但似乎不再可能。也许那ratio
是一个不同的图书馆。
有什么帮助吗?
PS:顺便说一句,为了num
以后更换,我正在尝试安装Zarith
,opam
但不能。
我的问题是我这样做opam install zarith
了,这显示:
┌─ The following actions failed
│ λ build conf-gmp 3
└─
╶─ No changes have been performed
The packages you requested declare the following system dependencies. Please
make sure they are installed before retrying:
gmp
所以我这样做了opam install gmp
,我得到:
┌─ The following actions failed
│ λ build gmp 6.2.1
└─
╶─ No changes have been performed
这让我不知道如何继续尝试。对此也有任何帮助吗?
无论是第一个问题还是第二个问题,我都将不胜感激!
在下面,由于以下对话,我发布了一些已添加到问题中的版本:
编辑(解决添加所需的#require)
我已经完成了@ivg 的建议,但仍然无法正常工作(我做了初始的open Num
,因为它会另外询问):
─( 23:12:59 )─< command 0 >──────────────────────────────────────{ counter: 0 }─
utop # open Num;;
─( 23:13:00 )─< command 1 >──────────────────────────────────────{ counter: 0 }─
utop # let pp_num ppf x = Format.fprintf ppf "%s" (Num.string_of_num x);;
val pp_num : Format.formatter -> num -> unit = <fun>
─( 23:14:11 )─< command 2 >──────────────────────────────────────{ counter: 0 }─
utop # #install_printer pp_num;;
─( 23:14:16 )─< command 3 >──────────────────────────────────────{ counter: 0 }─
utop # ratio_of_num (Int 2);;
- : Ratio.ratio = <abstr>
编辑2(还需要#require)
我也尝试过 Ocaml 而不是 utop,但错误更严重:
OCaml version 4.10.2
Findlib has been successfully loaded. Additional directives:
#require "package";; to load a package
#list;; to list the available packages
#camlp4o;; to load camlp4 (standard syntax)
#camlp4r;; to load camlp4 (revised syntax)
#predicates "p,q,...";; to set these predicates
Topfind.reset();; to force that packages will be reloaded
#thread;; to enable threads
# open Num;;
# let pp_num ppf x = Format.fprintf ppf "%s" (Num.string_of_num x);;
Error: Reference to undefined global `Num'
#
编辑 3(在 Ocaml 中工作,而不是 utop)
##require "num";;
# let pp_num ppf x = Format.fprintf ppf "%s" (Num.string_of_num x);;
val pp_num : Format.formatter -> Num.num -> unit = <fun>
# #install_printer pp_num;;
# ratio_of_num (Int 2);;
- : Ratio.ratio = <ratio 2/1>
#
编辑 4(在 utop 中工作,请注意,当它是整数时,打印会简化结果)
utop # let pp_ratio ppf r = Format.fprintf ppf "%a" pp_num (num_of_ratio r);;
val pp_ratio : Format.formatter -> Ratio.ratio -> unit = <fun>
─( 23:28:07 )─< command 6 >──────────────────────────────────────{ counter: 0 }─
utop # #install_printer pp_ratio;;
─( 23:28:22 )─< command 7 >──────────────────────────────────────{ counter: 0 }─
utop # ratio_of_num (Int 2);;
- : Ratio.ratio = 2
─( 23:28:29 )─< command 8 >──────────────────────────────────────{ counter: 0 }─
utop #