This PR cuts some edges from the import graph. Specifically: - `TreeMap` and `HashMap` no longer depend on `String`, so now the expensive things are all in parallel instead of partially in sequence - `Omega` no longer relies on `List` lemmas - The section of the import graph between `Init.Omega` and `Init.Data.Bitvec.Lemmas` is cleaned up a bit
15 lines
406 B
Text
15 lines
406 B
Text
/-
|
|
Copyright (c) 2025 Lean FRO, LLC. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
Authors: Kim Morrison
|
|
-/
|
|
module
|
|
|
|
prelude
|
|
public import Init.Data.Ord.Basic
|
|
public import Init.Data.Ord.BitVec
|
|
public import Init.Data.Ord.SInt
|
|
public import Init.Data.Ord.String
|
|
public import Init.Data.Ord.UInt
|
|
public import Init.Data.Ord.Vector
|
|
public import Init.Data.Ord.Array
|