Skip to content
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
6 changes: 6 additions & 0 deletions ismm/FStar.Mul.fst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module FStar.Mul

// Compatibility shim: FStar.Mul was removed in F* nightly-2026-04-29.
// The multiplication operator is now op_Star rather than op_Multiply.

let op_Multiply (x y: int) : int = x * y
1 change: 1 addition & 0 deletions ismm/ISMM.UF.SizeRank.fst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
module ISMM.UF.SizeRank

open FStar.Seq
open FStar.Mul
module Seq = FStar.Seq
open ISMM.UnionFind.Spec

Expand Down
1 change: 1 addition & 0 deletions ismm/ISMM.UnionFind.Spec.fst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
module ISMM.UnionFind.Spec

open FStar.Seq
open FStar.Mul
module Seq = FStar.Seq
open ISMM.Status

Expand Down