We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Set module が M1 Mac で Segmentation fault します.
以下のプログラムを set2.lmn とする.
ret = set.to_list(set.copy(set.insert(set.insert(set.init, 1), 2), X)). ret = X
このとき,M1 Mac 上で, slim --use-builtin-rule set2.lmn を実行すると,
slim --use-builtin-rule set2.lmn
[1] 39254 segmentation fault /.../slim/bin/slim --use-builtin-rule set2.lmn
となる.
-t option をつけて実行すると,以下のようになる.
-t
slim --use-builtin-rule -t set2.lmn 1: ret(set.to_list(set.copy(set.insert(set.insert(set.init,1),2),ret))). @41. ---->_Rets 2: ret(set.to_list(set.copy(set.insert(set.insert(set_empty,1),2),ret))). @41. ---->_Rets 3: ret(set.to_list(set.copy(set.insert(<set>,2),ret))). @41. ---->_Rets 4: ret(set.to_list(set.copy(<set>,ret))). @41. ---->_Rets 5: ret(set.to_list(<set>)). ret(<set>). @41. [1] 39246 segmentation fault /.../slim/bin/slim --use-builtin-rule -t set2.lmn
M1 Mac 以外では,上記のプログラムは正常動作する様子である. 例えば,parmigiano では,以下のような正しい結果を得る.
ret([1,2]). ret(<set>). @41.
また,M1 Mac でも,以下のプログラムは正常動作する.
ret = set.to_list(set.copy(set.insert(set.init, 2), X)). ret = X
この結果は
ret([105553131559328]). ret(<set>). @41.
となる(正常).
The text was updated successfully, but these errors were encountered:
このために,M1 Mac 上では, ( slim_finalize をコメントアウトしても) make check に失敗します.
slim_finalize
Sorry, something went wrong.
No branches or pull requests
Set module が M1 Mac で Segmentation fault します.
Problem
以下のプログラムを set2.lmn とする.
このとき,M1 Mac 上で,
slim --use-builtin-rule set2.lmn
を実行すると,
となる.
-t
option をつけて実行すると,以下のようになる.正常に動作するパターン
M1 Mac 以外では,上記のプログラムは正常動作する様子である.
例えば,parmigiano では,以下のような正しい結果を得る.
また,M1 Mac でも,以下のプログラムは正常動作する.
この結果は
となる(正常).
The text was updated successfully, but these errors were encountered: