package rocq-runtime
The Rocq Prover -- Core Binaries and Tools
Install
Dune Dependency
Authors
Maintainers
Sources
rocq-9.0.0.tar.gz
md5=8d522602d23e7a665631826dab9aa92b
sha512=f4f76a6a178e421c99ee7a331a2fd97a06e9c5d0168d7e60c44e3820d8e1a124370ea104ad90c7f87a9a1e9d87b2d0d7d2d387c998feeaed4a75ed04e176a4be
doc/src/rocq-runtime.kernel/nativelambda.ml.html
Source file nativelambda.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
(************************************************************************) (* * The Rocq Prover / The Rocq Development Team *) (* v * Copyright INRIA, CNRS and contributors *) (* <O___,, * (see version control and CREDITS file for authors & dates) *) (* \VV/ **************************************************************) (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) (* * (see LICENSE file for the text of the license) *) (************************************************************************) open Util open Genlambda (** This file defines the lambda code generation phase of the native compiler *) type lambda = Nativevalues.t Genlambda.lambda (*s Constructors *) (** Simplification of lambda expression *) let is_value lc = match lc with | Lval _ | Lint _ | Luint _ | Lfloat _ | Lstring _ -> true | _ -> false let get_value lc = match lc with | Lval v -> v | Lint tag -> Nativevalues.mk_int tag | Luint i -> Nativevalues.mk_uint i | Lfloat f -> Nativevalues.mk_float f | Lstring s -> Nativevalues.mk_string s | _ -> raise Not_found let as_value tag args = if Array.for_all is_value args then let dummy_val = Obj.magic 0 in let args = (* Don't simplify this to Array.map, cf. the related comment in function eval_to_patch, file kernel/csymtable.ml *) let a = Array.make (Array.length args) dummy_val in Array.iteri (fun i v -> a.(i) <- get_value v) args; a in Some (Nativevalues.mk_block tag args) else None module Val = struct type value = Nativevalues.t let as_value = as_value let check_inductive _ _ = () end module Lambda = Genlambda.Make(Val) let lambda_of_constr env sigma c = let lam = Lambda.lambda_of_constr env sigma c in optimize lam
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>