path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
src/Viteloge/CoreBundle/Resources/descriptions/88239.html | donaldinou/frontend | <div class="commune_descr limited">
<p>
Hergugney est
un village
localisé dans le département des Vosges en Lorraine. Elle totalisait 138 habitants en 2008.</p>
<p>À proximité de Hergugney sont situées les villes de
<a href="{{VLROOT}}/immobilier/vomecourt-sur-madon_88522/">Vomécourt-sur-Madon</a> située à 3 km, 70 habitants,
<a href="{{VLROOT}}/immobilier/bralleville_54094/">Bralleville</a> à 2 km, 164 habitants,
<a href="{{VLROOT}}/immobilier/battexey_88038/">Battexey</a> à 1 km, 29 habitants,
<a href="{{VLROOT}}/immobilier/jevoncourt_54278/">Jevoncourt</a> située à 3 km, 66 habitants,
<a href="{{VLROOT}}/immobilier/germonville_54224/">Germonville</a> à 2 km, 83 habitants,
<a href="{{VLROOT}}/immobilier/marainville-sur-madon_88286/">Marainville-sur-Madon</a> située à 2 km, 87 habitants,
entre autres. De plus, Hergugney est située à seulement 29 km de <a href="{{VLROOT}}/immobilier/epinal_88160/">Épinal</a>.</p>
<p>Si vous envisagez de emmenager à Hergugney, vous pourrez aisément trouver une maison à acheter. </p>
<p>Le nombre de logements, à Hergugney, se décomposait en 2011 en zero appartements et 62 maisons soit
un marché relativement équilibré.</p>
</div>
|
index.html | Azuresongcts/Canvas-api-test | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>TypeScript HTML App</title>
<link rel="stylesheet" href="app.css" type="text/css" />
<script src="/out/main.js"></script>
<script src="/out/GUI.js"></script>
<script src="/out/math.js"></script>
</head>
<body>
<canvas width="400" height="400" id="app"></canvas>
<div id="content"></div>
</body>
</html>
|
src/Viteloge/CoreBundle/Resources/descriptions/70051.html | donaldinou/frontend | <div class="commune_descr limited">
<p>
La Basse-Vaivre est
un village
situé dans le département de Haute-Saône en Franche-Comté. Elle comptait 44 habitants en 2008.</p>
<p>Le parc de logements, à La Basse-Vaivre, était réparti en 2011 en un appartements et 38 maisons soit
un marché plutôt équilibré.</p>
<p>À proximité de La Basse-Vaivre sont positionnées géographiquement les villes de
<a href="{{VLROOT}}/immobilier/vauvillers_70526/">Vauvillers</a> à 4 km, 697 habitants,
<a href="{{VLROOT}}/immobilier/alaincourt_70010/">Alaincourt</a> à 3 km, 96 habitants,
<a href="{{VLROOT}}/immobilier/selles_70485/">Selles</a> à 2 km, 246 habitants,
<a href="{{VLROOT}}/immobilier/demangevelle_70202/">Demangevelle</a> située à 2 km, 337 habitants,
<a href="{{VLROOT}}/immobilier/pont-du-bois_70419/">Pont-du-Bois</a> à 5 km, 121 habitants,
<a href="{{VLROOT}}/immobilier/passavant-la-rochere_70404/">Passavant-la-Rochère</a> localisée à 2 km, 725 habitants,
entre autres. De plus, La Basse-Vaivre est située à seulement 27 km de <a href="{{VLROOT}}/immobilier/luxeuil-les-bains_70311/">Luxeuil-les-Bains</a>.</p>
<p>Si vous envisagez de venir habiter à La Basse-Vaivre, vous pourrez aisément trouver une maison à vendre. </p>
</div>
|
src/params/index.html | zyy7259/regular-strap | <div class="m-param {clazz}">
<h4 class="param-caption m-b-1 text-xs-center {captionClazz}"
r-hide={!caption} r-html={caption}></h4>
<!-- 如果参数不多, 那么一排放; 否则每个参数一排 -->
<form class="form" r-class={{'form-inline':!stack}} on-submit={this.submit($event)}>
{#list parsedList as param}
{#if !param.ignore}
<fieldset class="form-group" r-class={{'row':stack, 'has-danger':param.invalid}}>
<label
{#if stack}
class="form-control-label {labelPosClazz} {labelColClazz}"
{#else}
class="form-control-label {param.labelClazz}"
{/if}
for={this.genParamId(param)}
title={param.title || param.desc}
r-hide={hideLabel || param.hideLabel || !param.desc}>
{#if !hideMandatory}{#include this.mandatoryTpl}{/if}
{param.desc}
{#if !hideColon && !param.hideColon}:{/if}
</label>
<div {#if stack}class="{iptColClazz}"{#else}class="form-group"{/if}>
{#if param.type === 'Static'}
<p class="form-control-static">
{#if !param.hideValue}{params[param.name]}{/if}
{#include this.suffixTpl}
</p>
{#elseif this.paramFitInput(param)}
{#if param.descHead}
<span class="input-desc-head">{param.descHead}</span>
{/if}
<input type={this.genInputType(param)}
class="form-control {param.iptClazz}"
id={this.genParamId(param)}
r-model2={'params.' + param.name}
ref='{param.name}'
placeholder={this.genParamTip(param)}
maxlength={param.maxlength}
on-input={this.getParams(param)}
{#if param.disabled}disabled{/if}>
{#if param.descTail}
<span class="input-desc-tail">{param.descTail}</span>
{/if}
{#elseif param.type === 'Checkbox'}
<label class="custom-control custom-checkbox">
<input type="checkbox"
class="custom-control-input"
id={this.genParamId(param)}
r-model2={'params.' + param.name}
ref='{param.name}'
placeholder={this.genParamTip(param)}
on-change={this.getParams(param)}
{#if param.disabled}disabled{/if}>
<span class="custom-control-indicator"></span>
<span class="custom-control-description">{param.descTail}</span>
</label>
{#elseif this.paramFitDateInput(param)}
<input type={this.genDateInputType(param)}
class="form-control {param.iptClazz}"
id={this.genParamId(param)}
r-model2={'params.' + param.name}
ref='{param.name}'
on-change={this.getParams(param)}>
{#elseif param.type === 'Select'}
<select
class="form-control custom-select {param.iptClazz}"
id={this.genParamId(param)}
r-model2={'params.' + param.name}
ref='{param.name}'
{#if param.disabled}disabled{/if}
on-change={this.getParams(param)}>
{#list param.list as option}
<option value={option.value}>{option.desc}</option>
{/list}
</select>
{#elseif param.type === 'Textarea'}
<textarea class='form-control {param.iptClazz}'
id={this.genParamId(param)}
maxlength={param.maxlength}
r-model2={'params.' + param.name}
ref='{param.name}'
on-change={this.getParams(param)}>
</textarea>
{#elseif param.type === 'Checkboxes'}
<checkboxes param={param} ref='{param.name}' on-change={this.getParams(param)}/>
{#elseif param.type === 'Radios'}
<radios param={param} ref='{param.name}' on-change={this.getParams(param)}/>
{/if}
<!-- subtitle -->
{#if (showSubtitle || param.showSubtitle) && param.subtitle}
<div class="text-help" r-class={{'form-group':stack}}>
<small>{param.subtitle}</small>
</div>
{/if}
<!-- 提示 -->
{#if param.invalid && !hideTip}
<div class="text-help" r-class={{'form-group':stack}}>
<small>{this.genParamTip(param)}</small>
</div>
{/if}
</div>
</fieldset>
{/if}
{/list}
{#if showSubmit}
<fieldset class="form-group" r-class={{'row':stack}}>
<div {#if stack}class="{submitClazz}"{#else}class="form-group"{/if}>
<button type="submit" class="btn {submitBtnClazz}">{submitTitle}</button>{#if loading}<loading/>{/if}
</div>
</fieldset>
{/if}
</form>
<p class="param-footer m-t-1 text-muted text-xs-center {footerClazz}" r-hide={!footer}>{footer}</p>
</div>
|
clean/Linux-x86_64-4.06.1-2.0.5/extra-dev/8.11.dev/hammer-tactics/1.2.1+8.10.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>hammer-tactics: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">8.11.dev / hammer-tactics - 1.2.1+8.10</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
hammer-tactics
<small>
1.2.1+8.10
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2020-07-18 17:11:19 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-18 17:11:19 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.11.dev Formal proof management system
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/lukaszcz/coqhammer"
dev-repo: "git+https://github.com/lukaszcz/coqhammer.git"
bug-reports: "https://github.com/lukaszcz/coqhammer/issues"
license: "LGPL-2.1-only"
synopsis: "Reconstruction tactics for the hammer for Coq"
description: """
Collection of tactics that are used by the hammer for Coq
to reconstruct proofs found by automated theorem provers. When the hammer
has been successfully applied to a project, only this package needs
to be installed; the hammer plugin is not required.
"""
build: [make "-j%{jobs}%" {ocaml:version >= "4.06.1"} "tactics"]
install: [
[make "install-tactics"]
[make "test-tactics"] {with-test}
]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
conflicts: [
"coq-hammer" {!= version}
]
tags: [
"keyword:automation"
"keyword:hammer"
"keyword:tactics"
"logpath:Hammer.Tactics"
"date:2020-06-05"
]
authors: [
"Lukasz Czajka <lukaszcz@mimuw.edu.pl>"
]
url {
src: "https://github.com/lukaszcz/coqhammer/archive/v1.2.1-coq8.10.tar.gz"
checksum: "sha512=22081122b39ee1099e79ef82f1afc1895350475fd255cdc51d3a47851184decd0bff7975b9effcd39ca9b55bb381e06cf649ad2d460dd31eec537eca44f2a6e1"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-hammer-tactics.1.2.1+8.10 coq.8.11.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.dev).
The following dependencies couldn't be met:
- coq-hammer-tactics -> coq < 8.11~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-hammer-tactics.1.2.1+8.10</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
manpages/man8/lsblk.8.html | yuweijun/yuweijun.github.io | <!DOCTYPE html>
<HTML><head><TITLE>Manpage of LSBLK</TITLE>
<meta charset="utf-8">
<link rel="stylesheet" href="/css/main.css" type="text/css">
</head>
<body>
<header class="site-header">
<div class="wrap"> <div class="site-title"><a href="/manpages/index.html">linux manpages</a></div>
<div class="site-description">{"type":"documentation"}</div>
</div>
</header>
<div class="page-content"><div class="wrap">
<H1>LSBLK</H1>
Section: Maintenance Commands (8)<BR>Updated: Apr 2010<BR><A HREF="#index">Index</A>
<A HREF="/manpages/index.html">Return to Main Contents</A><HR>
<A NAME="lbAB"> </A>
<H2>NAME</H2>
lsblk - list block devices
<A NAME="lbAC"> </A>
<H2>SYNOPSIS</H2>
<B>lsblk</B>
[<B>options</B>]
<P>
<B>lsblk</B>
[<B>options</B>]
<I>device...</I>
<A NAME="lbAD"> </A>
<H2>DESCRIPTION</H2>
<B>lsblk</B>
will list information about all or selected block devices. The
<B>lsblk</B>
command reads
<I>sysfs</I>
filesystem to gather information.
<P>
The command prints all block devices (except RAM disks) in the tree-like format
by default. See
<B>lsblk --help</B>
to get list of all available columns.
<A NAME="lbAE"> </A>
<H2>OPTIONS</H2>
<DL COMPACT>
<DT><B>-a, --all</B><DD>
List all block devices.
<DT><B>-b, --bytes</B><DD>
Print the SIZE column in bytes rather than in human readable format.
<DT><B>-d, --nodeps</B><DD>
Don't print device holders or slaves. For example "lsblk --nodeps /dev/sda" prints
information about the sda device only.
<DT><B>-e, --exclude </B><I>list</I><DD>
Exclude devices by comma delimited list of major device numbers. Note that RAM
disks (major=1) are excluded by default.
<DT><B>-f, --fs</B><DD>
Output info about filesystems. This option is equivalent to -o NAME,FSTYPE,LABEL,MOUNTPOINT.
The authoritative information about filesystems and raids are provided by
<B><A HREF="/manpages/index.html?8+blkid">blkid</A></B>(8)
command.
<DT><B>-h, --help</B><DD>
Print help and exit.
<DT><B>-i, --ascii</B><DD>
Use ascii characters for tree formatting.
<DT><B>-m, --perms</B><DD>
Output info about device owner, group and mode. This option is equivalent to -o NAME,SIZE,OWNER,GROUP,MODE.
<DT><B>-l, --list</B><DD>
Use the list output format.
<DT><B>-n, --noheadings</B><DD>
Do not print a header line.
<DT><B>-o, --output </B><I>list</I><DD>
Define output columns. Use
<B>--help</B>
to get list of all supported columns.
<DT><B>-r, --raw</B><DD>
Use raw output format.
<DT><B>-t, --topology</B><DD>
Output info about block device topology. This option is equivalent to -o NAME,ALIGNMENT,MIN-IO,OPT-IO,PHY-SEC,LOG-SEC,ROTA,SCHED.
</DL>
<A NAME="lbAF"> </A>
<H2>AUTHORS</H2>
<PRE>
Milan Broz <<A HREF="mailto:mbroz@redhat.com">mbroz@redhat.com</A>>
Karel Zak <<A HREF="mailto:kzak@redhat.com">kzak@redhat.com</A>>
</PRE>
<A NAME="lbAG"> </A>
<H2>SEE ALSO</H2>
<B><A HREF="/manpages/index.html?8+findmnt">findmnt</A></B>(8),
<B><A HREF="/manpages/index.html?8+blkid">blkid</A></B>(8),
<B><A HREF="/manpages/index.html?1+ls">ls</A></B>(1)
<A NAME="lbAH"> </A>
<H2>AVAILABILITY</H2>
The lsblk command is part of the util-linux package and is available from
<A HREF="ftp://ftp.kernel.org/pub/linux/utils/util-linux/.">ftp://ftp.kernel.org/pub/linux/utils/util-linux/.</A>
<P>
<HR>
<A NAME="index"> </A><H2>Index</H2>
<DL>
<DT><A HREF="#lbAB">NAME</A><DD>
<DT><A HREF="#lbAC">SYNOPSIS</A><DD>
<DT><A HREF="#lbAD">DESCRIPTION</A><DD>
<DT><A HREF="#lbAE">OPTIONS</A><DD>
<DT><A HREF="#lbAF">AUTHORS</A><DD>
<DT><A HREF="#lbAG">SEE ALSO</A><DD>
<DT><A HREF="#lbAH">AVAILABILITY</A><DD>
</DL>
<HR>
This document was created by
<A HREF="/manpages/index.html">man2html</A>,
using the manual pages.<BR>
Time: 05:34:27 GMT, December 24, 2015
</div></div>
</body>
</HTML>
|
clean/Linux-x86_64-4.02.3-2.0.6/released/8.4.6~camlp4/metacoq-translations/1.0~beta2+8.12.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>metacoq-translations: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.4.6~camlp4 / metacoq-translations - 1.0~beta2+8.12</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
metacoq-translations
<small>
1.0~beta2+8.12
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-26 10:22:40 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-26 10:22:40 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-ocamlbuild base OCamlbuild binary and libraries distributed with the OCaml compiler
base-threads base
base-unix base
camlp4 4.02+7 Camlp4 is a system for writing extensible parsers for programming languages
conf-findutils 1 Virtual package relying on findutils
conf-which 1 Virtual package relying on which
coq 8.4.6~camlp4 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.02.3 The OCaml compiler (virtual package)
ocaml-base-compiler 4.02.3 Official 4.02.3 release
ocaml-config 1 OCaml Switch Configuration
ocamlbuild 0 Build system distributed with the OCaml compiler since OCaml 3.10.0
# opam file:
opam-version: "2.0"
maintainer: "matthieu.sozeau@inria.fr"
homepage: "https://metacoq.github.io/metacoq"
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.11"
bug-reports: "https://github.com/MetaCoq/metacoq/issues"
authors: ["Simon Boulier <simon.boulier@inria.fr>"
"Cyril Cohen <cyril.cohen@inria.fr>"
"Matthieu Sozeau <matthieu.sozeau@inria.fr>"
"Nicolas Tabareau <nicolas.tabareau@inria.fr>"
"Théo Winterhalter <theo.winterhalter@inria.fr>"
]
license: "MIT"
build: [
["sh" "./configure.sh"]
[make "-j" "%{jobs}%" "-C" "translations"]
]
install: [
[make "-C" "translations" "install"]
]
depends: [
"ocaml" {>= "4.07.1" & < "4.12~"}
"coq" { >= "8.12~" & < "8.13~" }
"coq-metacoq-template" {= version}
]
synopsis: "Translations built on top of MetaCoq"
description: """
MetaCoq is a meta-programming framework for Coq.
The Translations modules provides implementation of standard translations
from type theory to type theory, e.g. parametricity and the `cross-bool`
translation that invalidates functional extensionality.
"""
url {
src: "https://github.com/MetaCoq/metacoq/archive/v1.0-beta2-8.12.tar.gz"
checksum: "sha256=108582a6f11ed511a5a94f2b302359f8d648168cba893169009def7c19e08778"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-metacoq-translations.1.0~beta2+8.12 coq.8.4.6~camlp4</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.4.6~camlp4).
The following dependencies couldn't be met:
- coq-metacoq-translations -> ocaml >= 4.07.1
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-metacoq-translations.1.0~beta2+8.12</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
doc/html/d6/de4/gnu-make_8md_source.html | michto01/ardp | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>ARDP: /Developer/school/ardp/doc/gnu-make.md Source File</title>
<link href="../../tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="../../jquery.js"></script>
<script type="text/javascript" src="../../dynsections.js"></script>
<link href="../../search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="../../search/searchdata.js"></script>
<script type="text/javascript" src="../../search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="../../doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">ARDP
 <span id="projectnumber">2.2.1</span>
</div>
<div id="projectbrief">Another RDF Document Parser</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "../../search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="../../index.html"><span>Main Page</span></a></li>
<li><a href="../../pages.html"><span>Related Pages</span></a></li>
<li><a href="../../annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="../../files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="../../search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="../../search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="../../files.html"><span>File List</span></a></li>
<li><a href="../../globals.html"><span>Globals</span></a></li>
</ul>
</div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">/Developer/school/ardp/doc/gnu-make.md</div> </div>
</div><!--header-->
<div class="contents">
<a href="../../d6/de4/gnu-make_8md.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> # GNU Make toolchain</div>
<div class="line"><a name="l00002"></a><span class="lineno"> 2</span> </div>
<div class="line"><a name="l00003"></a><span class="lineno"> 3</span> Most of the open-source project use the build tools to help people to access</div>
<div class="line"><a name="l00004"></a><span class="lineno"> 4</span> the program easier and to unify the building process.</div>
<div class="line"><a name="l00005"></a><span class="lineno"> 5</span> </div>
<div class="line"><a name="l00006"></a><span class="lineno"> 6</span> One of such tools is the GNU Autotools toolchain. It consists of several programs</div>
<div class="line"><a name="l00007"></a><span class="lineno"> 7</span> such as `autoconf`, `aclocal` and `make`.</div>
<div class="line"><a name="l00008"></a><span class="lineno"> 8</span> </div>
<div class="line"><a name="l00009"></a><span class="lineno"> 9</span> This toolchain helps to automate creation of Makefiles which then compile programs</div>
<div class="line"><a name="l00010"></a><span class="lineno"> 10</span> and it`s dependencies. </div>
<div class="line"><a name="l00011"></a><span class="lineno"> 11</span> </div>
<div class="line"><a name="l00012"></a><span class="lineno"> 12</span> The normal working process for building process is then simplified for the user.</div>
<div class="line"><a name="l00013"></a><span class="lineno"> 13</span> It usually consist of four steps:</div>
<div class="line"><a name="l00014"></a><span class="lineno"> 14</span> ```</div>
<div class="line"><a name="l00015"></a><span class="lineno"> 15</span>  ./configure [-optional-paramaters]</div>
<div class="line"><a name="l00016"></a><span class="lineno"> 16</span>  make</div>
<div class="line"><a name="l00017"></a><span class="lineno"> 17</span>  make check</div>
<div class="line"><a name="l00018"></a><span class="lineno"> 18</span>  make install</div>
<div class="line"><a name="l00019"></a><span class="lineno"> 19</span> ```</div>
<div class="line"><a name="l00020"></a><span class="lineno"> 20</span> </div>
<div class="line"><a name="l00021"></a><span class="lineno"> 21</span> In first step we call the script which then populates all of the Makefile templates</div>
<div class="line"><a name="l00022"></a><span class="lineno"> 22</span> in our project and check for all dependencies and requirements.</div>
<div class="line"><a name="l00023"></a><span class="lineno"> 23</span> </div>
<div class="line"><a name="l00024"></a><span class="lineno"> 24</span> If all of the requirements are met then we can simply follow the next command</div>
<div class="line"><a name="l00025"></a><span class="lineno"> 25</span> `make` which calls the tools such as compilers and preprocessors to compile</div>
<div class="line"><a name="l00026"></a><span class="lineno"> 26</span> the project. This step takes place in the build directory if the prefix was not</div>
<div class="line"><a name="l00027"></a><span class="lineno"> 27</span> specified. </div>
<div class="line"><a name="l00028"></a><span class="lineno"> 28</span> </div>
<div class="line"><a name="l00029"></a><span class="lineno"> 29</span> The next (optional) step is to run self test on the compiled binaries and libraries.</div>
<div class="line"><a name="l00030"></a><span class="lineno"> 30</span> </div>
<div class="line"><a name="l00031"></a><span class="lineno"> 31</span> If all is well we then proceed to the final step of installing the necessery binaries</div>
<div class="line"><a name="l00032"></a><span class="lineno"> 32</span> and libraries into the host system. In this step the `sudo` (or equivalent) is </div>
<div class="line"><a name="l00033"></a><span class="lineno"> 33</span> required because the application may be copied to locations requiring administator</div>
<div class="line"><a name="l00034"></a><span class="lineno"> 34</span> priviledges to modify.</div>
</div><!-- fragment --></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Apr 26 2016 22:45:40 for ARDP by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>
|
clean/Linux-x86_64-4.09.1-2.0.6/released/8.9.1/lambda/8.10.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>lambda: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.9.1 / lambda - 8.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
lambda
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-05 07:20:37 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-05 07:20:37 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.9.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.09.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.09.1 Official release 4.09.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/lambda"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Lambda"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: pure lambda-calculus"
"keyword: confluence"
"keyword: parallel-moves lemma"
"keyword: Lévy's Cube Lemma"
"keyword: Church-Rosser"
"keyword: residual"
"keyword: Prism theorem"
"category: Computer Science/Lambda Calculi"
]
authors: [
"Gérard Huet"
]
bug-reports: "https://github.com/coq-contribs/lambda/issues"
dev-repo: "git+https://github.com/coq-contribs/lambda.git"
synopsis: "Residual Theory in Lambda-Calculus"
description: """
We present the complete development in Gallina of the
residual theory of beta-reduction in pure lambda-calculus. The main
result is the Prism Theorem, and its corollary Lévy's Cube Lemma, a
strong form of the parallel-moves lemma, itself a key step towards the
confluence theorem and its usual corollaries (Church-Rosser,
uniqueness of normal forms)."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/lambda/archive/v8.10.0.tar.gz"
checksum: "md5=dce1f9ff2656b6917c69d35bf42c5201"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-lambda.8.10.0 coq.8.9.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.9.1).
The following dependencies couldn't be met:
- coq-lambda -> coq >= 8.10
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-lambda.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.12.1-2.0.8/released/8.14.1/hedges/8.7.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>hedges: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.14.1 / hedges - 8.7.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
hedges
<small>
8.7.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-03 16:57:01 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-03 16:57:01 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.14.1 Formal proof management system
dune 3.0.2 Fast, portable, and opinionated build system
ocaml 4.12.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.12.1 Official release 4.12.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/hedges"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Hedges"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [ "keyword: bisimulation" "keyword: spi-calculus" "keyword: hedges" "category: Computer Science/Concurrent Systems and Protocols/Theory of concurrent systems" "date: 20 April 2004" ]
authors: [ "Sébastien Briais" ]
bug-reports: "https://github.com/coq-contribs/hedges/issues"
dev-repo: "git+https://github.com/coq-contribs/hedges.git"
synopsis: "Some properties of hedges used by hedged bisimulation"
description: """
These properties are in section 6.1 of the paper
"On Bisimulations for the Spi-Calculus" by J. Borgström
and U. Nestmann.
However, we consider here an extended message language."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/hedges/archive/v8.7.0.tar.gz"
checksum: "md5=0ebe11931f4a852f4bb5e6767d2a7c4c"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-hedges.8.7.0 coq.8.14.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.14.1).
The following dependencies couldn't be met:
- coq-hedges -> coq < 8.8~ -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-hedges.8.7.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.07.1-2.0.6/released/8.11.1/ptsatr/8.10.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ptsatr: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.1 / ptsatr - 8.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
ptsatr
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-10-19 05:32:36 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-19 05:32:36 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "http://www.lix.polytechnique.fr/~vsiles/coq/PTSATR.html"
license: "LGPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/PTSATR"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: pure type systems"
"keyword: judgmental equality"
"keyword: Church-Rosser"
"keyword: confluence"
"keyword: subject reduction"
"keyword: pi injectivity"
"category: Mathematics/Logic/Type theory"
]
authors: [
"Vincent Siles <vincent.siles@ens-lyon.org> [http://www.lix.polytechnique.fr/~vsiles]"
"Hugo Herbelin <hugo.herbelin@inria.fr> [http://pauillac.inria.fr/~herbelin/]"
]
bug-reports: "https://github.com/coq-contribs/ptsatr/issues"
dev-repo: "git+https://github.com/coq-contribs/ptsatr.git"
synopsis: "PTSATR"
description: """
Formalization of the proof that PTS and PTS with judgmental equality (PTSe) are equivalent.
With this equivalence, we are able to derive all the meta-theory of PTSe, like Pi-injectivity or Subject Reduction."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/ptsatr/archive/v8.10.0.tar.gz"
checksum: "md5=88109005908fca0aeff7afac0b568d1e"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-ptsatr.8.10.0 coq.8.11.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.1).
The following dependencies couldn't be met:
- coq-ptsatr -> coq < 8.11~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-ptsatr.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.11.2-2.0.7/released/8.12.0/paradoxes/8.10.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>paradoxes: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.12.0 / paradoxes - 8.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
paradoxes
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-07 04:21:54 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-07 04:21:54 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.12.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.11.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.11.2 Official release 4.11.2
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/paradoxes"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Paradoxes"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: Reynolds paradox"
"keyword: Burali-Forti paradox"
"keyword: Diaconescu paradox"
"keyword: set theory"
"keyword: system U"
"keyword: inconsistency"
"keyword: Hurkens paradox"
"category: Mathematics/Logic/Foundations"
]
authors: [
"Bruno Barras"
"Thierry Coquand"
"Hugo Herbelin"
"Benjamin Werner"
]
bug-reports: "https://github.com/coq-contribs/paradoxes/issues"
dev-repo: "git+https://github.com/coq-contribs/paradoxes.git"
synopsis: "Paradoxes in Set Theory and Type Theory"
description: """
A formalisation of Burali-Forti paradox in system U (the
existence of an ordinal of ordinals is inconsistent), of Diaconescu
paradox (axiom of choice implies excluded-middle), of Reynolds paradox
(there is no set-theoretic model of system F) and Hurkens paradox in
system U (adapted by H. Geuvers to show the inconsistency of
Excluded-Middle in impredicative-Set Calculus of Inductive Constructions)."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/paradoxes/archive/v8.10.0.tar.gz"
checksum: "md5=47dfd91bb2600fb9284f01c978a5307c"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-paradoxes.8.10.0 coq.8.12.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.12.0).
The following dependencies couldn't be met:
- coq-paradoxes -> coq < 8.11~ -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-paradoxes.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.10.2-2.0.6/released/8.13.1/pi-agm/1.2.3.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>pi-agm: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.13.1 / pi-agm - 1.2.3</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
pi-agm
<small>
1.2.3
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-13 08:04:05 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-13 08:04:05 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq 8.13.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.10.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.2 Official release 4.10.2
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
name: "coq-pi-agm"
version: "1.2.3"
maintainer: "yves.bertot@inria.fr"
homepage: "http://www-sop.inria.fr/members/Yves.Bertot/"
bug-reports: "yves.bertot@inria.fr"
license: "CeCILL-B"
build: [["coq_makefile" "-f" "_CoqProject" "-o" "Makefile" ]
[ make "-j" "%{jobs}%" ]]
install: [ make "install" "DEST='%{lib}%/coq/user-contrib/pi_agm'" ]
remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/pi_agm'" ]
depends: [
"ocaml"
"coq" {>= "8.9" & < "8.10~"}
"coq-coquelicot" {>= "3" & < "4~"}
"coq-interval" {>= "3.1" & < "4"}
]
tags: [ "keyword:real analysis" "keyword:pi" "category:Mathematics/Real Calculus and Topology" ]
authors: [ "Yves Bertot <yves.bertot@inria.fr>" ]
synopsis:
"Computing thousands or millions of digits of PI with arithmetic-geometric means"
description: """
This is a proof of correctness for two algorithms to compute PI to high
precision using arithmetic-geometric means. A first file contains
the calculus-based proofs for an abstract view of the algorithm, where all
numbers are real numbers. A second file describes how to approximate all
computations using large integers. Other files describe the second algorithm
which is close to the one used in mpfr, for instance.
The whole development can be used to produce mathematically proved and
formally verified approximations of PI."""
url {
src: "https://github.com/ybertot/pi-agm/archive/v1.2.3.zip"
checksum: "md5=2772bb7581b79dded0fde1f1d3b2143c"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-pi-agm.1.2.3 coq.8.13.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.13.1).
The following dependencies couldn't be met:
- coq-pi-agm -> coq < 8.10~ -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-pi-agm.1.2.3</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.02.3-2.0.6/released/8.9.0/mini-compiler/8.5.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mini-compiler: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.9.0 / mini-compiler - 8.5.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mini-compiler
<small>
8.5.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-01 17:12:23 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-01 17:12:23 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-ocamlbuild base OCamlbuild binary and libraries distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.9.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.02.3 The OCaml compiler (virtual package)
ocaml-base-compiler 4.02.3 Official 4.02.3 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matej.kosik@inria.fr"
homepage: "https://github.com/coq-contribs/mini-compiler"
license: "LGPL 2"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/MiniCompiler"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
]
tags: [ "keyword:compilation" "keyword:correctness" "keyword:arithmetic" "category:Computer Science/Semantics and Compilation/Compilation" "date:2003" ]
authors: [ "Jean-Christophe Filliâtre <>" ]
bug-reports: "https://github.com/coq-contribs/mini-compiler/issues"
dev-repo: "git+https://github.com/coq-contribs/mini-compiler.git"
synopsis: "Correctness of a tiny compiler for arithmetic expressions"
description: """
Tutorial correctness proof of a tiny compiler from
simple arithmetic expressions (constants, variables and additions) to
simple assembly-like code (one accumulator, infinitly many registers and
addition)"""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/mini-compiler/archive/v8.5.0.tar.gz"
checksum: "md5=27b1414ce51c9cfe014d5777e9d47b2e"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-mini-compiler.8.5.0 coq.8.9.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.9.0).
The following dependencies couldn't be met:
- coq-mini-compiler -> coq < 8.6~ -> ocaml < 4.02.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-mini-compiler.8.5.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.07.1-2.0.6/released/8.9.1/minic/8.6.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>minic: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.9.1 / minic - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
minic
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-16 00:21:27 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-16 00:21:27 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.9.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/minic"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/MiniC"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: denotational semantics" "keyword: compilation" "category: Computer Science/Semantics and Compilation/Semantics" ]
authors: [ "Eduardo Giménez and Emmanuel Ledinot" ]
bug-reports: "https://github.com/coq-contribs/minic/issues"
dev-repo: "git+https://github.com/coq-contribs/minic.git"
synopsis: "Semantics of a subset of the C language"
description: """
This contribution defines the denotational semantics of MiniC, a
sub-set of the C language. This sub-set is sufficiently large to
contain any program generated by lustre2C.
The denotation function describing the semantics of a MiniC program
actually provides an interpreter for the program."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/minic/archive/v8.6.0.tar.gz"
checksum: "md5=2649c8cced0332490c9366a808e051d3"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-minic.8.6.0 coq.8.9.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.9.1).
The following dependencies couldn't be met:
- coq-minic -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-minic.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.04.2-2.0.5/released/8.8.1/ltac2/0.1-8.7.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ltac2: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.1 / ltac2 - 0.1-8.7</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
ltac2
<small>
0.1-8.7
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-18 16:46:16 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-18 16:46:16 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.8.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
name: "coq-ltac2"
maintainer: "Pierre-Marie Pédrot <pierre-marie.pedrot@irif.fr>"
license: "LGPL 2.1"
homepage: "https://github.com/coq/ltac2"
dev-repo: "git+https://github.com/coq/ltac2.git"
bug-reports: "https://github.com/coq/ltac2/issues"
build: [
[make "COQBIN=\"\"" "-j%{jobs}%"]
]
install: [make "install"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
synopsis: "A tactic language for Coq"
authors: "Pierre-Marie Pédrot <pierre-marie.pedrot@irif.fr>"
url {
src: "https://github.com/coq/ltac2/archive/v0.1-8.7.tar.gz"
checksum: "md5=748636d22bf0319fed33be80da014d93"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-ltac2.0.1-8.7 coq.8.8.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.1).
The following dependencies couldn't be met:
- coq-ltac2 -> coq < 8.8~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-ltac2.0.1-8.7</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.09.0-2.0.5/released/8.8.0/gc/8.10.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>gc: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.0 / gc - 8.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
gc
<small>
8.10.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-02-22 04:40:42 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-02-22 04:40:42 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.11 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.8.0 Formal proof management system.
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.09.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.09.0 Official release 4.09.0
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/gc"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/GC"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: Linear temporal logic"
"keyword: finite sets"
"keyword: co-induction"
"keyword: garbage collection"
"category: Computer Science/Semantics and Compilation/Compilation"
"date: 2003-05-9"
]
authors: [
"Solange Coupet-Grimal and Catherine Nouvet"
]
bug-reports: "https://github.com/coq-contribs/gc/issues"
dev-repo: "git+https://github.com/coq-contribs/gc.git"
synopsis: "Formal Verification of an Incremental Garbage Collector"
description: """
We specify an incremental garbage collection algorithm and we give a formal proof of its
correctness. The algorithm is represented as an infinite transition system and we establish safety
and liveness properties. This work relies on an axiomatization of LTL and is based on a co-inductive
representation of programs executions. Although motivated by integrating the dynamic memory
management to the Java Card platform, this study applies more generally to real-time embedded systems and to devices with virtually infinite memory."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/gc/archive/v8.10.0.tar.gz"
checksum: "md5=74ce16cd01408ea4011cd89613cc4c0e"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-gc.8.10.0 coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.0).
The following dependencies couldn't be met:
- coq-gc -> coq >= 8.10
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-gc.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.6/released/8.8.0/fairisle/8.5.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>fairisle: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.0 / fairisle - 8.5.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
fairisle
<small>
8.5.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-09-14 18:10:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-09-14 18:10:41 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.13 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.8.0 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matej.kosik@inria.fr"
homepage: "https://github.com/coq-contribs/fairisle"
license: "LGPL 2"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Fairisle"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
]
tags: [ "keyword:circuits" "keyword:automata" "keyword:coinduction" "keyword:dependent types" "category:Computer Science/Architecture" "date:2005-12-15" ]
authors: [ "Solange Coupet-Grimal <Solange.Coupet@lif.univ-mrs.fr>" "Line Jakubiec-Jamet <Line.Jakubiec@lif.univ-mrs.fr>" ]
bug-reports: "https://github.com/coq-contribs/fairisle/issues"
dev-repo: "git+https://github.com/coq-contribs/fairisle.git"
synopsis: "Proof of the Fairisle 4x4 Switch Element "
description: """
This library contains the development of general definitions dedicated
to the verification of sequential synchronous devices (based on Moore and Mealy automata)
and the formal verification of the Fairisle 4x4 Switch Element."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/fairisle/archive/v8.5.0.tar.gz"
checksum: "md5=af82647c890367387306e0c91b25f456"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-fairisle.8.5.0 coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.0).
The following dependencies couldn't be met:
- coq-fairisle -> coq < 8.6~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-fairisle.8.5.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.02.3-2.0.6/released/8.7.0/vst/2.9.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>vst: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.0 / vst - 2.9</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
vst
<small>
2.9
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-09 10:28:59 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-09 10:28:59 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-ocamlbuild base OCamlbuild binary and libraries distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.7.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.02.3 The OCaml compiler (virtual package)
ocaml-base-compiler 4.02.3 Official 4.02.3 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
synopsis: "Verified Software Toolchain"
description: "The software toolchain includes static analyzers to check assertions about your program; optimizing compilers to translate your program to machine language; operating systems and libraries to supply context for your program. The Verified Software Toolchain project assures with machine-checked proofs that the assertions claimed at the top of the toolchain really hold in the machine-language program, running in the operating-system context."
authors: [
"Andrew W. Appel"
"Lennart Beringer"
"Sandrine Blazy"
"Qinxiang Cao"
"Santiago Cuellar"
"Robert Dockins"
"Josiah Dodds"
"Nick Giannarakis"
"Samuel Gruetter"
"Aquinas Hobor"
"Jean-Marie Madiot"
"William Mansky"
]
maintainer: "VST team"
homepage: "http://vst.cs.princeton.edu/"
dev-repo: "git+https://github.com/PrincetonUniversity/VST.git"
bug-reports: "https://github.com/PrincetonUniversity/VST/issues"
license: "https://raw.githubusercontent.com/PrincetonUniversity/VST/master/LICENSE"
build: [
[make "-j%{jobs}%" "IGNORECOQVERSION=true" "BITSIZE=64"]
]
install: [
[make "install" "IGNORECOQVERSION=true" "BITSIZE=64"]
]
depends: [
"ocaml"
"coq" {>= "8.12" & < "8.16~"}
"coq-compcert" {= "3.10"}
"coq-flocq" {>= "3.2.1"}
]
tags: [
"category:Computer Science/Semantics and Compilation/Semantics"
"keyword:C"
"logpath:VST"
"date:2021-06-01"
]
url {
src: "https://github.com/PrincetonUniversity/VST/archive/refs/tags/v2.9.tar.gz"
checksum: "sha512=497f4c702b1a52cb1a23a71aee31c68a78e75d5cab2d41da58f2426ca78b43171fab808105b2dde57bdca98a41bcd2953065819e5a2f8e5183635ba709a6a536"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-vst.2.9 coq.8.7.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.0).
The following dependencies couldn't be met:
- coq-vst -> coq-compcert >= 3.10 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-vst.2.9</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
v5/user-agent-detail/88/75/8875b81b-23f0-488b-a249-df0de2106a05.html | ThaDafinser/UserAgentParserComparison |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>User agent detail - DoCoMo/2.0 SH03D(c500;TB;W24H16)</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="../circle.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="section">
<h1 class="header center orange-text">User agent detail</h1>
<div class="row center">
<h5 class="header light">
DoCoMo/2.0 SH03D(c500;TB;W24H16)
</h5>
</div>
</div>
<div class="section">
<table class="striped"><tr><th></th><th colspan="3">General</th><th colspan="5">Device</th><th colspan="3">Bot</th><th colspan="2"></th></tr><tr><th>Provider</th><th>Browser</th><th>Engine</th><th>OS</th><th>Brand</th><th>Model</th><th>Type</th><th>Is mobile</th><th>Is touch</th><th>Is bot</th><th>Name</th><th>Type</th><th>Parse time</th><th>Actions</th></tr><tr><th colspan="14" class="green lighten-3">Test suite</th></tr><tr><td>UAParser<br /><small>v0.5.0.2</small><br /><small>vendor/thadafinser/uap-core/tests/test_device.yaml</small></td><td> </td><td><i class="material-icons">close</i></td><td> </td><td style="border-left: 1px solid #555">DoCoMo</td><td>SH03D</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-cfed3005-df48-4fa8-bf03-4f6ef8988f59">Detail</a>
<!-- Modal Structure -->
<div id="modal-cfed3005-df48-4fa8-bf03-4f6ef8988f59" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UAParser result detail</h4>
<p><pre><code class="php">Array
(
[user_agent_string] => DoCoMo/2.0 SH03D(c500;TB;W24H16)
[family] => DoCoMo SH03D
[brand] => DoCoMo
[model] => SH03D
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><th colspan="14" class="green lighten-3">Providers</th></tr><tr><td>BrowscapFull<br /><small>6014</small><br /></td><td>DoCoMo 2.0</td><td> </td><td>JAVA </td><td style="border-left: 1px solid #555"></td><td></td><td>Mobile Device</td><td>yes</td><td></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.005</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-47a9cd06-e213-4882-bc34-db6aed664223">Detail</a>
<!-- Modal Structure -->
<div id="modal-47a9cd06-e213-4882-bc34-db6aed664223" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapFull result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^docomo\/2\.0.*$/
[browser_name_pattern] => docomo/2.0*
[parent] => DoCoMo
[comment] => DoCoMo
[browser] => DoCoMo
[browser_type] => Browser
[browser_bits] => 32
[browser_maker] => unknown
[browser_modus] => unknown
[version] => 2.0
[majorver] => 2
[minorver] => 0
[platform] => JAVA
[platform_version] => unknown
[platform_description] => unknown
[platform_bits] => 32
[platform_maker] => Oracle
[alpha] =>
[beta] =>
[win16] =>
[win32] =>
[win64] =>
[frames] => 1
[iframes] => 1
[tables] => 1
[cookies] => 1
[backgroundsounds] =>
[javascript] => 1
[vbscript] =>
[javaapplets] =>
[activexcontrols] =>
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] =>
[crawler] =>
[isfake] =>
[isanonymized] =>
[ismodified] =>
[cssversion] => 1
[aolversion] => 0
[device_name] => general Mobile Device
[device_maker] => unknown
[device_type] => Mobile Device
[device_pointing_method] => unknown
[device_code_name] => general Mobile Device
[device_brand_name] => unknown
[renderingengine_name] => unknown
[renderingengine_version] => unknown
[renderingengine_description] => unknown
[renderingengine_maker] => unknown
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>BrowscapLite<br /><small>6014</small><br /></td>
<td colspan="12" class="center-align red lighten-1">
<strong>No result found</strong>
</td>
</tr><tr><td>BrowscapPhp<br /><small>6014</small><br /></td><td>DoCoMo 2.0</td><td><i class="material-icons">close</i></td><td>JAVA </td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>Mobile Device</td><td>yes</td><td></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.014</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-ad0041a2-b0f4-43f6-a70d-cad1443caa68">Detail</a>
<!-- Modal Structure -->
<div id="modal-ad0041a2-b0f4-43f6-a70d-cad1443caa68" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapPhp result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^docomo\/2\.0.*$/
[browser_name_pattern] => docomo/2.0*
[parent] => DoCoMo
[comment] => DoCoMo
[browser] => DoCoMo
[browser_type] => unknown
[browser_bits] => 0
[browser_maker] => unknown
[browser_modus] => unknown
[version] => 2.0
[majorver] => 2
[minorver] => 0
[platform] => JAVA
[platform_version] => unknown
[platform_description] => unknown
[platform_bits] => 0
[platform_maker] => unknown
[alpha] => false
[beta] => false
[win16] => false
[win32] => false
[win64] => false
[frames] => false
[iframes] => false
[tables] => false
[cookies] => false
[backgroundsounds] => false
[javascript] => false
[vbscript] => false
[javaapplets] => false
[activexcontrols] => false
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] => false
[crawler] =>
[isfake] => false
[isanonymized] => false
[ismodified] => false
[cssversion] => 0
[aolversion] => 0
[device_name] => unknown
[device_maker] => unknown
[device_type] => Mobile Device
[device_pointing_method] => unknown
[device_code_name] => unknown
[device_brand_name] => unknown
[renderingengine_name] => unknown
[renderingengine_version] => unknown
[renderingengine_description] => unknown
[renderingengine_maker] => unknown
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>DonatjUAParser<br /><small>v0.5.1</small><br /></td><td>DoCoMo 2.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-15fbc1f0-2615-4d42-b5d9-a30dd647b050">Detail</a>
<!-- Modal Structure -->
<div id="modal-15fbc1f0-2615-4d42-b5d9-a30dd647b050" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>DonatjUAParser result detail</h4>
<p><pre><code class="php">Array
(
[platform] =>
[browser] => DoCoMo
[version] => 2.0
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>JenssegersAgent<br /><small>v2.3.3</small><br /></td>
<td colspan="12" class="center-align red lighten-1">
<strong>No result found</strong>
</td>
</tr><tr><td>NeutrinoApiCom<br /><small></small><br /></td><td>NetFront </td><td><i class="material-icons">close</i></td><td> </td><td style="border-left: 1px solid #555">DoCoMo</td><td>SH-03D</td><td>mobile-browser</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.19701</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-8c2a7a4e-3fbf-4df2-8d61-5e730422f67b">Detail</a>
<!-- Modal Structure -->
<div id="modal-8c2a7a4e-3fbf-4df2-8d61-5e730422f67b" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>NeutrinoApiCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[mobile_screen_height] => 854
[is_mobile] => 1
[type] => mobile-browser
[mobile_brand] => DoCoMo
[mobile_model] => SH-03D
[version] =>
[is_android] =>
[browser_name] => NetFront
[operating_system_family] => unknown
[operating_system_version] =>
[is_ios] =>
[producer] => ACCESS CO.,LTD
[operating_system] => unknown
[mobile_screen_width] => 480
[mobile_browser] =>
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>PiwikDeviceDetector<br /><small>3.6.1</small><br /></td><td> </td><td> </td><td> </td><td style="border-left: 1px solid #555">DoCoMo</td><td>SH03D</td><td>feature phone</td><td>yes</td><td></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.002</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-4a941d34-a8d3-4914-9724-346f60ad7046">Detail</a>
<!-- Modal Structure -->
<div id="modal-4a941d34-a8d3-4914-9724-346f60ad7046" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>PiwikDeviceDetector result detail</h4>
<p><pre><code class="php">Array
(
[client] =>
[operatingSystem] => Array
(
)
[device] => Array
(
[brand] => DC
[brandName] => DoCoMo
[model] => SH03D
[device] => 3
[deviceName] => feature phone
)
[bot] =>
[extra] => Array
(
[isBot] =>
[isBrowser] =>
[isFeedReader] =>
[isMobileApp] =>
[isPIM] =>
[isLibrary] =>
[isMediaPlayer] =>
[isCamera] =>
[isCarBrowser] =>
[isConsole] =>
[isFeaturePhone] => 1
[isPhablet] =>
[isPortableMediaPlayer] =>
[isSmartDisplay] =>
[isSmartphone] =>
[isTablet] =>
[isTV] =>
[isDesktop] =>
[isMobile] => 1
[isTouchEnabled] =>
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>SinergiBrowserDetector<br /><small>6.0.1</small><br /></td>
<td colspan="12" class="center-align red lighten-1">
<strong>No result found</strong>
</td>
</tr><tr><td>UAParser<br /><small>v3.4.5</small><br /></td><td> </td><td><i class="material-icons">close</i></td><td> </td><td style="border-left: 1px solid #555">DoCoMo</td><td>SH03D</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.001</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-3160e405-8a8f-46dd-8f47-5115f06462d2">Detail</a>
<!-- Modal Structure -->
<div id="modal-3160e405-8a8f-46dd-8f47-5115f06462d2" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UAParser result detail</h4>
<p><pre><code class="php">UAParser\Result\Client Object
(
[ua] => UAParser\Result\UserAgent Object
(
[major] =>
[minor] =>
[patch] =>
[family] => Other
)
[os] => UAParser\Result\OperatingSystem Object
(
[major] =>
[minor] =>
[patch] =>
[patchMinor] =>
[family] => Other
)
[device] => UAParser\Result\Device Object
(
[brand] => DoCoMo
[model] => SH03D
[family] => DoCoMo SH03D
)
[originalUserAgent] => DoCoMo/2.0 SH03D(c500;TB;W24H16)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UserAgentApiCom<br /><small></small><br /></td><td> </td><td> </td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>Mobile</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.16701</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-afeb05fb-26b9-4509-b8ac-0c604a9e97d6">Detail</a>
<!-- Modal Structure -->
<div id="modal-afeb05fb-26b9-4509-b8ac-0c604a9e97d6" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UserAgentApiCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[platform_name] => NTT DoCoMo
[platform_version] => 2.0
[platform_type] => Mobile
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UserAgentStringCom<br /><small></small><br /></td>
<td colspan="12" class="center-align red lighten-1">
<strong>No result found</strong>
</td>
</tr><tr><td>WhatIsMyBrowserCom<br /><small></small><br /></td><td> </td><td> </td><td> </td><td style="border-left: 1px solid #555"></td><td>SH03D</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.24001</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-5fc1ff22-a74d-481b-9ad1-fcfde73ded9c">Detail</a>
<!-- Modal Structure -->
<div id="modal-5fc1ff22-a74d-481b-9ad1-fcfde73ded9c" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhatIsMyBrowserCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[operating_system_name] =>
[simple_sub_description_string] =>
[simple_browser_string] =>
[browser_version] =>
[extra_info] => Array
(
)
[operating_platform] => SH03D
[extra_info_table] => Array
(
)
[layout_engine_name] =>
[detected_addons] => Array
(
)
[operating_system_flavour_code] =>
[hardware_architecture] =>
[operating_system_flavour] =>
[operating_system_frameworks] => Array
(
)
[browser_name_code] =>
[operating_system_version] =>
[simple_operating_platform_string] => SH03D
[is_abusive] =>
[layout_engine_version] =>
[browser_capabilities] => Array
(
)
[operating_platform_vendor_name] =>
[operating_system] =>
[operating_system_version_full] =>
[operating_platform_code] =>
[browser_name] =>
[operating_system_name_code] =>
[user_agent] => DoCoMo/2.0 SH03D(c500;TB;W24H16)
[browser_version_full] =>
[browser] =>
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>WhichBrowser<br /><small>v2.0.18</small><br /></td><td> </td><td> </td><td> </td><td style="border-left: 1px solid #555">Sharp</td><td>SH03D</td><td>mobile:feature</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.001</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-083a336f-5d73-4505-84f3-c5fc9bb78652">Detail</a>
<!-- Modal Structure -->
<div id="modal-083a336f-5d73-4505-84f3-c5fc9bb78652" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhichBrowser result detail</h4>
<p><pre><code class="php">Array
(
[device] => Array
(
[type] => mobile
[subtype] => feature
[manufacturer] => Sharp
[model] => SH03D
[carrier] => DoCoMo
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Woothee<br /><small>v1.2.0</small><br /></td><td>docomo SH03D</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>mobilephone</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-f00e7198-0e22-49fe-bad0-dbb3a9cde9b9">Detail</a>
<!-- Modal Structure -->
<div id="modal-f00e7198-0e22-49fe-bad0-dbb3a9cde9b9" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Woothee result detail</h4>
<p><pre><code class="php">Array
(
[name] => docomo
[os] => docomo
[category] => mobilephone
[vendor] => docomo
[version] => SH03D
[os_version] => UNKNOWN
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Wurfl<br /><small>1.7.1.0</small><br /></td><td> </td><td><i class="material-icons">close</i></td><td> </td><td style="border-left: 1px solid #555">DoCoMo</td><td>SH-03D</td><td>Feature Phone</td><td>yes</td><td>yes</td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.019</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-a2bedf8c-4a95-42a7-96c5-aaf233b2ac50">Detail</a>
<!-- Modal Structure -->
<div id="modal-a2bedf8c-4a95-42a7-96c5-aaf233b2ac50" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Wurfl result detail</h4>
<p><pre><code class="php">Array
(
[virtual] => Array
(
[is_android] => false
[is_ios] => false
[is_windows_phone] => false
[is_app] => false
[is_full_desktop] => false
[is_largescreen] => true
[is_mobile] => true
[is_robot] => false
[is_smartphone] => false
[is_touchscreen] => true
[is_wml_preferred] => false
[is_xhtmlmp_preferred] => true
[is_html_preferred] => false
[advertised_device_os] =>
[advertised_device_os_version] =>
[advertised_browser] =>
[advertised_browser_version] =>
[complete_device_name] => DoCoMo SH-03D (STYLE series SH-03D)
[device_name] => DoCoMo STYLE series SH-03D
[form_factor] => Feature Phone
[is_phone] => true
[is_app_webview] => false
)
[all] => Array
(
[brand_name] => DoCoMo
[model_name] => SH-03D
[unique] => true
[ununiqueness_handler] =>
[is_wireless_device] => true
[device_claims_web_support] => false
[has_qwerty_keyboard] => false
[can_skip_aligned_link_row] => true
[uaprof] =>
[uaprof2] =>
[uaprof3] =>
[nokia_series] => 0
[nokia_edition] => 0
[device_os] =>
[mobile_browser] =>
[mobile_browser_version] =>
[device_os_version] =>
[pointing_method] => touchscreen
[release_date] => 2002_january
[marketing_name] => STYLE series SH-03D
[model_extra_info] =>
[nokia_feature_pack] => 0
[can_assign_phone_number] => true
[is_tablet] => false
[manufacturer_name] =>
[is_bot] => false
[is_google_glass] => false
[proportional_font] => false
[built_in_back_button_support] => true
[card_title_support] => false
[softkey_support] => false
[table_support] => false
[numbered_menus] => false
[menu_with_select_element_recommended] => false
[menu_with_list_of_links_recommended] => false
[icons_on_menu_items_support] => false
[break_list_of_links_with_br_element_recommended] => false
[access_key_support] => false
[wrap_mode_support] => false
[times_square_mode_support] => false
[deck_prefetch_support] => false
[elective_forms_recommended] => false
[wizards_recommended] => false
[image_as_link_support] => false
[insert_br_element_after_widget_recommended] => false
[wml_can_display_images_and_text_on_same_line] => false
[wml_displays_image_in_center] => false
[opwv_wml_extensions_support] => false
[wml_make_phone_call_string] => wtai://wp/mc;
[chtml_display_accesskey] => true
[emoji] => false
[chtml_can_display_images_and_text_on_same_line] => false
[chtml_displays_image_in_center] => false
[imode_region] => ja
[chtml_make_phone_call_string] => tel:
[chtml_table_support] => false
[xhtml_honors_bgcolor] => false
[xhtml_supports_forms_in_table] => false
[xhtml_support_wml2_namespace] => false
[xhtml_autoexpand_select] => false
[xhtml_select_as_dropdown] => false
[xhtml_select_as_radiobutton] => false
[xhtml_select_as_popup] => false
[xhtml_display_accesskey] => false
[xhtml_supports_invisible_text] => false
[xhtml_supports_inline_input] => false
[xhtml_supports_monospace_font] => false
[xhtml_supports_table_for_layout] => false
[xhtml_supports_css_cell_table_coloring] => false
[xhtml_format_as_css_property] => false
[xhtml_format_as_attribute] => false
[xhtml_nowrap_mode] => false
[xhtml_marquee_as_css_property] => false
[xhtml_readable_background_color1] => #FFFFFF
[xhtml_readable_background_color2] => #FFFFFF
[xhtml_allows_disabled_form_elements] => false
[xhtml_document_title_support] => true
[xhtml_preferred_charset] => utf8
[opwv_xhtml_extensions_support] => false
[xhtml_make_phone_call_string] => tel:
[xhtmlmp_preferred_mime_type] => application/vnd.wap.xhtml+xml
[xhtml_table_support] => false
[xhtml_send_sms_string] => none
[xhtml_send_mms_string] => none
[xhtml_file_upload] => not_supported
[cookie_support] => true
[accept_third_party_cookie] => true
[xhtml_supports_iframe] => none
[xhtml_avoid_accesskeys] => false
[xhtml_can_embed_video] => none
[ajax_support_javascript] => false
[ajax_manipulate_css] => false
[ajax_support_getelementbyid] => false
[ajax_support_inner_html] => false
[ajax_xhr_type] => none
[ajax_manipulate_dom] => false
[ajax_support_events] => false
[ajax_support_event_listener] => false
[ajax_preferred_geoloc_api] => none
[xhtml_support_level] => 1
[preferred_markup] => docomo_imode_html_3
[wml_1_1] => true
[wml_1_2] => false
[wml_1_3] => false
[html_wi_w3_xhtmlbasic] => true
[html_wi_oma_xhtmlmp_1_0] => true
[html_wi_imode_html_1] => true
[html_wi_imode_html_2] => false
[html_wi_imode_html_3] => false
[html_wi_imode_html_4] => false
[html_wi_imode_html_5] => false
[html_wi_imode_htmlx_1] => false
[html_wi_imode_htmlx_1_1] => false
[html_wi_imode_compact_generic] => true
[html_web_3_2] => false
[html_web_4_0] => false
[voicexml] => false
[multipart_support] => false
[total_cache_disable_support] => false
[time_to_live_support] => false
[resolution_width] => 480
[resolution_height] => 854
[columns] => 8
[max_image_width] => 240
[max_image_height] => 320
[rows] => 6
[physical_screen_width] => 43
[physical_screen_height] => 76
[dual_orientation] => false
[density_class] => 1.0
[wbmp] => false
[bmp] => false
[epoc_bmp] => false
[gif_animated] => false
[jpg] => false
[png] => false
[tiff] => false
[transparent_png_alpha] => false
[transparent_png_index] => false
[svgt_1_1] => false
[svgt_1_1_plus] => false
[greyscale] => false
[gif] => true
[colors] => 262144
[webp_lossy_support] => false
[webp_lossless_support] => false
[post_method_support] => true
[basic_authentication_support] => true
[empty_option_value_support] => true
[emptyok] => false
[nokia_voice_call] => false
[wta_voice_call] => false
[wta_phonebook] => false
[wta_misc] => false
[wta_pdc] => false
[https_support] => true
[phone_id_provided] => false
[max_data_rate] => 9
[wifi] => false
[sdio] => false
[vpn] => false
[has_cellular_radio] => true
[max_deck_size] => 5000
[max_url_length_in_requests] => 512
[max_url_length_homepage] => 100
[max_url_length_bookmark] => 100
[max_url_length_cached_page] => 0
[max_no_of_connection_settings] => 0
[max_no_of_bookmarks] => 0
[max_length_of_username] => 256
[max_length_of_password] => 20
[max_object_size] => 0
[downloadfun_support] => false
[directdownload_support] => false
[inline_support] => false
[oma_support] => false
[ringtone] => false
[ringtone_3gpp] => false
[ringtone_midi_monophonic] => false
[ringtone_midi_polyphonic] => false
[ringtone_imelody] => false
[ringtone_digiplug] => false
[ringtone_compactmidi] => false
[ringtone_mmf] => false
[ringtone_rmf] => false
[ringtone_xmf] => false
[ringtone_amr] => false
[ringtone_awb] => false
[ringtone_aac] => false
[ringtone_wav] => false
[ringtone_mp3] => false
[ringtone_spmidi] => false
[ringtone_qcelp] => false
[ringtone_voices] => 1
[ringtone_df_size_limit] => 0
[ringtone_directdownload_size_limit] => 0
[ringtone_inline_size_limit] => 0
[ringtone_oma_size_limit] => 0
[wallpaper] => false
[wallpaper_max_width] => 0
[wallpaper_max_height] => 0
[wallpaper_preferred_width] => 0
[wallpaper_preferred_height] => 0
[wallpaper_resize] => none
[wallpaper_wbmp] => false
[wallpaper_bmp] => false
[wallpaper_gif] => false
[wallpaper_jpg] => false
[wallpaper_png] => false
[wallpaper_tiff] => false
[wallpaper_greyscale] => false
[wallpaper_colors] => 2
[wallpaper_df_size_limit] => 0
[wallpaper_directdownload_size_limit] => 0
[wallpaper_inline_size_limit] => 0
[wallpaper_oma_size_limit] => 0
[screensaver] => false
[screensaver_max_width] => 0
[screensaver_max_height] => 0
[screensaver_preferred_width] => 0
[screensaver_preferred_height] => 0
[screensaver_resize] => none
[screensaver_wbmp] => false
[screensaver_bmp] => false
[screensaver_gif] => false
[screensaver_jpg] => false
[screensaver_png] => false
[screensaver_greyscale] => false
[screensaver_colors] => 2
[screensaver_df_size_limit] => 0
[screensaver_directdownload_size_limit] => 0
[screensaver_inline_size_limit] => 0
[screensaver_oma_size_limit] => 0
[picture] => false
[picture_max_width] => 0
[picture_max_height] => 0
[picture_preferred_width] => 0
[picture_preferred_height] => 0
[picture_resize] => none
[picture_wbmp] => false
[picture_bmp] => false
[picture_gif] => false
[picture_jpg] => false
[picture_png] => false
[picture_greyscale] => false
[picture_colors] => 2
[picture_df_size_limit] => 0
[picture_directdownload_size_limit] => 0
[picture_inline_size_limit] => 0
[picture_oma_size_limit] => 0
[video] => false
[oma_v_1_0_forwardlock] => false
[oma_v_1_0_combined_delivery] => false
[oma_v_1_0_separate_delivery] => false
[streaming_video] => false
[streaming_3gpp] => false
[streaming_mp4] => false
[streaming_mov] => false
[streaming_video_size_limit] => 0
[streaming_real_media] => none
[streaming_flv] => false
[streaming_3g2] => false
[streaming_vcodec_h263_0] => -1
[streaming_vcodec_h263_3] => -1
[streaming_vcodec_mpeg4_sp] => -1
[streaming_vcodec_mpeg4_asp] => -1
[streaming_vcodec_h264_bp] => -1
[streaming_acodec_amr] => none
[streaming_acodec_aac] => none
[streaming_wmv] => none
[streaming_preferred_protocol] => rtsp
[streaming_preferred_http_protocol] => none
[wap_push_support] => false
[connectionless_service_indication] => false
[connectionless_service_load] => false
[connectionless_cache_operation] => false
[connectionoriented_unconfirmed_service_indication] => false
[connectionoriented_unconfirmed_service_load] => false
[connectionoriented_unconfirmed_cache_operation] => false
[connectionoriented_confirmed_service_indication] => false
[connectionoriented_confirmed_service_load] => false
[connectionoriented_confirmed_cache_operation] => false
[utf8_support] => false
[ascii_support] => false
[iso8859_support] => false
[expiration_date] => false
[j2me_cldc_1_0] => false
[j2me_cldc_1_1] => false
[j2me_midp_1_0] => false
[j2me_midp_2_0] => false
[doja_1_0] => false
[doja_1_5] => false
[doja_2_0] => false
[doja_2_1] => false
[doja_2_2] => false
[doja_3_0] => false
[doja_3_5] => false
[doja_4_0] => false
[j2me_jtwi] => false
[j2me_mmapi_1_0] => false
[j2me_mmapi_1_1] => false
[j2me_wmapi_1_0] => false
[j2me_wmapi_1_1] => false
[j2me_wmapi_2_0] => false
[j2me_btapi] => false
[j2me_3dapi] => false
[j2me_locapi] => false
[j2me_nokia_ui] => false
[j2me_motorola_lwt] => false
[j2me_siemens_color_game] => false
[j2me_siemens_extension] => false
[j2me_heap_size] => 0
[j2me_max_jar_size] => 0
[j2me_storage_size] => 0
[j2me_max_record_store_size] => 0
[j2me_screen_width] => 0
[j2me_screen_height] => 0
[j2me_canvas_width] => 0
[j2me_canvas_height] => 0
[j2me_bits_per_pixel] => 0
[j2me_audio_capture_enabled] => false
[j2me_video_capture_enabled] => false
[j2me_photo_capture_enabled] => false
[j2me_capture_image_formats] => none
[j2me_http] => false
[j2me_https] => false
[j2me_socket] => false
[j2me_udp] => false
[j2me_serial] => false
[j2me_gif] => false
[j2me_gif89a] => false
[j2me_jpg] => false
[j2me_png] => false
[j2me_bmp] => false
[j2me_bmp3] => false
[j2me_wbmp] => false
[j2me_midi] => false
[j2me_wav] => false
[j2me_amr] => false
[j2me_mp3] => false
[j2me_mp4] => false
[j2me_imelody] => false
[j2me_rmf] => false
[j2me_au] => false
[j2me_aac] => false
[j2me_realaudio] => false
[j2me_xmf] => false
[j2me_wma] => false
[j2me_3gpp] => false
[j2me_h263] => false
[j2me_svgt] => false
[j2me_mpeg4] => false
[j2me_realvideo] => false
[j2me_real8] => false
[j2me_realmedia] => false
[j2me_left_softkey_code] => 0
[j2me_right_softkey_code] => 0
[j2me_middle_softkey_code] => 0
[j2me_select_key_code] => 0
[j2me_return_key_code] => 0
[j2me_clear_key_code] => 0
[j2me_datefield_no_accepts_null_date] => false
[j2me_datefield_broken] => false
[receiver] => false
[sender] => false
[mms_max_size] => 0
[mms_max_height] => 0
[mms_max_width] => 0
[built_in_recorder] => false
[built_in_camera] => false
[mms_jpeg_baseline] => false
[mms_jpeg_progressive] => false
[mms_gif_static] => false
[mms_gif_animated] => false
[mms_png] => false
[mms_bmp] => false
[mms_wbmp] => false
[mms_amr] => false
[mms_wav] => false
[mms_midi_monophonic] => false
[mms_midi_polyphonic] => false
[mms_midi_polyphonic_voices] => 0
[mms_spmidi] => false
[mms_mmf] => false
[mms_mp3] => false
[mms_evrc] => false
[mms_qcelp] => false
[mms_ota_bitmap] => false
[mms_nokia_wallpaper] => false
[mms_nokia_operatorlogo] => false
[mms_nokia_3dscreensaver] => false
[mms_nokia_ringingtone] => false
[mms_rmf] => false
[mms_xmf] => false
[mms_symbian_install] => false
[mms_jar] => false
[mms_jad] => false
[mms_vcard] => false
[mms_vcalendar] => false
[mms_wml] => false
[mms_wbxml] => false
[mms_wmlc] => false
[mms_video] => false
[mms_mp4] => false
[mms_3gpp] => false
[mms_3gpp2] => false
[mms_max_frame_rate] => 0
[nokiaring] => false
[picturemessage] => false
[operatorlogo] => false
[largeoperatorlogo] => false
[callericon] => false
[nokiavcard] => false
[nokiavcal] => false
[sckl_ringtone] => false
[sckl_operatorlogo] => false
[sckl_groupgraphic] => false
[sckl_vcard] => false
[sckl_vcalendar] => false
[text_imelody] => false
[ems] => false
[ems_variablesizedpictures] => false
[ems_imelody] => false
[ems_odi] => false
[ems_upi] => false
[ems_version] => 0
[siemens_ota] => false
[siemens_logo_width] => 101
[siemens_logo_height] => 29
[siemens_screensaver_width] => 101
[siemens_screensaver_height] => 50
[gprtf] => false
[sagem_v1] => false
[sagem_v2] => false
[panasonic] => false
[sms_enabled] => false
[wav] => false
[mmf] => false
[smf] => false
[mld] => false
[midi_monophonic] => false
[midi_polyphonic] => false
[sp_midi] => false
[rmf] => false
[xmf] => false
[compactmidi] => false
[digiplug] => false
[nokia_ringtone] => false
[imelody] => false
[au] => false
[amr] => false
[awb] => false
[aac] => false
[mp3] => false
[voices] => 1
[qcelp] => false
[evrc] => false
[flash_lite_version] => 1_1
[fl_wallpaper] => false
[fl_screensaver] => false
[fl_standalone] => false
[fl_browser] => false
[fl_sub_lcd] => false
[full_flash_support] => false
[css_supports_width_as_percentage] => true
[css_border_image] => none
[css_rounded_corners] => none
[css_gradient] => none
[css_spriting] => false
[css_gradient_linear] => none
[is_transcoder] => false
[transcoder_ua_header] => user-agent
[rss_support] => false
[pdf_support] => false
[progressive_download] => true
[playback_vcodec_h263_0] => -1
[playback_vcodec_h263_3] => -1
[playback_vcodec_mpeg4_sp] => -1
[playback_vcodec_mpeg4_asp] => -1
[playback_vcodec_h264_bp] => 1
[playback_real_media] => none
[playback_3gpp] => true
[playback_3g2] => false
[playback_mp4] => false
[playback_mov] => false
[playback_acodec_amr] => nb
[playback_acodec_aac] => lc
[playback_df_size_limit] => 0
[playback_directdownload_size_limit] => 0
[playback_inline_size_limit] => 0
[playback_oma_size_limit] => 0
[playback_acodec_qcelp] => false
[playback_wmv] => none
[hinted_progressive_download] => false
[html_preferred_dtd] => xhtml_mp1
[viewport_supported] => false
[viewport_width] =>
[viewport_userscalable] =>
[viewport_initial_scale] =>
[viewport_maximum_scale] =>
[viewport_minimum_scale] =>
[mobileoptimized] => false
[handheldfriendly] => false
[canvas_support] => none
[image_inlining] => false
[is_smarttv] => false
[is_console] => false
[nfc_support] => false
[ux_full_desktop] => false
[jqm_grade] => none
[is_sencha_touch_ok] => false
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Zsxsoft<br /><small>1.3</small><br /></td><td>DoCoMo 2.0</td><td><i class="material-icons">close</i></td><td> </td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-5d43e024-b46c-44f6-8914-529b05569bc2">Detail</a>
<!-- Modal Structure -->
<div id="modal-5d43e024-b46c-44f6-8914-529b05569bc2" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Zsxsoft result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Array
(
[link] => http://www.nttdocomo.com/
[title] => DoCoMo 2.0
[code] => null
[version] => 2.0
[name] => DoCoMo
[image] => img/16/browser/null.png
)
[os] => Array
(
[link] =>
[name] =>
[version] =>
[code] => null
[x64] =>
[title] =>
[type] => os
[dir] => os
[image] => img/16/os/null.png
)
[device] => Array
(
[link] => #
[title] => Unknown
[code] => null
[dir] => browser
[type] => os
[image] => img/16/browser/null.png
)
[platform] => Array
(
[link] => #
[title] => Unknown
[code] => null
[dir] => browser
[type] => os
[image] => img/16/browser/null.png
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr></table>
</div>
<div class="section">
<h1 class="header center orange-text">About this comparison</h1>
<div class="row center">
<h5 class="header light">
The primary goal of this project is simple<br />
I wanted to know which user agent parser is the most accurate in each part - device detection, bot detection and so on...<br />
<br />
The secondary goal is to provide a source for all user agent parsers to improve their detection based on this results.<br />
<br />
You can also improve this further, by suggesting ideas at <a href="https://github.com/ThaDafinser/UserAgentParserComparison">ThaDafinser/UserAgentParserComparison</a><br />
<br />
The comparison is based on the abstraction by <a href="https://github.com/ThaDafinser/UserAgentParser">ThaDafinser/UserAgentParser</a>
</h5>
</div>
</div>
<div class="card">
<div class="card-content">
Comparison created <i>2016-05-10 08:01:58</i> | by
<a href="https://github.com/ThaDafinser">ThaDafinser</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/list.js/1.2.0/list.min.js"></script>
<script>
$(document).ready(function(){
// the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered
$('.modal-trigger').leanModal();
});
</script>
</body>
</html> |
html/123456069908.html | GoC-Spending/data-corporations |
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca -->
<head>
<!-- Title begins / Début du titre -->
<title>
Bousquet Technologies Inc. -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492270485541&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=6638&V_SEARCH.docsStart=6637&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=6636&V_DOCUMENT.docRank=6637&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492270504317&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=208040190000&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=6638&V_DOCUMENT.docRank=6639&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492270504317&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=123456040902&profileId=&key.newSearchLabel=">Next Company</a></li>
</ul>
</div>
<details>
<summary>Third-Party Information Liability Disclaimer</summary>
<p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p>
</details>
<h2>
Bousquet Technologies Inc.
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>Bousquet Technologies Inc.</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.bousquet.ca"
target="_blank" title="Website URL">http://www.bousquet.ca</a></p>
<p><a href="mailto:bousquet@bousquet.ca" title="bousquet@bousquet.ca">bousquet@bousquet.ca</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
2121, rue Nobel<br/>
SAINTE-JULIE,
Quebec<br/>
J3E 1Z9
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
2121, rue Nobel<br/>
SAINTE-JULIE,
Quebec<br/>
J3E 1Z9
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(514) 874-9050
</p>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(800) 363-9197</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(450) 649-8756</p>
</div>
<div class="col-md-3 mrgn-tp-md">
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
<h2 class="wb-inv">Company Profile</h2>
<br> manufacturer of heating and ventilation equipments for industrial and commercial applications<br>
</div>
</div>
<!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> -->
<div class="wb-tabs ignore-session">
<div class="tabpanels">
<details id="details-panel1">
<summary>
Full profile
</summary>
<!-- Tab 1 -->
<h2 class="wb-invisible">
Full profile
</h2>
<!-- Contact Information -->
<h3 class="page-header">
Contact information
</h3>
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
François
Martin
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
General Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(514) 874-9050
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Ext:
</strong>
</div>
<div class="col-md-7">
226
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
fmartin@bousquet.ca
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
1946
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
Yes
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
333416 - Heating Equipment and Commercial Refrigeration Equipment Manufacturing
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Manufacturer / Processor / Producer
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Total Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$5,000,000 to $9,999,999
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Export Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$200,000 to $499,999
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
50
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
DIRECT GAS-FIRED MAKE-UP AIR HEATER <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
A make-up air unit is a system designed to compensate the air
<br>
exhausted by one or more exhaust fans. It may also be utilised
<br>
to compensate air used in industrial processing and replace
<br>
combustion air for proper functioning of other heaters.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
HEATERS, DIRECT GAS FIRED MAKE-UP AIR HEATERS <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
FSC Code:
</strong>
</div>
<div class="col-md-9">
4520-Space Heating Equipment and Domestic Water Heaters
<br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<h3 class="page-header">
Market profile
</h3>
<section class="container-fluid">
<h4>
Industry sector market interests:
</h4>
<ul>
<li>Manufacturing</li>
</ul>
<h4>
Geographic markets:
</h4>
<h5>
Actively pursuing:
</h5>
<ul>
<li>United States</li>
<li>Connecticut</li>
<li>Maine</li>
<li>Massachusetts</li>
<li>New Hampshire</li>
<li>New Jersey</li>
<li>New York</li>
<li>Pennsylvania</li>
<li>Rhode Island</li>
<li>Vermont</li>
</ul>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
François
Martin
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
General Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(514) 874-9050
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Ext:
</strong>
</div>
<div class="col-md-7">
226
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
fmartin@bousquet.ca
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
1946
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
Yes
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
333416 - Heating Equipment and Commercial Refrigeration Equipment Manufacturing
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Manufacturer / Processor / Producer
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Total Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$5,000,000 to $9,999,999
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Export Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$200,000 to $499,999
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
50
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
DIRECT GAS-FIRED MAKE-UP AIR HEATER <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
A make-up air unit is a system designed to compensate the air
<br>
exhausted by one or more exhaust fans. It may also be utilised
<br>
to compensate air used in industrial processing and replace
<br>
combustion air for proper functioning of other heaters.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
HEATERS, DIRECT GAS FIRED MAKE-UP AIR HEATERS <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
FSC Code:
</strong>
</div>
<div class="col-md-9">
4520-Space Heating Equipment and Domestic Water Heaters
<br>
</div>
</div>
</section>
</details>
<details id="details-panel6">
<summary>
Market
</summary>
<h2 class="wb-invisible">
Market profile
</h2>
<section class="container-fluid">
<h4>
Industry sector market interests:
</h4>
<ul>
<li>Manufacturing</li>
</ul>
<h4>
Geographic markets:
</h4>
<h5>
Actively pursuing:
</h5>
<ul>
<li>United States</li>
<li>Connecticut</li>
<li>Maine</li>
<li>Massachusetts</li>
<li>New Hampshire</li>
<li>New Jersey</li>
<li>New York</li>
<li>Pennsylvania</li>
<li>Rhode Island</li>
<li>Vermont</li>
</ul>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2016-06-08
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
|
clean/Linux-x86_64-4.10.2-2.0.6/released/8.11.1/dpdgraph/0.5.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>dpdgraph: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.1 / dpdgraph - 0.5</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
dpdgraph
<small>
0.5
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-26 16:52:27 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-26 16:52:27 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.10.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.2 Official release 4.10.2
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "yves.bertot@inria.fr"
license: "LGPL 2.1"
homepage: "https://github.com/karmaki/coq-dpdgraph"
build: [
["./configure"]
["echo" "%{jobs}%" "jobs for the linter"]
[make]
]
install: [make "install" "BINDIR=%{bin}%"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
"ocamlgraph"
]
authors: [ "Anne Pacalet" "Yves Bertot"]
tags: [
"logpath:dpdgraph"
]
synopsis: "Compute dependencies between Coq objects (definitions, theorems) and produce graphs"
url {
src:
"https://github.com/ybertot/coq-dpdgraph/archive/coq-dpdgraph-0.5-rc2.zip"
checksum: "md5=d9614264c394080c2734638befaf0483"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-dpdgraph.0.5 coq.8.11.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.1).
The following dependencies couldn't be met:
- coq-dpdgraph -> coq < 8.6~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-dpdgraph.0.5</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
html/101807920000.html | GoC-Spending/data-corporations |
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca -->
<head>
<!-- Title begins / Début du titre -->
<title>
Armstrong Fluid Technology -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492240164842&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=3739&V_SEARCH.docsStart=3738&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/updt.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=3737&V_DOCUMENT.docRank=3738&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492240185218&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567037629&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=3739&V_DOCUMENT.docRank=3740&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492240185218&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=100254500000&profileId=&key.newSearchLabel=">Next Company</a></li>
</ul>
</div>
<details>
<summary>Third-Party Information Liability Disclaimer</summary>
<p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p>
</details>
<h2>
S.A. Armstrong Limited
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal Name:</h2>
<p>S.A. Armstrong Limited</p>
<h2 class="h5 mrgn-bttm-0">Operating Name:</h2>
<p>Armstrong Fluid Technology</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.armstrongfluidtechnology.com"
target="_blank" title="Website URL">http://www.armstrongfluidtechnology.com</a></p>
<p><a href="mailto:info@armstrongfluidtechnology.com" title="info@armstrongfluidtechnology.com">info@armstrongfluidtechnology.com</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
23 Bertrand Ave<br/>
SCARBOROUGH,
Ontario<br/>
M1L 2P3
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
23 Bertrand Ave<br/>
SCARBOROUGH,
Ontario<br/>
M1L 2P3
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(416) 755-2291
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(416) 759-9101</p>
</div>
<div class="col-md-3 mrgn-tp-md">
<h2 class="wb-inv">Logo</h2>
<img class="img-responsive text-left" src="https://www.ic.gc.ca/app/ccc/srch/media?estblmntNo=101807920000&graphFileName=Armstrong_Logo.blkwh&applicationCode=AP&lang=eng" alt="Logo" />
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
<h2 class="wb-inv">Company Profile</h2>
<br> Armstrong is a leading global supplier of quality HVAC and Fluid Flow equipment for residential, commercial and industrial applications. Established in 1934, the company maintains eight manufacturing facilities on three continents.
<br>
<br>Association Memberships include:
<br>American National Standards Institute [ANSI]
<br>American Society of Heating, Refrigerating & Air-Conditioning Engineers [ASHRAE]
<br>American Society of Mechanical Engineers [ASME]
<br>American Society of Plumbing Engineers [ASPE]
<br>British Automatic Fire Sprinkler Association[BAFSA]
<br>British Pump Manufacturers Association [BPMA]
<br>Building Owners & Managers Association (BOMA) of Canada [BOMA]
<br>Constructing Excellence in the Built Environment [CEBE]
<br>Canadian Institute of Plumbing & Heating [CIPH]
<br>Canadian Manufacturing Association [CME]
<br>Electrical Apparatus Service Association [EASA]
<br>Hydraulic Institute [HI]
<br>Heating, Refrigeration & Air Conditioning Institute of Canada [HRAI]
<br>International Association of Plumbing & Mechanical Operations [IAPMO]
<br>Mechanical Contractors Association of Canada [MCAC]
<br>National Fire Protection Association [NFPA]
<br>National Association of Plumbing, Heating, Cooling Contractors [PHCC]
<br>Society of Fire Protection Engineers [SFPE]
<br>U.S. Green Building Council [USGBC]
<br>
<br>
<br><br>
</div>
</div>
<!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> -->
<div class="wb-tabs ignore-session">
<div class="tabpanels">
<details id="details-panel1">
<summary>
Full profile
</summary>
<!-- Tab 1 -->
<h2 class="wb-invisible">
Full profile
</h2>
<!-- Contact Information -->
<h3 class="page-header">
Contact information
</h3>
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Brent
Ross
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Director
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Customer Service.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(416) 755-2291
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(416) 759-9101
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
bross@armlink.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Paul
Scarafile
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Director
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Domestic Sales & Marketing.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(416) 755-2291
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(416) 759-9101
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
pscarafile@armstrongfluidtechnology.com
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
1888
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
Yes
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
333910 - Pump and Compressor Manufacturing
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
417230 - Industrial Machinery, Equipment and Supplies Wholesaler-Distributors<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Manufacturer / Processor / Producer
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Total Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$10,000,000 to $24,999,999
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Export Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$500,000 to $999,999
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
75
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
PUMP, CENTRIF, MULTI-STAGE, DOUBLE SUCTION <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
PUMP, CENTRIF, 1 STAGE-1 SUCTION, CLOSE CPLD <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
PUMP, CENTRIF TYPE, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
PUMP, SEWAGE TYPE, POWER <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
PUMP, FIRE FIGHTING, POWER, PORTABLE <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Intergrated Plant Packaged Cooling System<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
The Armstrong chilled water line of Integrated Plant Package (IPP-CHW) brings customers today's most space, energy and environmentally efficient solution for the 150 to 1080 ton at 60 Hz or 500 to 3600 kW at 50 Hz range.
<br>
<br>
Available for exterior installation with full enclosure or mechanical room installation, the IPP-CHW solution brings about a new way of constructing a facility.
<br>
<br>
The IPP-CHW solution is a pre-fabricated factory-built solution, optimized for quick installation with future service needs in mind.
<br>
<br>
<br>
<br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<h3 class="page-header">
Market profile
</h3>
<section class="container-fluid">
<h4>
Alliances:
</h4>
<ul>
<li>Sales/Marketing</li>
<li>Technology</li>
</ul>
<h4>
Geographic markets:
</h4>
<h5>
Export experience:
</h5>
<ul>
<li>Algeria</li>
<li>Bangladesh</li>
<li>Barbados</li>
<li>Bermuda</li>
<li>Brazil</li>
<li>China</li>
<li>Costa Rica</li>
<li>Cuba</li>
<li>Dominican Republic</li>
<li>Egypt</li>
<li>India</li>
<li>Indonesia</li>
<li>Iran, Islamic Republic of</li>
<li>Iraq</li>
<li>Israel</li>
<li>Jamaica</li>
<li>Japan</li>
<li>Jordan</li>
<li>Korea, Democratic People's Republic of</li>
<li>Korea, Republic of</li>
<li>Kuwait</li>
<li>Lebanon</li>
<li>Mexico</li>
<li>Pakistan</li>
<li>Philippines</li>
<li>Puerto Rico</li>
<li>Saudi Arabia</li>
<li>Singapore</li>
<li>Sri Lanka</li>
<li>Taiwan</li>
<li>Thailand</li>
<li>United Arab Emirates</li>
<li>United Kingdom</li>
<li>United States</li>
</ul>
<h5>
Actively pursuing:
</h5>
<ul>
<li>Afghanistan</li>
<li>Angola</li>
<li>Argentina</li>
<li>Australia</li>
<li>Benin</li>
<li>Bhutan</li>
<li>Bolivia, Plurinational State of</li>
<li>Botswana</li>
<li>Brunei Darussalam</li>
<li>Burkina Faso</li>
<li>Burundi</li>
<li>Cambodia</li>
<li>Cameroon</li>
<li>Cape Verde</li>
<li>Central African Republic</li>
<li>Chad</li>
<li>Chile</li>
<li>Colombia</li>
<li>Congo</li>
<li>Congo, The Democratic Republic of the</li>
<li>Côte d'Ivoire</li>
<li>Djibouti</li>
<li>Ecuador</li>
<li>El Salvador</li>
<li>Equatorial Guinea</li>
<li>Ethiopia</li>
<li>Gabon</li>
<li>Gambia</li>
<li>Ghana</li>
<li>Greece</li>
<li>Guatemala</li>
<li>Guinea</li>
<li>Guinea-Bissau</li>
<li>Haiti</li>
<li>Honduras</li>
<li>Hong Kong</li>
<li>Kazakhstan</li>
<li>Kenya</li>
<li>Kyrgyzstan</li>
<li>Lao People's Democratic Republic</li>
<li>Lesotho</li>
<li>Liberia</li>
<li>Libyan Arab Jamahiriya</li>
<li>Macao</li>
<li>Madagascar</li>
<li>Malawi</li>
<li>Malaysia</li>
<li>Mali</li>
<li>Mauritania</li>
<li>Mauritius</li>
<li>Mongolia</li>
<li>Morocco</li>
<li>Mozambique</li>
<li>Namibia</li>
<li>Nepal</li>
<li>Nicaragua</li>
<li>Niger</li>
<li>Nigeria</li>
<li>Panama</li>
<li>Paraguay</li>
<li>Peru</li>
<li>Réunion</li>
<li>Russian Federation</li>
<li>Rwanda</li>
<li>Senegal</li>
<li>Seychelles</li>
<li>Sierra Leone</li>
<li>Somalia</li>
<li>South Africa</li>
<li>Spain</li>
<li>Sudan</li>
<li>Swaziland</li>
<li>Tajikistan</li>
<li>Tanzania, United Republic of</li>
<li>Togo</li>
<li>Tunisia</li>
<li>Turkmenistan</li>
<li>Uganda</li>
<li>Uruguay</li>
<li>Uzbekistan</li>
<li>Venezuela, Bolivarian Republic of</li>
<li>Viet Nam</li>
<li>Western Sahara</li>
<li>Zambia</li>
<li>Zimbabwe</li>
</ul>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Brent
Ross
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Director
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Customer Service.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(416) 755-2291
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(416) 759-9101
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
bross@armlink.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Paul
Scarafile
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Director
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Domestic Sales & Marketing.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(416) 755-2291
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(416) 759-9101
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
pscarafile@armstrongfluidtechnology.com
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
1888
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
Yes
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
333910 - Pump and Compressor Manufacturing
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
417230 - Industrial Machinery, Equipment and Supplies Wholesaler-Distributors<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Manufacturer / Processor / Producer
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Total Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$10,000,000 to $24,999,999
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Export Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$500,000 to $999,999
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
75
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
PUMP, CENTRIF, MULTI-STAGE, DOUBLE SUCTION <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
PUMP, CENTRIF, 1 STAGE-1 SUCTION, CLOSE CPLD <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
PUMP, CENTRIF TYPE, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
PUMP, SEWAGE TYPE, POWER <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
PUMP, FIRE FIGHTING, POWER, PORTABLE <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Intergrated Plant Packaged Cooling System<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
The Armstrong chilled water line of Integrated Plant Package (IPP-CHW) brings customers today's most space, energy and environmentally efficient solution for the 150 to 1080 ton at 60 Hz or 500 to 3600 kW at 50 Hz range.
<br>
<br>
Available for exterior installation with full enclosure or mechanical room installation, the IPP-CHW solution brings about a new way of constructing a facility.
<br>
<br>
The IPP-CHW solution is a pre-fabricated factory-built solution, optimized for quick installation with future service needs in mind.
<br>
<br>
<br>
<br>
</div>
</div>
</section>
</details>
<details id="details-panel6">
<summary>
Market
</summary>
<h2 class="wb-invisible">
Market profile
</h2>
<section class="container-fluid">
<h4>
Alliances:
</h4>
<ul>
<li>Sales/Marketing</li>
<li>Technology</li>
</ul>
<h4>
Geographic markets:
</h4>
<h5>
Export experience:
</h5>
<ul>
<li>Algeria</li>
<li>Bangladesh</li>
<li>Barbados</li>
<li>Bermuda</li>
<li>Brazil</li>
<li>China</li>
<li>Costa Rica</li>
<li>Cuba</li>
<li>Dominican Republic</li>
<li>Egypt</li>
<li>India</li>
<li>Indonesia</li>
<li>Iran, Islamic Republic of</li>
<li>Iraq</li>
<li>Israel</li>
<li>Jamaica</li>
<li>Japan</li>
<li>Jordan</li>
<li>Korea, Democratic People's Republic of</li>
<li>Korea, Republic of</li>
<li>Kuwait</li>
<li>Lebanon</li>
<li>Mexico</li>
<li>Pakistan</li>
<li>Philippines</li>
<li>Puerto Rico</li>
<li>Saudi Arabia</li>
<li>Singapore</li>
<li>Sri Lanka</li>
<li>Taiwan</li>
<li>Thailand</li>
<li>United Arab Emirates</li>
<li>United Kingdom</li>
<li>United States</li>
</ul>
<h5>
Actively pursuing:
</h5>
<ul>
<li>Afghanistan</li>
<li>Angola</li>
<li>Argentina</li>
<li>Australia</li>
<li>Benin</li>
<li>Bhutan</li>
<li>Bolivia, Plurinational State of</li>
<li>Botswana</li>
<li>Brunei Darussalam</li>
<li>Burkina Faso</li>
<li>Burundi</li>
<li>Cambodia</li>
<li>Cameroon</li>
<li>Cape Verde</li>
<li>Central African Republic</li>
<li>Chad</li>
<li>Chile</li>
<li>Colombia</li>
<li>Congo</li>
<li>Congo, The Democratic Republic of the</li>
<li>Côte d'Ivoire</li>
<li>Djibouti</li>
<li>Ecuador</li>
<li>El Salvador</li>
<li>Equatorial Guinea</li>
<li>Ethiopia</li>
<li>Gabon</li>
<li>Gambia</li>
<li>Ghana</li>
<li>Greece</li>
<li>Guatemala</li>
<li>Guinea</li>
<li>Guinea-Bissau</li>
<li>Haiti</li>
<li>Honduras</li>
<li>Hong Kong</li>
<li>Kazakhstan</li>
<li>Kenya</li>
<li>Kyrgyzstan</li>
<li>Lao People's Democratic Republic</li>
<li>Lesotho</li>
<li>Liberia</li>
<li>Libyan Arab Jamahiriya</li>
<li>Macao</li>
<li>Madagascar</li>
<li>Malawi</li>
<li>Malaysia</li>
<li>Mali</li>
<li>Mauritania</li>
<li>Mauritius</li>
<li>Mongolia</li>
<li>Morocco</li>
<li>Mozambique</li>
<li>Namibia</li>
<li>Nepal</li>
<li>Nicaragua</li>
<li>Niger</li>
<li>Nigeria</li>
<li>Panama</li>
<li>Paraguay</li>
<li>Peru</li>
<li>Réunion</li>
<li>Russian Federation</li>
<li>Rwanda</li>
<li>Senegal</li>
<li>Seychelles</li>
<li>Sierra Leone</li>
<li>Somalia</li>
<li>South Africa</li>
<li>Spain</li>
<li>Sudan</li>
<li>Swaziland</li>
<li>Tajikistan</li>
<li>Tanzania, United Republic of</li>
<li>Togo</li>
<li>Tunisia</li>
<li>Turkmenistan</li>
<li>Uganda</li>
<li>Uruguay</li>
<li>Uzbekistan</li>
<li>Venezuela, Bolivarian Republic of</li>
<li>Viet Nam</li>
<li>Western Sahara</li>
<li>Zambia</li>
<li>Zimbabwe</li>
</ul>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2017-03-13
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
|
html/298958360000.html | GoC-Spending/data-corporations |
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca -->
<head>
<!-- Title begins / Début du titre -->
<title>
Quality Fabricating & Supply LP -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492312970426&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=37972&V_SEARCH.docsStart=37971&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=37970&V_DOCUMENT.docRank=37971&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492313002365&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567162427&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=37972&V_DOCUMENT.docRank=37973&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492313002365&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567010645&profileId=&key.newSearchLabel=">Next Company</a></li>
</ul>
</div>
<details>
<summary>Third-Party Information Liability Disclaimer</summary>
<p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p>
</details>
<h2>
Quality Fabricating & Supply LP
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>Quality Fabricating & Supply LP</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.supremegroup.com"
target="_blank" title="Website URL">http://www.supremegroup.com</a></p>
<p><a href="mailto:quality@supremegroup.com" title="quality@supremegroup.com">quality@supremegroup.com</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
3751-76 Ave NW<br/>
EDMONTON,
Alberta<br/>
T6B 2S8
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
3751-76 Ave NW<br/>
EDMONTON,
Alberta<br/>
T6B 2S8
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(780) 468-6762
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(780) 468-0995</p>
</div>
<div class="col-md-3 mrgn-tp-md">
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
<h2 class="wb-inv">Company Profile</h2>
<br> Manufacturer of Structural Steel products including design
<br>engineering, detail fabrication drawings, fabrication, shop and
<br>field assembly, inspection and erection.<br>
</div>
</div>
<!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> -->
<div class="wb-tabs ignore-session">
<div class="tabpanels">
<details id="details-panel1">
<summary>
Full profile
</summary>
<!-- Tab 1 -->
<h2 class="wb-invisible">
Full profile
</h2>
<!-- Contact Information -->
<h3 class="page-header">
Contact information
</h3>
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Bob
Angerman
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Vice President
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 468-6762
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 468-0995
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
bob.angerman@supremesteel.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
GINO
ALESSANDRINI
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
President
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 468-6762
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 468-0995
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
qltyfab@telusplanet.net
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
1975
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
Yes
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
333130 - Mining and Oil and Gas Field Machinery Manufacturing
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Manufacturer / Processor / Producer
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Total Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$200,000 to $499,999
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Export Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$1 to $99,999
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
30
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
OIL/PETROLEUM FIELD PROD MACHY/EQUIP, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
DERRICK CRANE, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
MINING MACHY & EQUIPMENT, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
CONVEYOR/CONVEYING SYSTEM NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
SHAPES, STRUCT NES, STEEL, FABRICATED <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
TOWERS, TRANSMISSION, PREFAB INCL SECTIONS <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
TOWERS, TRANSMISSION, PREFAB PARTS OF, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
PREFABRICATED STRUCT NES PARTS OF, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
WELL DRILLING MACHINERY, NATURAL GAS <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
DRILLING MACHINERY, OIL WELL, ROTARY TYPE <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
STRUCTURAL/ARCHITECTURAL METAL PRODUCTS, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
METAL FABRICATION NES, CUSTOM <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
TANKS, SEPTIC, METAL <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
TANKS, STORAGE, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
SHIPPING & DISTRIB CONTAINERS NES, METAL <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
BINS & HOPPERS METAL, MAT HAND EXC SHIP TYPE <br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<h3 class="page-header">
Market profile
</h3>
<section class="container-fluid">
<h4>
Geographic markets:
</h4>
<h5>
Export experience:
</h5>
<ul>
<li>United States</li>
</ul>
<h5>
Actively pursuing:
</h5>
<ul>
<li>Algeria</li>
<li>Brazil</li>
<li>Chile</li>
<li>China</li>
<li>Italy</li>
<li>Japan</li>
<li>Peru</li>
<li>United Kingdom</li>
<li>Alaska</li>
<li>Montana</li>
<li>Oregon</li>
<li>Texas</li>
<li>Washington</li>
</ul>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Bob
Angerman
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Vice President
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 468-6762
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 468-0995
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
bob.angerman@supremesteel.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
GINO
ALESSANDRINI
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
President
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 468-6762
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 468-0995
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
qltyfab@telusplanet.net
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
1975
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
Yes
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
333130 - Mining and Oil and Gas Field Machinery Manufacturing
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Manufacturer / Processor / Producer
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Total Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$200,000 to $499,999
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Export Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$1 to $99,999
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Number of Employees:
</strong>
</div>
<div class="col-md-7">
30
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
OIL/PETROLEUM FIELD PROD MACHY/EQUIP, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
DERRICK CRANE, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
MINING MACHY & EQUIPMENT, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
CONVEYOR/CONVEYING SYSTEM NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
SHAPES, STRUCT NES, STEEL, FABRICATED <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
TOWERS, TRANSMISSION, PREFAB INCL SECTIONS <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
TOWERS, TRANSMISSION, PREFAB PARTS OF, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
PREFABRICATED STRUCT NES PARTS OF, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
WELL DRILLING MACHINERY, NATURAL GAS <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
DRILLING MACHINERY, OIL WELL, ROTARY TYPE <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
STRUCTURAL/ARCHITECTURAL METAL PRODUCTS, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
METAL FABRICATION NES, CUSTOM <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
TANKS, SEPTIC, METAL <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
TANKS, STORAGE, NES <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
SHIPPING & DISTRIB CONTAINERS NES, METAL <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
BINS & HOPPERS METAL, MAT HAND EXC SHIP TYPE <br>
</div>
</div>
</section>
</details>
<details id="details-panel6">
<summary>
Market
</summary>
<h2 class="wb-invisible">
Market profile
</h2>
<section class="container-fluid">
<h4>
Geographic markets:
</h4>
<h5>
Export experience:
</h5>
<ul>
<li>United States</li>
</ul>
<h5>
Actively pursuing:
</h5>
<ul>
<li>Algeria</li>
<li>Brazil</li>
<li>Chile</li>
<li>China</li>
<li>Italy</li>
<li>Japan</li>
<li>Peru</li>
<li>United Kingdom</li>
<li>Alaska</li>
<li>Montana</li>
<li>Oregon</li>
<li>Texas</li>
<li>Washington</li>
</ul>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2015-05-04
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.12.0/markov/8.6.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>markov: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.12.0 / markov - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
markov
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-02 09:40:27 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-02 09:40:27 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.12.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/markov"
license: "GNU Lesser Public License"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Markov"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [
"keyword: probability"
"keyword: Markov"
"keyword: Lebesgue integral"
"keyword: sigma algebras"
"keyword: measurability"
"keyword: Borel"
"category: Mathematics/Real Calculus and Topology"
"date: 2008-01-5"
]
authors: [ "Robert Kam <rkam2001@hotmail.com> [none]" ]
bug-reports: "https://github.com/coq-contribs/markov/issues"
dev-repo: "git+https://github.com/coq-contribs/markov.git"
synopsis: "Markov's inequality"
description:
"A proof of Markov's inequality, restricted to probability spaces, based on the Wikipedia proof. Defines Lebesgue integral and associated concepts such as measurability, measure functions, and sigma algebras. Extended real numbers did not need to be defined because we are working in a probability space with measure 1. Nonconstructive; uses classic, Extensionality_Ensembles, axiomatized real numbers from Coq standard library."
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/markov/archive/v8.6.0.tar.gz"
checksum: "md5=75ae111f20f46ac736393998e2bd6cad"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-markov.8.6.0 coq.8.12.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.12.0).
The following dependencies couldn't be met:
- coq-markov -> coq < 8.7~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-markov.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
Contact.html | eclaird/ericksondistribution | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Erickson distribution</title>
<!-- Bootstrap Core CSS -->
<link href="css/subbootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/sb-admin.css" rel="stylesheet">
<!-- Morris Charts CSS -->
<link href="css/plugins/morris.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="wrapper-landing">
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="Ericksonhome.html"><img style="height: 30px" src="img/erickson.gif" class="img-responsive" alt="Erickson Distribution"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a class="page-scroll navfont" href="InteriorRailings.html">Interior Railings</a>
</li>
<li>
<a class="page-scroll navfont" href="ExteriorRailings.html">Exterior Railings</a>
</li>
<li>
<a class="page-scroll navfont" href="ColumnsPosts.html">Columns & Posts</a>
</li>
<li>
<a class="page-scroll navfont" href="CapTreads.html">Cap Treads</a>
</li>
<li>
<a class="page-scroll navfont" href="Millwork.html">Millwork</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
</nav>
<div id="page-wrapper">
<div class="container-fluid">
<!-- Page Heading -->
<div class="row">
<div class="col-lg-12" style="padding-top:4%">
<div class="container">
<div class="jumbotron">
<h1 align="center" class="large-heading heading">Contact Us</h1>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="container">
<div class="col-lg-3" style="text-align:center">
<h3>Location</h3>
<p>108 Birch Ave <br />
Kitchener, Ontario<br />
N2H 4W8</p>
<h3>Phone</h3>
<p>Toll Free: 877.773.7722<br />
Phone: 519.894.6977<br />
Fax: 519.894.7241</p>
<h3>Email</h3>
<p>info@ericksondistribution.com</p>
</div>
<div class="col-lg-9">
<img src="img/Googlemap.JPG" width="100%">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="container">
<div class="sm-well ericksonredbkgd"><h2 class="second-heading heading" style="color: #fff; padding: 2%; text-align:center;">Where to purchase</h2></div>
</div></div>
</div>
<div class="row" style="margin: 2%;">
<div class="col-lg-12">
<div class="container">
<div class="col-sm-1"></div>
<div class="col-sm-2"><img src="img/timbr.jpg" class="img-responsive" style="padding-left:1%; padding-right:1%;"></div>
<div class="col-sm-2"><img src="img/homehardware.jpg" class="img-responsive" style="padding-left:1%; padding-right:1%;"></div>
<div class="col-sm-2"><img src="img/rona.jpg" class="img-responsive" style="padding-left:1%; padding-right:1%;"></div>
<div class="col-sm-2"><img src="img/castle.jpg" class="img-responsive" style="padding-left:1%; padding-right:1%;"></div>
<div class="col-sm-2"> <img src="img/turksta.jpg" class="img-responsive" style="padding-left:1%; padding-right:1%;"></div>
<div class="col-sm-1"></div>
</div></div>
</div>
</div>
<!-- /.container-fluid -->
</div>
<!-- /#page-wrapper -->
</div>
<!-- /#wrapper -->
<!--footer -->
<footer class="footer container-fluid bg-4">
<div class="row">
<div class="col-lg-12">
<div class="col-lg-6 col-md-6 col-sm-6">
<p><span style="font-weight: bold; font-size:12pt;">Erickson distribution</span><br>
519.894.6977<br>
info@ericksondistribution.com</p>
</div>
<div class="col-lg-6 col-md-6 col-sm-6">
<span style="float:right">
<a href="tel:+15198946977">
<span class="fa-stack fa-lg icon">
<i class="fa fa-circle-thin fa-stack-2x"></i>
<i class="fa fa-phone fa-stack-1x"></i></span></a>
<a href="mailto:info@ericksondistribution.com">
<span class="fa-stack fa-lg icon">
<i class="fa fa-circle-thin fa-stack-2x"></i>
<i class="fa fa-envelope-o fa-stack-1x"></i>
</span>
</a>
<a href="https://www.facebook.com/pages/Erickson-Distribution/1004464839636343" target="_blank">
<span class="fa-stack fa-lg icon">
<i class="fa fa-circle-thin fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x"></i>
</span>
</a>
</span>
</div>
</div>
</div>
</footer>
<!-- /footer -->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Morris Charts JavaScript -->
<script src="js/plugins/morris/raphael.min.js"></script>
<script src="js/plugins/morris/morris.min.js"></script>
<script src="js/plugins/morris/morris-data.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.5.1/high-school-geometry/1.0.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>high-school-geometry: 8 m 26 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.1 / high-school-geometry - 1.0.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
high-school-geometry
<small>
1.0.0
<span class="label label-success">8 m 26 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-10-15 03:37:57 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-15 03:37:57 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.5.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
# opam file:
opam-version: "2.0"
maintainer: "thery@sophia.inria.fr"
homepage: "https://github.com/coq-community/HighSchoolGeometry/"
license: "LGPL 2"
build: [
["./configure.sh"]
[make "-j%{jobs}%"]
]
install: [make "install"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
]
tags: [
"keyword:geometry"
"keyword:teaching"
"keyword:high school"
"category:Mathematics/Geometry/General"
"date:2004-01"
"logpath:HighSchoolGeometry"
]
authors: [ "Frédérique Guilhot <Frederique.Guilhot@sophia.inria.fr>" ]
synopsis: "Geometry for French high-school"
description: """
This library is dedicated to high-shool geometry teaching.
The axiomatisation for affine euclidean space is in a non analytic setting."""
url {
src: "https://github.com/coq-community/HighSchoolGeometry/archive/v1.0.0.tar.gz"
checksum: "md5=cf03f84a71cee31d4fe870fa567cc3dd"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-high-school-geometry.1.0.0 coq.8.5.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-high-school-geometry.1.0.0 coq.8.5.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>8 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-high-school-geometry.1.0.0 coq.8.5.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>8 m 26 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 10 M</p>
<ul>
<li>235 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/exercice_morley.glob</code></li>
<li>214 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/metrique_triangle.glob</code></li>
<li>163 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/contact.glob</code></li>
<li>149 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/barycentre.glob</code></li>
<li>147 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/equations_droites.glob</code></li>
<li>142 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/angles_vecteurs.glob</code></li>
<li>139 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/exercice_morley.vo</code></li>
<li>139 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/operations_complexes.glob</code></li>
<li>133 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/contact.vo</code></li>
<li>131 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/barycentre.vo</code></li>
<li>124 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/cocyclicite.glob</code></li>
<li>124 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/reflexion_plane.glob</code></li>
<li>122 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/angles_droites.glob</code></li>
<li>120 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_inversion.glob</code></li>
<li>116 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/aire_signee.glob</code></li>
<li>116 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/inversion.vo</code></li>
<li>115 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/trigo.glob</code></li>
<li>112 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/parallelisme_concours.glob</code></li>
<li>111 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/exercice_espace.vo</code></li>
<li>109 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Plans_paralleles.vo</code></li>
<li>109 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/aire_signee.vo</code></li>
<li>108 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/parallelisme_concours.vo</code></li>
<li>107 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/affine_classiques.vo</code></li>
<li>107 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/applications_cocyclicite.glob</code></li>
<li>107 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/reflexion_plane.vo</code></li>
<li>106 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/dilatations.glob</code></li>
<li>105 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/metrique_triangle.vo</code></li>
<li>104 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/composee_transformations.glob</code></li>
<li>102 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/inversion.glob</code></li>
<li>100 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/operations_complexes.vo</code></li>
<li>100 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/angles_vecteurs.vo</code></li>
<li>99 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/trigo.vo</code></li>
<li>99 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/dilatations.vo</code></li>
<li>93 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/affine_classiques.glob</code></li>
<li>92 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Droite_plan_espace.vo</code></li>
<li>91 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/cocyclicite.vo</code></li>
<li>90 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/formes_complexes.vo</code></li>
<li>87 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/composee_reflexions.vo</code></li>
<li>86 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/transformations_contact.glob</code></li>
<li>84 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/milieu.vo</code></li>
<li>84 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_dilatations.glob</code></li>
<li>83 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/composee_transformations.vo</code></li>
<li>83 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/coplanarite.vo</code></li>
<li>83 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/equations_droites.vo</code></li>
<li>82 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/homoth_Euler.vo</code></li>
<li>82 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/angles_droites.vo</code></li>
<li>82 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_inversion.vo</code></li>
<li>81 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/applications_cocyclicite.vo</code></li>
<li>80 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/formes_complexes.glob</code></li>
<li>80 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/representant_unitaire.vo</code></li>
<li>79 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Plans_paralleles.glob</code></li>
<li>79 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/exercice_espace.glob</code></li>
<li>78 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/alignement.vo</code></li>
<li>78 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/vecteur.vo</code></li>
<li>77 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/composee_translation_rotation.vo</code></li>
<li>74 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/equations_cercles.glob</code></li>
<li>74 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/orthogonalite.vo</code></li>
<li>74 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/mediatrice.vo</code></li>
<li>73 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/orthocentre.vo</code></li>
<li>73 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/transformations_contact.vo</code></li>
<li>73 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Plan_espace.vo</code></li>
<li>72 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/euclidien_classiques.vo</code></li>
<li>72 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/rotation_plane.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Droite_plan_espace.glob</code></li>
<li>71 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/composee_dilatations.glob</code></li>
<li>71 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/similitudes_directes.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_similitudes.glob</code></li>
<li>69 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_dilatations.vo</code></li>
<li>69 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/composee_reflexions.glob</code></li>
<li>68 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_conjugaison.vo</code></li>
<li>68 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/homothetie_plane.vo</code></li>
<li>68 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Field_affine.vo</code></li>
<li>67 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/composee_translation_rotation.glob</code></li>
<li>65 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/distance_euclidienne.vo</code></li>
<li>65 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/composee_dilatations.vo</code></li>
<li>64 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complements_cercle.vo</code></li>
<li>64 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/rotation_plane.glob</code></li>
<li>62 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/mesure_algebrique.vo</code></li>
<li>62 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/puissance_cercle.vo</code></li>
<li>62 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/representant_unitaire.glob</code></li>
<li>62 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/repere_plan.vo</code></li>
<li>61 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/cercle.vo</code></li>
<li>60 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_similitudes.vo</code></li>
<li>60 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/similitudes_directes.glob</code></li>
<li>58 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Droite_espace.vo</code></li>
<li>58 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/repere_ortho_plan.vo</code></li>
<li>58 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_conjugaison.glob</code></li>
<li>58 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Plan_espace.glob</code></li>
<li>57 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Rutile.vo</code></li>
<li>57 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_transformations.vo</code></li>
<li>57 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/homoth_Euler.glob</code></li>
<li>56 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/isocele.vo</code></li>
<li>56 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/determinant.vo</code></li>
<li>56 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_analytique.vo</code></li>
<li>55 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes.vo</code></li>
<li>55 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/droite_Euler.vo</code></li>
<li>54 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/produit_scalaire.vo</code></li>
<li>54 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/equations_cercles.vo</code></li>
<li>52 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/orthogonalite_espace.vo</code></li>
<li>52 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_transformations.glob</code></li>
<li>51 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_analytique.glob</code></li>
<li>51 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/orthogonalite.glob</code></li>
<li>51 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/homothetie_plane.glob</code></li>
<li>48 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/mediatrice.glob</code></li>
<li>48 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/euclidien_classiques.glob</code></li>
<li>47 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_exercice.vo</code></li>
<li>47 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/projection_orthogonale.vo</code></li>
<li>44 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/milieu.glob</code></li>
<li>43 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/orthocentre.glob</code></li>
<li>39 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/determinant.glob</code></li>
<li>39 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/isocele.glob</code></li>
<li>36 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/alignement.glob</code></li>
<li>36 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/distance_euclidienne.glob</code></li>
<li>34 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/orthogonalite_espace.glob</code></li>
<li>34 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/vecteur.glob</code></li>
<li>34 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/produit_scalaire.glob</code></li>
<li>33 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/repere_plan.glob</code></li>
<li>32 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/coplanarite.glob</code></li>
<li>32 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/mesure_algebrique.glob</code></li>
<li>32 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes.glob</code></li>
<li>32 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complements_cercle.glob</code></li>
<li>31 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_exercice.glob</code></li>
<li>31 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Rutile.glob</code></li>
<li>29 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/cercle.glob</code></li>
<li>29 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/puissance_cercle.glob</code></li>
<li>28 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/repere_ortho_plan.glob</code></li>
<li>28 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/metrique_triangle.v</code></li>
<li>27 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Field_affine.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/exercice_morley.v</code></li>
<li>26 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Droite_espace.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/reflexion_plane.v</code></li>
<li>23 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/contact.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/angles_vecteurs.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/trigo.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/operations_complexes.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/cocyclicite.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/equations_droites.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/angles_droites.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/aire_signee.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/inversion.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/applications_cocyclicite.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/dilatations.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/projection_orthogonale.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/formes_complexes.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Plans_paralleles.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/composee_transformations.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/barycentre.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/transformations_contact.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/parallelisme_concours.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/composee_translation_rotation.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_inversion.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/affine_classiques.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/rotation_plane.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/droite_Euler.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_dilatations.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/representant_unitaire.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/composee_reflexions.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/exercice_espace.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Plan_espace.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/similitudes_directes.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/homoth_Euler.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Droite_plan_espace.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_similitudes.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/mediatrice.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_conjugaison.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/orthocentre.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_transformations.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/composee_dilatations.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/orthogonalite.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/milieu.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/alignement.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/homothetie_plane.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/puissance_cercle.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/euclidien_classiques.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complements_cercle.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/determinant.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/cercle.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/vecteur.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/distance_euclidienne.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/isocele.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/equations_cercles.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_analytique.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/repere_ortho_plan.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/orthogonalite_espace.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/coplanarite.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/produit_scalaire.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Rutile.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/repere_plan.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Field_affine.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/complexes_exercice.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/mesure_algebrique.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/Droite_espace.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/droite_Euler.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/HighSchoolGeometry/projection_orthogonale.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-high-school-geometry.1.0.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
html/234567155988.html | GoC-Spending/data-corporations |
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca -->
<head>
<!-- Title begins / Début du titre -->
<title>
Slackline Animals Inc. -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492319356014&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=42496&V_SEARCH.docsStart=42495&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=42494&V_DOCUMENT.docRank=42495&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492319386802&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=123456013525&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=42496&V_DOCUMENT.docRank=42497&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492319386802&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=123456259716&profileId=&key.newSearchLabel=">Next Company</a></li>
</ul>
</div>
<details>
<summary>Third-Party Information Liability Disclaimer</summary>
<p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p>
</details>
<h2>
Slackline Animals Inc.
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>Slackline Animals Inc.</p>
<p><a href="mailto:info@slacklineanimals.com" title="info@slacklineanimals.com">info@slacklineanimals.com</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
1403-2050 Nelson St<br/>
VANCOUVER,
British Columbia<br/>
V6G 1N6
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
1403-2050 Nelson St<br/>
VANCOUVER,
British Columbia<br/>
V6G 1N6
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(778) 879-5977
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
</p>
</div>
<div class="col-md-3 mrgn-tp-md">
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
<h2 class="wb-inv">Company Profile</h2>
<br> Slackline Animals Inc. is the first North American importer of top quality slackline equipment made in Europe where state-of-the-art trickline, longline and highline accessories are designed and where top technology is created by world record holders of the sport. This awesome activity is a great way to have fun, meet people and enjoy nature as well as develop core strength, balance and focus.<br>
</div>
</div>
<!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> -->
<div class="wb-tabs ignore-session">
<div class="tabpanels">
<details id="details-panel1">
<summary>
Full profile
</summary>
<!-- Tab 1 -->
<h2 class="wb-invisible">
Full profile
</h2>
<!-- Contact Information -->
<h3 class="page-header">
Contact information
</h3>
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Andy
Zachar
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Director
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(778) 879-5977
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
andy@slacklineanimals.com
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
Yes
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
451120 - Hobby, Toy and Game Stores
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
451110 - Sporting Goods Stores<br>
453999 - All Other Miscellaneous Store Retailers (except Beer and Wine-Making Supplies Stores)<br>
454111 - Internet Shopping<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Retail
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Slackline equipment<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Do you want buy a slackline (kit) but you don't know which one to choose? Try our unique slackline configurator to identify the slackline and gear best suited to your chosen distance. Visit www.slacklineanimals.com for more information.<br>
<br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Andy
Zachar
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Director
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(778) 879-5977
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
andy@slacklineanimals.com
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
Yes
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
451120 - Hobby, Toy and Game Stores
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
451110 - Sporting Goods Stores<br>
453999 - All Other Miscellaneous Store Retailers (except Beer and Wine-Making Supplies Stores)<br>
454111 - Internet Shopping<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Retail
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Slackline equipment<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Do you want buy a slackline (kit) but you don't know which one to choose? Try our unique slackline configurator to identify the slackline and gear best suited to your chosen distance. Visit www.slacklineanimals.com for more information.<br>
<br>
</div>
</div>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2015-06-01
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.7.0/relation-algebra/1.3.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>relation-algebra: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.0 / relation-algebra - 1.3</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
relation-algebra
<small>
1.3
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-26 20:55:43 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-26 20:55:43 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.7.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.2 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Damien Pous <Damien.Pous@ens-lyon.fr>"
homepage: "http://perso.ens-lyon.fr/damien.pous/ra/"
license: "LGPL"
build: [
["coq_makefile" "-f" "Make" "-o" "Makefile"]
# No "-j%{jobs}%" option.
[make]
]
install: [make "install"]
depends: [
"ocaml"
"coq" {>= "8.4" & < "8.5~" & != "8.4.6~camlp4"}
]
tags: [
"keyword:relation algebra"
"keyword:Kleene algebra with tests"
"keyword:KAT"
"keyword:allegories"
"keyword:residuated structures"
"keyword:automata"
"keyword:regular expressions"
"keyword:matrices"
"category:Mathematics/Algebra"
"logpath:RelationAlgebra"
]
authors: [ "Damien Pous <Damien.Pous@ens-lyon.fr>" ]
synopsis: "Relation Algebra and KAT"
description:
"A modular library about relation algebra, from idempotent semirings to residuated Kleene allegories, including a decision tactic for Kleene algebra with Tests (KAT)."
url {
src: "http://perso.ens-lyon.fr/damien.pous/ra/RelationAlgebra-1.3.tar.gz"
checksum: "md5=dca5ff29d70a70e62d233b742561bd87"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-relation-algebra.1.3 coq.8.7.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.0).
The following dependencies couldn't be met:
- coq-relation-algebra -> coq < 8.5~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-relation-algebra.1.3</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.10.2-2.0.6/extra-dev/dev/coalgebras/8.6.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>coalgebras: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">dev / coalgebras - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
coalgebras
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-20 06:05:22 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-20 06:05:22 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq dev Formal proof management system
dune 2.9.1 Fast, portable, and opinionated build system
ocaml 4.10.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.2 Official release 4.10.2
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/coalgebras"
license: "LGPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Coalgebras"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [
"keyword: coalgebra"
"keyword: bisimulation"
"keyword: weakly final"
"keyword: coiteration"
"keyword: co-inductive types"
"category: Mathematics/Category Theory"
"date: 2008-10"
]
authors: [ "Milad Niqui <M.Niqui@cwi.nl> [http://www.cwi.nl/~milad]" ]
bug-reports: "https://github.com/coq-contribs/coalgebras/issues"
dev-repo: "git+https://github.com/coq-contribs/coalgebras.git"
synopsis: "Coalgebras, bisimulation and lambda-coiteration"
description:
"This contribution contains a formalisation of coalgebras, bisimulation on coalgebras, weakly final coalgebras, lambda-coiteration definition scheme (including primitive corecursion) and a version of lambda-bisimulation. The formalisation is modular. The implementation of the module types for streams and potentially infinite Peano numbers are provided using the coinductive types."
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/coalgebras/archive/v8.6.0.tar.gz"
checksum: "md5=409f3071c78af754895335c54182689a"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-coalgebras.8.6.0 coq.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is dev).
The following dependencies couldn't be met:
- coq-coalgebras -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-coalgebras.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
doc/html/d7/dab/files__5_8js.html | michto01/ardp | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>ARDP: /Developer/school/ardp/build/doc/html/search/files_5.js File Reference</title>
<link href="../../tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="../../jquery.js"></script>
<script type="text/javascript" src="../../dynsections.js"></script>
<link href="../../search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="../../search/searchdata.js"></script>
<script type="text/javascript" src="../../search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="../../doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">ARDP
 <span id="projectnumber">2.1.3</span>
</div>
<div id="projectbrief">Another RDF Document Parser</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "../../search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="../../index.html"><span>Main Page</span></a></li>
<li><a href="../../pages.html"><span>Related Pages</span></a></li>
<li><a href="../../annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="../../files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="../../search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="../../search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="../../files.html"><span>File List</span></a></li>
<li><a href="../../globals.html"><span>Globals</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="../../dir_4fef79e7177ba769987a8da36c892c5f.html">build</a></li><li class="navelem"><a class="el" href="../../dir_6c89d1ed406002b4e6ebce07fb51a507.html">doc</a></li><li class="navelem"><a class="el" href="../../dir_6d59e61439e3c30df274bbb82d8db25d.html">html</a></li><li class="navelem"><a class="el" href="../../dir_2556a4a0510dd1645ff20abdc7f57c5f.html">search</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#var-members">Variables</a> </div>
<div class="headertitle">
<div class="title">files_5.js File Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><a href="../../d7/dab/files__5_8js_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="var-members"></a>
Variables</h2></td></tr>
<tr class="memitem:ad01a7523f103d6242ef9b0451861231e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="../../d8/d3c/util_8h.html#a335628f2e9085305224b4f9cc6e95ed5">var</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="../../d7/dab/files__5_8js.html#ad01a7523f103d6242ef9b0451861231e">searchData</a></td></tr>
<tr class="separator:ad01a7523f103d6242ef9b0451861231e"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<h2 class="groupheader">Variable Documentation</h2>
<a class="anchor" id="ad01a7523f103d6242ef9b0451861231e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="../../d8/d3c/util_8h.html#a335628f2e9085305224b4f9cc6e95ed5">var</a> searchData</td>
</tr>
</table>
</div><div class="memdoc">
<b>Initial value:</b><div class="fragment"><div class="line">=</div>
<div class="line">[</div>
<div class="line"> [<span class="stringliteral">'introduction_2emd'</span>,[<span class="stringliteral">'introduction.md'</span>,[<span class="stringliteral">'../introduction_8md.html'</span>,1,<span class="stringliteral">''</span>]]]</div>
<div class="line">]</div>
</div><!-- fragment -->
<p>Definition at line <a class="el" href="../../d7/dab/files__5_8js_source.html#l00001">1</a> of file <a class="el" href="../../d7/dab/files__5_8js_source.html">files_5.js</a>.</p>
</div>
</div>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Apr 19 2016 02:58:08 for ARDP by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>
|
clean/Linux-x86_64-4.03.0-2.0.5/released/8.6.1/int-map/8.6.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>int-map: 40 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.6.1 / int-map - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
int-map
<small>
8.6.0
<span class="label label-success">40 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-14 22:10:28 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-14 22:10:28 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.6.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.03.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.03.0 Official 4.03.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/int-map"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/IntMap"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: finite sets" "keyword: maps" "keyword: binary integers" "keyword: efficient data structures" "keyword: data structures" "category: Computer Science/Data Types and Data Structures" "date: around 1999 (integrated within Coq 7.0)" ]
authors: [ "Jean Goubault <goubault [@] lsv.ens-cachan.fr>" ]
bug-reports: "https://github.com/coq-contribs/int-map/issues"
dev-repo: "git+https://github.com/coq-contribs/int-map.git"
synopsis: "Maps indexed by binary integers : IntMap"
description: """
This library contains a data structure for finite sets implemented by
an efficient structure of map (trees indexed by binary integers).
It was initially developed by Jean Goubault.
This user contribution used to be part of Coq Standard Library.
It is now considered to be obsolete and subsumed by the new
FSets/FMap library. IntMap can be now seen as a particular
implementation of FMapInterface, see file FMapIntMap."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/int-map/archive/v8.6.0.tar.gz"
checksum: "md5=99c39b3b9dd3ccff89cee32f852c3e29"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-int-map.8.6.0 coq.8.6.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-int-map.8.6.0 coq.8.6.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>11 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-int-map.8.6.0 coq.8.6.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>40 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 2 M</p>
<ul>
<li>302 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/FMapIntMap.vo</code></li>
<li>143 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapcard.glob</code></li>
<li>143 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapaxioms.glob</code></li>
<li>111 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Map.vo</code></li>
<li>106 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapiter.glob</code></li>
<li>105 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Map.glob</code></li>
<li>98 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapcard.vo</code></li>
<li>94 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapiter.vo</code></li>
<li>92 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapsubset.glob</code></li>
<li>84 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapaxioms.vo</code></li>
<li>81 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapfold.glob</code></li>
<li>77 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapsubset.vo</code></li>
<li>72 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/FMapIntMap.glob</code></li>
<li>72 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Lsort.vo</code></li>
<li>67 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapfold.vo</code></li>
<li>66 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapc.glob</code></li>
<li>64 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Lsort.glob</code></li>
<li>64 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Maplists.vo</code></li>
<li>62 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Maplists.glob</code></li>
<li>61 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapcanon.glob</code></li>
<li>60 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Fset.vo</code></li>
<li>59 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapcanon.vo</code></li>
<li>52 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapc.vo</code></li>
<li>46 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Fset.glob</code></li>
<li>36 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Adalloc.vo</code></li>
<li>33 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Map.v</code></li>
<li>31 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapcard.v</code></li>
<li>28 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Allmaps.vo</code></li>
<li>26 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapaxioms.v</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapiter.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapsubset.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/FMapIntMap.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapc.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Maplists.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapfold.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Lsort.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Mapcanon.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Fset.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Adalloc.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Adalloc.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Allmaps.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/IntMap/Allmaps.glob</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-int-map.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.06.1-2.0.5/released/8.8.1/groups/8.5.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>groups: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.1 / groups - 8.5.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
groups
<small>
8.5.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-09 22:00:21 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-09 22:00:21 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.8.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matej.kosik@inria.fr"
homepage: "https://github.com/coq-contribs/groups"
license: "LGPL 2"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Groups"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
]
tags: [ "keyword:group theory" "category:Miscellaneous/Coq Use Examples" ]
authors: [ "Pierre Castéran <>" ]
bug-reports: "https://github.com/coq-contribs/groups/issues"
dev-repo: "git+https://github.com/coq-contribs/groups.git"
synopsis: "An exercise on groups"
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/groups/archive/v8.5.0.tar.gz"
checksum: "md5=55565c9fd90c95c546b02f41f9932873"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-groups.8.5.0 coq.8.8.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.1).
The following dependencies couldn't be met:
- coq-groups -> coq < 8.6~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-groups.8.5.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.10.1-2.0.6/released/8.11.2/subst/8.6.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>subst: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.2 / subst - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
subst
<small>
8.6.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-03-31 05:27:10 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-03-31 05:27:10 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.10.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.1 Official release 4.10.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/subst"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Subst"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: lambda-sigma-lift-calculus" "keyword: explicit substitution" "keyword: Newman's lemma" "keyword: Yokouchi's lemma" "keyword: confluence" "keyword: rewriting" "category: Computer Science/Lambda Calculi" ]
authors: [ "Amokrane Saïbi" ]
bug-reports: "https://github.com/coq-contribs/subst/issues"
dev-repo: "git+https://github.com/coq-contribs/subst.git"
synopsis: "The confluence of Hardin-Lévy lambda-sigma-lift-calcul"
description: """
The confluence of Hardin-Lévy lambda-sigma-lift-calcul is
proven. By the way, several standard definition and results about
rewriting systems are proven (Newman's lemma, Yokouchi's lemma, ...)."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/subst/archive/v8.6.0.tar.gz"
checksum: "md5=ec5d84b616435ee0e09716cd6fdbdc36"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-subst.8.6.0 coq.8.11.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.2).
The following dependencies couldn't be met:
- coq-subst -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-subst.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.13.1-2.0.10/released/8.14.1/graph-basics/8.7.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>graph-basics: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.14.1 / graph-basics - 8.7.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
graph-basics
<small>
8.7.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-20 11:08:53 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-20 11:08:53 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.14.1 Formal proof management system
dune 2.9.3 Fast, portable, and opinionated build system
ocaml 4.13.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.13.1 Official release 4.13.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/graph-basics"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/GraphBasics"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [ "keyword: graph theory" "keyword: Curry-Howard's isomorphism" "keyword: inductive definitions" "category: Mathematics/Combinatorics and Graph Theory" "date: April 2001" ]
authors: [ "Jean Duprat" ]
bug-reports: "https://github.com/coq-contribs/graph-basics/issues"
dev-repo: "git+https://github.com/coq-contribs/graph-basics.git"
synopsis: "A Coq toolkit for graph theory"
description: """
This library offers inductive definitions of basics
in graph theory. The goal is to offer the possibility to write proofs
and programs on graphs in the same formalism : the Coq language.
It now contains : vertices, arcs, edges, degrees, graphs, directed
graphs,
paths, acyclic graphs, connected graphs and tree."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/graph-basics/archive/v8.7.0.tar.gz"
checksum: "md5=b0766caf69228e485bd2445c748eff1e"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-graph-basics.8.7.0 coq.8.14.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.14.1).
The following dependencies couldn't be met:
- coq-graph-basics -> coq < 8.8~ -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-graph-basics.8.7.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.08.1-2.0.5/released/8.7.1+1/relation-algebra/1.7.5.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>relation-algebra: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1+1 / relation-algebra - 1.7.5</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
relation-algebra
<small>
1.7.5
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-11 17:12:35 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-11 17:12:35 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.7.1+1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.08.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.08.1 Official release 4.08.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
synopsis: "Relation Algebra and KAT in Coq"
maintainer: "Damien Pous <Damien.Pous@ens-lyon.fr>"
version: "1.7.5"
homepage: "http://perso.ens-lyon.fr/damien.pous/ra/"
dev-repo: "git+https://github.com/damien-pous/relation-algebra.git"
bug-reports: "https://github.com/damien-pous/relation-algebra/issues"
license: "LGPL-3.0-or-later"
depends: [
"ocaml"
"coq" {>= "8.13" & < "8.14~"}
]
depopts: [ "coq-mathcomp-ssreflect" "coq-aac-tactics" ]
build: [
["sh" "-exc" "./configure --%{coq-mathcomp-ssreflect:enable}%-ssr --%{coq-aac-tactics:enable}%-aac"]
[make "-j%{jobs}%"]
]
install: [make "install"]
tags: [
"keyword:relation algebra"
"keyword:Kleene algebra with tests"
"keyword:KAT"
"keyword:allegories"
"keyword:residuated structures"
"keyword:automata"
"keyword:regular expressions"
"keyword:matrices"
"category:Mathematics/Algebra"
"logpath:RelationAlgebra"
]
authors: [
"Damien Pous <Damien.Pous@ens-lyon.fr>"
"Christian Doczkal <christian.doczkal@ens-lyon.fr>"
]
url {
src:
"https://github.com/damien-pous/relation-algebra/archive/v1.7.5.tar.gz"
checksum: "md5=2147b754963aa89aafb523b1605d610b"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-relation-algebra.1.7.5 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1+1).
The following dependencies couldn't be met:
- coq-relation-algebra -> coq >= 8.13
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-relation-algebra.1.7.5</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.12.1-2.0.8/extra-dev/dev/sudoku/8.6.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>sudoku: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">dev / sudoku - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
sudoku
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-27 19:27:03 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-27 19:27:03 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq dev Formal proof management system
dune 3.0.2 Fast, portable, and opinionated build system
ocaml 4.12.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.12.1 Official release 4.12.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/sudoku"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Sudoku"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: sudoku" "keyword: puzzles" "keyword: Davis-Putnam" "category: Miscellaneous/Logical Puzzles and Entertainment" "date: 2006-02" ]
authors: [ "Laurent Théry <thery@sophia.inria.fr> [http://www-sop.inria.fr/lemme/personnel/Laurent.Thery/me.html]" ]
bug-reports: "https://github.com/coq-contribs/sudoku/issues"
dev-repo: "git+https://github.com/coq-contribs/sudoku.git"
synopsis: "A certified Sudoku solver"
description: """
ftp://ftp-sop.inria.fr/lemme/Laurent.Thery/Sudoku.zip
A formalisation of Sudoku in Coq. It implements a naive
Davis-Putnam procedure to solve sudokus."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/sudoku/archive/v8.6.0.tar.gz"
checksum: "md5=1bcef9e67b8d60bbecd9f5e02c2b5898"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-sudoku.8.6.0 coq.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is dev).
The following dependencies couldn't be met:
- coq-sudoku -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-sudoku.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.02.3-2.0.6/released/8.5.1/mathcomp-fingroup/1.10.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-fingroup: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.1 / mathcomp-fingroup - 1.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-fingroup
<small>
1.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-02 19:39:01 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-02 19:39:01 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-ocamlbuild base OCamlbuild binary and libraries distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.5.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.02.3 The OCaml compiler (virtual package)
ocaml-base-compiler 4.02.3 Official 4.02.3 release
ocaml-config 1 OCaml Switch Configuration
# opam file:
opam-version: "2.0"
maintainer: "Mathematical Components <mathcomp-dev@sympa.inria.fr>"
homepage: "https://math-comp.github.io/"
bug-reports: "https://github.com/math-comp/math-comp/issues"
dev-repo: "git+https://github.com/math-comp/math-comp.git"
license: "CeCILL-B"
build: [ make "-C" "mathcomp/fingroup" "-j" "%{jobs}%" ]
install: [ make "-C" "mathcomp/fingroup" "install" ]
depends: [ "coq-mathcomp-ssreflect" { = version } ]
tags: [ "keyword:finite groups" "keyword:small scale reflection" "keyword:mathematical components" "keyword:odd order theorem" "logpath:mathcomp.fingroup" ]
authors: [ "Jeremy Avigad <>" "Andrea Asperti <>" "Stephane Le Roux <>" "Yves Bertot <>" "Laurence Rideau <>" "Enrico Tassi <>" "Ioana Pasca <>" "Georges Gonthier <>" "Sidi Ould Biha <>" "Cyril Cohen <>" "Francois Garillot <>" "Alexey Solovyev <>" "Russell O'Connor <>" "Laurent Théry <>" "Assia Mahboubi <>" ]
synopsis: "Mathematical Components Library on finite groups"
description: """
This library contains definitions and theorems about finite groups,
group quotients, group morphisms, group presentation, group action...
"""
url {
src: "http://github.com/math-comp/math-comp/archive/mathcomp-1.10.0.tar.gz"
checksum: "sha256=3f8a88417f3456da05e2755ea0510c1bd3fd13b13c41e62fbaa3de06be040166"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-mathcomp-fingroup.1.10.0 coq.8.5.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.5.1).
The following dependencies couldn't be met:
- coq-mathcomp-fingroup -> coq-mathcomp-ssreflect = 1.10.0 -> coq >= 8.7 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-mathcomp-fingroup.1.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.09.1-2.0.6/extra-dev/8.10.0/fermat4/8.6.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>fermat4: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">8.10.0 / fermat4 - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
fermat4
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2020-08-03 21:31:15 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-03 21:31:15 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.10.0 Formal proof management system
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.09.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.09.1 Official release 4.09.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/fermat4"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Fermat4"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: Diophantus" "keyword: Fermat" "keyword: Arithmetic" "keyword: Infinite Descent" "category: Mathematics/Arithmetic and Number Theory/Number theory" "date: 2005-07" ]
authors: [ "David Delahaye" "Micaela Mayero" ]
bug-reports: "https://github.com/coq-contribs/fermat4/issues"
dev-repo: "git+https://github.com/coq-contribs/fermat4.git"
synopsis: "Diophantus' 20th Problem and Fermat's Last Theorem for n = 4"
description: """
This contribution presents the formalization of Fermat's proofs of
Diophantus' 20th Problem and Fermat's Last Theorem for n = 4. The proofs are
completed using Fermat's "wonderful" method of infinite descent."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/fermat4/archive/v8.6.0.tar.gz"
checksum: "md5=1babf36dc864bb9796b73a7297c8eddd"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-fermat4.8.6.0 coq.8.10.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.0).
The following dependencies couldn't be met:
- coq-fermat4 -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-fermat4.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
harpy3/doc/api/files/__/__/__/__/usr/local/lib/ruby/gems/2_1_0/gems/actionpack-4_0_2/lib/action_dispatch/middleware/ssl_rb.html | billwen/netopt | <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>ssl.rb</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="../../../../../../../../../../../../../../../../css/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../../../../../../../../../../../../../../css/main.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../../../../../../../../../../../../../../css/github.css" type="text/css" media="screen" />
<script src="../../../../../../../../../../../../../../../../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../../../../../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../../../../../js/main.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../../../../../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div class="banner">
<span>Ruby on Rails 4.0.2</span><br />
<h1>
ssl.rb
</h1>
<ul class="files">
<li>
../../../../usr/local/lib/ruby/gems/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/ssl.rb
</li>
<li>Last modified: 2014-01-03 14:27:31 +0800</li>
</ul>
</div>
<div id="bodyContent">
<div id="content">
<!-- Namespace -->
<div class="sectiontitle">Namespace</div>
<ul>
<li>
<span class="type">MODULE</span>
<a href="../../../../../../../../../../../../../../../../classes/ActionDispatch.html">ActionDispatch</a>
</li>
<li>
<span class="type">CLASS</span>
<a href="../../../../../../../../../../../../../../../../classes/ActionDispatch/SSL.html">ActionDispatch::SSL</a>
</li>
</ul>
<!-- Methods -->
</div>
</div>
</body>
</html> |
clean/Linux-x86_64-4.06.1-2.0.5/released/8.12.1/tree-diameter/8.10.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tree-diameter: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.12.1 / tree-diameter - 8.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
tree-diameter
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-26 01:44:44 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-26 01:44:44 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.12.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/tree-diameter"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/TreeDiameter"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: program verification"
"keyword: trees"
"keyword: paths"
"keyword: graphs"
"keyword: distance"
"keyword: diameter"
"category: Computer Science/Decision Procedures and Certified Algorithms/Correctness proofs of algorithms"
]
authors: [
"Jean-Christophe Filliâtre"
]
bug-reports: "https://github.com/coq-contribs/tree-diameter/issues"
dev-repo: "git+https://github.com/coq-contribs/tree-diameter.git"
synopsis: "Diameter of a binary tree"
description: """
This contribution contains the verification of a divide-and-conquer
algorithm to compute the diameter of a binary tree (the
maxmimal distance between two nodes in the tree)."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/tree-diameter/archive/v8.10.0.tar.gz"
checksum: "md5=82e071e80da869e73f1de3245bec8df6"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-tree-diameter.8.10.0 coq.8.12.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.12.1).
The following dependencies couldn't be met:
- coq-tree-diameter -> coq < 8.11~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-tree-diameter.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.06.1-2.0.5/released/8.8.2/concurrency-proxy/1.0.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>concurrency-proxy: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.2 / concurrency-proxy - 1.0.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
concurrency-proxy
<small>
1.0.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-10-24 09:29:54 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-24 09:29:54 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.8.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "dev@clarus.me"
homepage: "https://github.com/coq-concurrency/proxy"
dev-repo: "git+https://github.com/coq-concurrency/proxy.git"
bug-reports: "https://github.com/coq-concurrency/proxy/issues"
authors: ["Guillaume Claret"]
license: "MIT"
build: [
[make "-j%{jobs}%"]
]
depends: [
"ocaml" {>= "4.02.0" & < "4.06"}
"base-unix"
"lwt" {>= "2.4.5" & < "5"}
"num"
"base64" {>= "1.0.0" & < "2"}
]
conflicts: [
"ocaml-secondary-compiler"
]
tags: [
"date:2015-01-28"
"keyword:effects"
"keyword:extraction"
]
synopsis: "A proxy to interface concurrent Coq programs with the operating system"
extra-files: [
"coq-concurrency-proxy.install" "md5=96f86b964fc4cd99c310011b83de5f61"
]
url {
src: "https://github.com/coq-concurrency/proxy/archive/1.0.0.tar.gz"
checksum: "md5=36d201bf65ccc649b4704e71e94de712"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-concurrency-proxy.1.0.0 coq.8.8.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.2).
The following dependencies couldn't be met:
- coq-concurrency-proxy -> ocaml < 4.06
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-concurrency-proxy.1.0.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.6/released/8.5.2/param-pi/8.10.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>param-pi: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.2 / param-pi - 8.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
param-pi
<small>
8.10.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-07-21 07:46:36 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-21 07:46:36 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.12 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
coq 8.5.2 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/param-pi"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/ParamPi"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: Pi-Calculus"
"category: Computer Science/Lambda Calculi"
"date: 1998-09-30"
]
authors: [
"Loïc Henry-Gréard"
]
bug-reports: "https://github.com/coq-contribs/param-pi/issues"
dev-repo: "git+https://github.com/coq-contribs/param-pi.git"
synopsis: "Coding of a typed monadic pi-calculus using parameters for free names"
description: """
This development contains the specification for a monadic
pi-calculus using the same coding method for names than
J. Mc Kinna and R. Pollack used for PTS in LEGO:
"Some Lambda Calculus and Type Theory Formalized".
The basic, monadic calculus encoded here has a type system
restraining the direction of communication for processes' names.
A number of lemmas usefull for doing proofs on that coding
are included, and subject reduction properties for each kind
of transition is made as an example of actually using the
coding to mechanize proofs on the pi-calculus."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/param-pi/archive/v8.10.0.tar.gz"
checksum: "md5=6b3529b006af683c42e66193a488b5e7"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-param-pi.8.10.0 coq.8.5.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.5.2).
The following dependencies couldn't be met:
- coq-param-pi -> coq >= 8.10
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-param-pi.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
templates/shortener-ext/home.html | videetssinghai/URL_Shortner | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<h1>Hi world</h1>
</head>
<body>
</body>
</html> |
clean/Linux-x86_64-4.07.1-2.0.6/released/8.10.1/checker/8.9.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>checker: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.10.1 / checker - 8.9.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
checker
<small>
8.9.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-09 13:43:28 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-09 13:43:28 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.10.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/checker"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Checker"]
depends: [
"ocaml"
"coq" {>= "8.9" & < "8.10~"}
]
tags: [
"keyword: checker"
"keyword: dominos"
"keyword: puzzles"
"category: Miscellaneous/Logical Puzzles and Entertainment"
]
authors: [
"Gérard Huet"
]
bug-reports: "https://github.com/coq-contribs/checker/issues"
dev-repo: "git+https://github.com/coq-contribs/checker.git"
synopsis: "The Mutilated Checkerboard"
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/checker/archive/v8.9.0.tar.gz"
checksum: "md5=dd97034f8e98abcb15c07471906588c5"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-checker.8.9.0 coq.8.10.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.1).
The following dependencies couldn't be met:
- coq-checker -> coq < 8.10~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-checker.8.9.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.06.1-2.0.5/released/8.11.0/mathcomp-analysis/0.3.2.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-analysis: 8 m 38 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.0 / mathcomp-analysis - 0.3.2</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-analysis
<small>
0.3.2
<span class="label label-success">8 m 38 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-10-20 03:14:38 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-20 03:14:38 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "reynald.affeldt@aist.go.jp"
homepage: "https://github.com/math-comp/analysis"
bug-reports: "https://github.com/math-comp/analysis/issues"
dev-repo: "git+https://github.com/math-comp/analysis.git"
license: "CECILL-C"
authors: [
"Reynald Affeldt"
"Cyril Cohen"
"Assia Mahboubi"
"Damien Rouhling"
"Pierre-Yves Strub"
]
build: [
[make "INSTMODE=global" "config"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
depends: [
"coq" { ((>= "8.10" & < "8.13~") | = "dev") }
"coq-mathcomp-field" {(>= "1.11.0" & < "1.12~")}
"coq-mathcomp-finmap" {(>= "1.5.0" & < "1.6~")}
]
synopsis: "An analysis library for mathematical components"
description: """
This repository contains an experimental library for real analysis for
the Coq proof-assistant and using the Mathematical Components library.
It is inspired by the Coquelicot library.
"""
tags: [
"category:Mathematics/Real Calculus and Topology"
"keyword: analysis"
"keyword: topology"
"keyword: real numbers"
"logpath: mathcomp.analysis"
"date:2020-08-11"
]
url {
http: "https://github.com/math-comp/analysis/archive/0.3.2.tar.gz"
checksum: "sha512=aa2ffac487d71d3aceea9dafca21d7c8bfcbaaf52d9977fd9bf19a055d65597b95d9e2e10dc7da10676ab2f86a8cc205aac9e0fa08360fc127971f60f68c5430"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-mathcomp-analysis.0.3.2 coq.8.11.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-mathcomp-analysis.0.3.2 coq.8.11.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>22 m 2 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-mathcomp-analysis.0.3.2 coq.8.11.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>8 m 38 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 33 M</p>
<ul>
<li>21 M <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/normedtype.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/normedtype.glob</code></li>
<li>955 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/derive.vo</code></li>
<li>955 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/topology.vo</code></li>
<li>836 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/topology.glob</code></li>
<li>681 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/derive.glob</code></li>
<li>564 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/landau.vo</code></li>
<li>402 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/landau.glob</code></li>
<li>395 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/realsum.glob</code></li>
<li>377 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/distr.glob</code></li>
<li>361 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/sequences.glob</code></li>
<li>354 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/sequences.vo</code></li>
<li>341 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/realsum.vo</code></li>
<li>340 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/ereal.glob</code></li>
<li>337 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/distr.vo</code></li>
<li>253 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/ereal.vo</code></li>
<li>236 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/classical_sets.vo</code></li>
<li>234 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/Rbar.vo</code></li>
<li>224 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/Rstruct.vo</code></li>
<li>213 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/classical_sets.glob</code></li>
<li>195 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/realseq.vo</code></li>
<li>189 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/forms.vo</code></li>
<li>187 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/reals.vo</code></li>
<li>169 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/normedtype.v</code></li>
<li>156 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/topology.v</code></li>
<li>151 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/Rstruct.glob</code></li>
<li>150 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/measure.vo</code></li>
<li>146 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/forms.glob</code></li>
<li>141 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/realseq.glob</code></li>
<li>119 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/reals.glob</code></li>
<li>115 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/Rbar.glob</code></li>
<li>113 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/boolp.glob</code></li>
<li>110 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/boolp.vo</code></li>
<li>104 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/measure.glob</code></li>
<li>92 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/discrete.vo</code></li>
<li>87 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/xfinmap.vo</code></li>
<li>78 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/prodnormedzmodule.vo</code></li>
<li>77 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/summability.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/posnum.vo</code></li>
<li>66 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/landau.v</code></li>
<li>63 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/derive.v</code></li>
<li>53 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/prodnormedzmodule.glob</code></li>
<li>45 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/realsum.v</code></li>
<li>43 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/xfinmap.glob</code></li>
<li>41 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/classical_sets.v</code></li>
<li>41 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/distr.v</code></li>
<li>40 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/sequences.v</code></li>
<li>37 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/discrete.glob</code></li>
<li>32 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/posnum.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/Rstruct.v</code></li>
<li>25 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/boolp.v</code></li>
<li>24 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/ereal.v</code></li>
<li>23 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/forms.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/reals.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/realseq.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/Rbar.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/measure.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/discrete.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/posnum.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/summability.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/prodnormedzmodule.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/altreals/xfinmap.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/mathcomp/analysis/summability.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-mathcomp-analysis.0.3.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
doc/x11_dl/xlib/struct.XMapRequestEvent.html | mcanders/bevy | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `XMapRequestEvent` struct in crate `x11_dl`.">
<meta name="keywords" content="rust, rustlang, rust-lang, XMapRequestEvent">
<title>x11_dl::xlib::XMapRequestEvent - Rust</title>
<link rel="stylesheet" type="text/css" href="../../main.css">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<section class="sidebar">
<p class='location'><a href='../index.html'>x11_dl</a>::<wbr><a href='index.html'>xlib</a></p><script>window.sidebarCurrent = {name: 'XMapRequestEvent', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</section>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press 'S' to search, '?' for more options..."
type="search">
</div>
</form>
</nav>
<section id='main' class="content struct">
<h1 class='fqn'><span class='in-band'>Struct <a href='../index.html'>x11_dl</a>::<wbr><a href='index.html'>xlib</a>::<wbr><a class='struct' href=''>XMapRequestEvent</a></span><span class='out-of-band'><span id='render-detail'>
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
[<span class='inner'>−</span>]
</a>
</span><a id='src-49801' class='srclink' href='../../src/x11_dl/xlib.rs.html#1626-1633' title='goto source code'>[src]</a></span></h1>
<pre class='rust struct'>pub struct XMapRequestEvent {
pub type_: <a class='type' href='../../libc/types/os/arch/c95/type.c_int.html' title='libc::types::os::arch::c95::c_int'>c_int</a>,
pub serial: <a class='type' href='../../libc/types/os/arch/c95/type.c_ulong.html' title='libc::types::os::arch::c95::c_ulong'>c_ulong</a>,
pub send_event: <a class='type' href='../../x11_dl/xlib/type.Bool.html' title='x11_dl::xlib::Bool'>Bool</a>,
pub display: <a href='http://doc.rust-lang.org/nightly/std/primitive.pointer.html'>*mut <a class='type' href='../../x11_dl/xlib/type.Display.html' title='x11_dl::xlib::Display'>Display</a></a>,
pub parent: <a class='type' href='../../x11_dl/xlib/type.Window.html' title='x11_dl::xlib::Window'>Window</a>,
pub window: <a class='type' href='../../x11_dl/xlib/type.Window.html' title='x11_dl::xlib::Window'>Window</a>,
}</pre><h2 class='fields'>Fields</h2>
<table><tr class='stab '>
<td id='structfield.type_'><code>type_</code></td><td></td></tr><tr class='stab '>
<td id='structfield.serial'><code>serial</code></td><td></td></tr><tr class='stab '>
<td id='structfield.send_event'><code>send_event</code></td><td></td></tr><tr class='stab '>
<td id='structfield.display'><code>display</code></td><td></td></tr><tr class='stab '>
<td id='structfield.parent'><code>parent</code></td><td></td></tr><tr class='stab '>
<td id='structfield.window'><code>window</code></td><td></td></tr></table><h2 id='implementations'>Trait Implementations</h2><h3 class='impl'><code>impl <a class='trait' href='http://doc.rust-lang.org/nightly/core/convert/trait.From.html' title='core::convert::From'>From</a><<a class='struct' href='../../x11_dl/xlib/struct.XEvent.html' title='x11_dl::xlib::XEvent'>XEvent</a>> for <a class='struct' href='../../x11_dl/xlib/struct.XMapRequestEvent.html' title='x11_dl::xlib::XMapRequestEvent'>XMapRequestEvent</a></code></h3><div class='impl-items'><h4 id='method.from' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/convert/trait.From.html#method.from' class='fnname'>from</a>(e: <a class='struct' href='../../x11_dl/xlib/struct.XEvent.html' title='x11_dl::xlib::XEvent'>XEvent</a>) -> <a class='struct' href='../../x11_dl/xlib/struct.XMapRequestEvent.html' title='x11_dl::xlib::XMapRequestEvent'>XMapRequestEvent</a></code></h4>
</div><h3 id='derived_implementations'>Derived Implementations </h3><h3 class='impl'><code>impl <a class='trait' href='http://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html' title='core::cmp::PartialEq'>PartialEq</a> for <a class='struct' href='../../x11_dl/xlib/struct.XMapRequestEvent.html' title='x11_dl::xlib::XMapRequestEvent'>XMapRequestEvent</a></code></h3><div class='impl-items'><h4 id='method.eq' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.eq' class='fnname'>eq</a>(&self, __arg_0: &<a class='struct' href='../../x11_dl/xlib/struct.XMapRequestEvent.html' title='x11_dl::xlib::XMapRequestEvent'>XMapRequestEvent</a>) -> <a href='http://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>
<h4 id='method.ne' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class='fnname'>ne</a>(&self, __arg_0: &<a class='struct' href='../../x11_dl/xlib/struct.XMapRequestEvent.html' title='x11_dl::xlib::XMapRequestEvent'>XMapRequestEvent</a>) -> <a href='http://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></h4>
</div><h3 class='impl'><code>impl <a class='trait' href='http://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> for <a class='struct' href='../../x11_dl/xlib/struct.XMapRequestEvent.html' title='x11_dl::xlib::XMapRequestEvent'>XMapRequestEvent</a></code></h3><div class='impl-items'></div><h3 class='impl'><code>impl <a class='trait' href='http://doc.rust-lang.org/nightly/core/clone/trait.Clone.html' title='core::clone::Clone'>Clone</a> for <a class='struct' href='../../x11_dl/xlib/struct.XMapRequestEvent.html' title='x11_dl::xlib::XMapRequestEvent'>XMapRequestEvent</a></code></h3><div class='impl-items'><h4 id='method.clone' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone' class='fnname'>clone</a>(&self) -> <a class='struct' href='../../x11_dl/xlib/struct.XMapRequestEvent.html' title='x11_dl::xlib::XMapRequestEvent'>XMapRequestEvent</a></code></h4>
<h4 id='method.clone_from' class='method'><code>fn <a href='http://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from' class='fnname'>clone_from</a>(&mut self, source: &Self)</code></h4>
</div></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<div id="help" class="hidden">
<div class="shortcuts">
<h1>Keyboard shortcuts</h1>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
</dl>
</div>
<div class="infos">
<h1>Search tricks</h1>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>typedef</code> (or
<code>tdef</code>).
</p>
<p>
Search functions by type signature (e.g.
<code>vec -> usize</code>)
</p>
</div>
</div>
<script>
window.rootPath = "../../";
window.currentCrate = "x11_dl";
window.playgroundUrl = "";
</script>
<script src="../../jquery.js"></script>
<script src="../../main.js"></script>
<script async src="../../search-index.js"></script>
</body>
</html> |
docs/_themes/flask_small/layout.html | bluele/Flask-request-params | {% extends "basic/layout.html" %}
{% block header %}
{{ super() }}
{% if pagename == 'index' %}
<div class=indexwrapper>
{% endif %}
{% endblock %}
{% block footer %}
{% if pagename == 'index' %}
</div>
{% endif %}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-53206086-1', 'auto');
ga('send', 'pageview');
</script>
{% endblock %}
{# do not display relbars #}
{% block relbar1 %}{% endblock %}
{% block relbar2 %}
{% if theme_github_fork %}
<a href="http://github.com/{{ theme_github_fork }}"><img style="position: fixed; top: 0; right: 0; border: 0;"
src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
{% endif %}
{% endblock %}
{% block sidebar1 %}{% endblock %}
{% block sidebar2 %}{% endblock %}
|
clean/Linux-x86_64-4.04.2-2.0.5/released/8.5.1/actuary/2.2.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>actuary: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.1 / actuary - 2.2</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
actuary
<small>
2.2
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-27 00:59:42 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-27 00:59:42 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.5.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/Yosuke-Ito-345/Actuary"
dev-repo: "git+https://github.com/Yosuke-Ito-345/Actuary.git"
bug-reports: "https://github.com/Yosuke-Ito-345/Actuary/issues"
license: "MIT"
synopsis: "Formalization of actuarial mathematics in Coq"
description: """
This package formalizes basic actuarial mathematics using Coq and
the Mathematical Components and Coquelicot libraries. This includes
the theory of interest, life tables, annuities, and reserves."""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" {>= "8.12"}
"coq-mathcomp-ssreflect" {>= "1.12"}
"coq-coquelicot" {>= "3.1.0"}
]
tags: [
"category:Mathematics/Real Calculus and Topology"
"keyword:present value"
"keyword:life tables"
"keyword:annuities"
"keyword:reserves"
"keyword:actuarial mathematics"
"logpath:Actuary"
"date:2021-12-18"
]
authors: [
"Yosuke Ito"
]
url {
src: "https://github.com/Yosuke-Ito-345/Actuary/archive/v2.2.tar.gz"
checksum: "sha512=0805c63fa2eac6782716ff0f63fb59e125e24dff1ed6a8356d4020d5325b3e579ba5de548f7a1cec5832dd46d1e2892a43d841ee1f1e8f2affde305db498d1fc"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-actuary.2.2 coq.8.5.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.5.1).
The following dependencies couldn't be met:
- coq-actuary -> coq >= 8.12 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-actuary.2.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
chaitya/index.html | nightshade22/master | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chaitya Shah</title>
</head>
<body>
<h2>Hello, I am Chaitya Shah</h2>
</body>
</html> |
doc/com/cyberfront/crdt/operation/package-tree.html | cyber-front/json-crdt | <!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.1) on Thu Jan 17 22:56:30 EST 2019 -->
<title>com.cyberfront.crdt.operation Class Hierarchy</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="dc.created" content="2019-01-17">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../../../../jquery/jquery-3.3.1.js"></script>
<script type="text/javascript" src="../../../../jquery/jquery-migrate-3.0.1.js"></script>
<script type="text/javascript" src="../../../../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="com.cyberfront.crdt.operation Class Hierarchy";
}
}
catch(err) {
}
//-->
var pathtoroot = "../../../../";
var useModuleDirectories = true;
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<header role="banner">
<nav role="navigation">
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a id="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../index.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses.html">All Classes</a></li>
</ul>
<ul class="navListSearch">
<li><label for="search">SEARCH:</label>
<input type="text" id="search" value="search" disabled="disabled">
<input type="reset" id="reset" value="reset" disabled="disabled">
</li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<a id="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding"> </div>
<script type="text/javascript"><!--
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
//-->
</script>
</nav>
</header>
<main role="main">
<div class="header">
<h1 class="title">Hierarchy For Package com.cyberfront.crdt.operation</h1>
<span class="packageHierarchyLabel">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="../../../../overview-tree.html">All Packages</a></li>
</ul>
</div>
<div class="contentContainer">
<section role="region">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li class="circle">java.lang.Object
<ul>
<li class="circle">com.cyberfront.crdt.operation.<a href="Operation.html" title="class in com.cyberfront.crdt.operation"><span class="typeNameLink">Operation</span></a> (implements java.lang.Comparable<T>)</li>
<li class="circle">com.cyberfront.crdt.operation.<a href="OperationManager.html" title="class in com.cyberfront.crdt.operation"><span class="typeNameLink">OperationManager</span></a> (implements java.lang.Comparable<T>)
<ul>
<li class="circle">com.cyberfront.crdt.operation.<a href="GenericOperationManager.html" title="class in com.cyberfront.crdt.operation"><span class="typeNameLink">GenericOperationManager</span></a><T></li>
</ul>
</li>
</ul>
</li>
</ul>
</section>
<section role="region">
<h2 title="Enum Hierarchy">Enum Hierarchy</h2>
<ul>
<li class="circle">java.lang.Object
<ul>
<li class="circle">java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable)
<ul>
<li class="circle">com.cyberfront.crdt.operation.<a href="Operation.OperationType.html" title="enum in com.cyberfront.crdt.operation"><span class="typeNameLink">Operation.OperationType</span></a></li>
<li class="circle">com.cyberfront.crdt.operation.<a href="OperationManager.StatusType.html" title="enum in com.cyberfront.crdt.operation"><span class="typeNameLink">OperationManager.StatusType</span></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</section>
</div>
</main>
<footer role="contentinfo">
<nav role="navigation">
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a id="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../index.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<a id="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</nav>
</footer>
</body>
</html>
|
doc/java/jdk7/java/rmi/UnmarshalException.html | fbiville/annotation-processing-ftw | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.6.0_18) on Thu Dec 18 17:17:15 PST 2014 -->
<title>UnmarshalException (Java Platform SE 7 )</title>
<meta name="date" content="2014-12-18">
<meta name="keywords" content="java.rmi.UnmarshalException class">
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="UnmarshalException (Java Platform SE 7 )";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/UnmarshalException.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em><strong>Java™ Platform<br>Standard Ed. 7</strong></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../java/rmi/UnknownHostException.html" title="class in java.rmi"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?java/rmi/UnmarshalException.html" target="_top">Frames</a></li>
<li><a href="UnmarshalException.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#fields_inherited_from_class_java.rmi.RemoteException">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#methods_inherited_from_class_java.rmi.RemoteException">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li>Method</li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">java.rmi</div>
<h2 title="Class UnmarshalException" class="title">Class UnmarshalException</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="../../java/lang/Object.html" title="class in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="../../java/lang/Throwable.html" title="class in java.lang">java.lang.Throwable</a></li>
<li>
<ul class="inheritance">
<li><a href="../../java/lang/Exception.html" title="class in java.lang">java.lang.Exception</a></li>
<li>
<ul class="inheritance">
<li><a href="../../java/io/IOException.html" title="class in java.io">java.io.IOException</a></li>
<li>
<ul class="inheritance">
<li><a href="../../java/rmi/RemoteException.html" title="class in java.rmi">java.rmi.RemoteException</a></li>
<li>
<ul class="inheritance">
<li>java.rmi.UnmarshalException</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../java/io/Serializable.html" title="interface in java.io">Serializable</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">UnmarshalException</span>
extends <a href="../../java/rmi/RemoteException.html" title="class in java.rmi">RemoteException</a></pre>
<div class="block">An <code>UnmarshalException</code> can be thrown while unmarshalling the
parameters or results of a remote method call if any of the following
conditions occur:
<ul>
<li> if an exception occurs while unmarshalling the call header
<li> if the protocol for the return value is invalid
<li> if a <code>java.io.IOException</code> occurs unmarshalling
parameters (on the server side) or the return value (on the client side).
<li> if a <code>java.lang.ClassNotFoundException</code> occurs during
unmarshalling parameters or return values
<li> if no skeleton can be loaded on the server-side; note that skeletons
are required in the 1.1 stub protocol, but not in the 1.2 stub protocol.
<li> if the method hash is invalid (i.e., missing method).
<li> if there is a failure to create a remote reference object for
a remote object's stub when it is unmarshalled.
</ul></div>
<dl><dt><span class="strong">Since:</span></dt>
<dd>JDK1.1</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../serialized-form.html#java.rmi.UnmarshalException">Serialized Form</a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="fields_inherited_from_class_java.rmi.RemoteException">
<!-- -->
</a>
<h3>Fields inherited from class java.rmi.<a href="../../java/rmi/RemoteException.html" title="class in java.rmi">RemoteException</a></h3>
<code><a href="../../java/rmi/RemoteException.html#detail">detail</a></code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../java/rmi/UnmarshalException.html#UnmarshalException(java.lang.String)">UnmarshalException</a></strong>(<a href="../../java/lang/String.html" title="class in java.lang">String</a> s)</code>
<div class="block">Constructs an <code>UnmarshalException</code> with the specified
detail message.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><strong><a href="../../java/rmi/UnmarshalException.html#UnmarshalException(java.lang.String,%20java.lang.Exception)">UnmarshalException</a></strong>(<a href="../../java/lang/String.html" title="class in java.lang">String</a> s,
<a href="../../java/lang/Exception.html" title="class in java.lang">Exception</a> ex)</code>
<div class="block">Constructs an <code>UnmarshalException</code> with the specified
detail message and nested exception.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.rmi.RemoteException">
<!-- -->
</a>
<h3>Methods inherited from class java.rmi.<a href="../../java/rmi/RemoteException.html" title="class in java.rmi">RemoteException</a></h3>
<code><a href="../../java/rmi/RemoteException.html#getCause()">getCause</a>, <a href="../../java/rmi/RemoteException.html#getMessage()">getMessage</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Throwable">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.<a href="../../java/lang/Throwable.html" title="class in java.lang">Throwable</a></h3>
<code><a href="../../java/lang/Throwable.html#addSuppressed(java.lang.Throwable)">addSuppressed</a>, <a href="../../java/lang/Throwable.html#fillInStackTrace()">fillInStackTrace</a>, <a href="../../java/lang/Throwable.html#getLocalizedMessage()">getLocalizedMessage</a>, <a href="../../java/lang/Throwable.html#getStackTrace()">getStackTrace</a>, <a href="../../java/lang/Throwable.html#getSuppressed()">getSuppressed</a>, <a href="../../java/lang/Throwable.html#initCause(java.lang.Throwable)">initCause</a>, <a href="../../java/lang/Throwable.html#printStackTrace()">printStackTrace</a>, <a href="../../java/lang/Throwable.html#printStackTrace(java.io.PrintStream)">printStackTrace</a>, <a href="../../java/lang/Throwable.html#printStackTrace(java.io.PrintWriter)">printStackTrace</a>, <a href="../../java/lang/Throwable.html#setStackTrace(java.lang.StackTraceElement[])">setStackTrace</a>, <a href="../../java/lang/Throwable.html#toString()">toString</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.<a href="../../java/lang/Object.html" title="class in java.lang">Object</a></h3>
<code><a href="../../java/lang/Object.html#clone()">clone</a>, <a href="../../java/lang/Object.html#equals(java.lang.Object)">equals</a>, <a href="../../java/lang/Object.html#finalize()">finalize</a>, <a href="../../java/lang/Object.html#getClass()">getClass</a>, <a href="../../java/lang/Object.html#hashCode()">hashCode</a>, <a href="../../java/lang/Object.html#notify()">notify</a>, <a href="../../java/lang/Object.html#notifyAll()">notifyAll</a>, <a href="../../java/lang/Object.html#wait()">wait</a>, <a href="../../java/lang/Object.html#wait(long)">wait</a>, <a href="../../java/lang/Object.html#wait(long,%20int)">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="UnmarshalException(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>UnmarshalException</h4>
<pre>public UnmarshalException(<a href="../../java/lang/String.html" title="class in java.lang">String</a> s)</pre>
<div class="block">Constructs an <code>UnmarshalException</code> with the specified
detail message.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>s</code> - the detail message</dd><dt><span class="strong">Since:</span></dt>
<dd>JDK1.1</dd></dl>
</li>
</ul>
<a name="UnmarshalException(java.lang.String, java.lang.Exception)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>UnmarshalException</h4>
<pre>public UnmarshalException(<a href="../../java/lang/String.html" title="class in java.lang">String</a> s,
<a href="../../java/lang/Exception.html" title="class in java.lang">Exception</a> ex)</pre>
<div class="block">Constructs an <code>UnmarshalException</code> with the specified
detail message and nested exception.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>s</code> - the detail message</dd><dd><code>ex</code> - the nested exception</dd><dt><span class="strong">Since:</span></dt>
<dd>JDK1.1</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/UnmarshalException.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em><strong>Java™ Platform<br>Standard Ed. 7</strong></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../java/rmi/UnknownHostException.html" title="class in java.rmi"><span class="strong">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?java/rmi/UnmarshalException.html" target="_top">Frames</a></li>
<li><a href="UnmarshalException.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#fields_inherited_from_class_java.rmi.RemoteException">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#methods_inherited_from_class_java.rmi.RemoteException">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li>Method</li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><font size="-1"> <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a> <br>For further API reference and developer documentation, see <a href="http://docs.oracle.com/javase/7/docs/index.html" target="_blank">Java SE Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> <a href="../../../legal/cpyr.html">Copyright</a> © 1993, 2015, Oracle and/or its affiliates. All rights reserved. </font></small></p>
</body>
</html>
|
clean/Linux-x86_64-4.04.2-2.0.5/released/8.7.2/automata/8.6.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>automata: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.2 / automata - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
automata
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-20 14:01:21 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-20 14:01:21 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.7.2 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/automata"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Automata"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [
"keyword: formal language theory"
"keyword: finite automata"
"keyword: push-down automata"
"keyword: rational langages"
"keyword: Kleene"
"category: Computer Science/Formal Languages Theory and Automata"
"date: June-July 1993"
]
authors: [ "Judicaël Courant" "Jean-Christophe Filliâtre" ]
bug-reports: "https://github.com/coq-contribs/automata/issues"
dev-repo: "git+https://github.com/coq-contribs/automata.git"
synopsis: "Beginning of formal language theory"
description: """
This library formalises the beginning of formal language theory:
finite automata and rational languages, context-free grammars
and push-down automata."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/automata/archive/v8.6.0.tar.gz"
checksum: "md5=ff3d1debdb8c1d47993e5bb235e6077e"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-automata.8.6.0 coq.8.7.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.2).
The following dependencies couldn't be met:
- coq-automata -> coq < 8.7~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-automata.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
public/js/app/bb-todo/templates/item-template.html | bsa-git/silex-mvc | <div class="view">
<input class="toggle" type="checkbox" {{ done ? 'checked="checked"' : '' }} />
<label><%- title %></label>
<a class="destroy"></a>
</div>
<input class="edit" type="text" value="<%- title %>" />
|
clean/Linux-x86_64-4.06.1-2.0.5/released/8.7.1/dpdgraph/0.6.1.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>dpdgraph: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1 / dpdgraph - 0.6.1</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
dpdgraph
<small>
0.6.1
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-24 17:13:48 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-24 17:13:48 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.7.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "yves.bertot@inria.fr"
license: "LGPL 2.1"
homepage: "https://github.com/karmaki/coq-dpdgraph"
build: [
["./configure"]
["echo" "%{jobs}%" "jobs for the linter"]
[make]
]
bug-reports: "https://github.com/karmaki/coq-dpdgraph/issues"
dev-repo: "git+https://github.com/karmaki/coq-dpdgraph.git"
install: [
[make "install" "BINDIR=%{bin}%"]
]
remove: [
["rm" "%{bin}%/dpd2dot" "%{bin}%/dpdusage"]
["rm" "-R" "%{lib}%/coq/user-contrib/dpdgraph"]
]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
"ocamlgraph"
]
authors: [ "Anne Pacalet" "Yves Bertot"]
synopsis: "Compute dependencies between Coq objects (definitions, theorems) and produce graphs"
flags: light-uninstall
url {
src:
"https://github.com/ybertot/coq-dpdgraph/archive/coq-dpdgraph-0.6.1.zip"
checksum: "md5=0477114ba537b184ad715c23d94ac0ca"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-dpdgraph.0.6.1 coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1).
The following dependencies couldn't be met:
- coq-dpdgraph -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-dpdgraph.0.6.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.04.2-2.0.5/released/8.7.1/qarith-stern-brocot/8.12.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>qarith-stern-brocot: 3 m 15 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1 / qarith-stern-brocot - 8.12.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
qarith-stern-brocot
<small>
8.12.0
<span class="label label-success">3 m 15 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-14 16:25:14 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-14 16:25:14 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.7.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/coq-community/qarith-stern-brocot"
dev-repo: "git+https://github.com/coq-community/qarith-stern-brocot.git"
bug-reports: "https://github.com/coq-community/qarith-stern-brocot/issues"
license: "LGPL-2.1-or-later"
synopsis: "Binary rational numbers"
description: """
Development of rational numbers as finite binary lists and defining
field operations on them in two different ways: strict and lazy.
"""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" {>= "8.7" & < "8.13~"}
]
tags: [
"category:Mathematics/Arithmetic and Number Theory/Rational numbers"
"category:Miscellaneous/Extracted Programs/Arithmetic"
"keyword:rational numbers"
"keyword:arithmetic"
"keyword:field tactic"
"keyword:binary lists"
"keyword:Stern-Brocot"
"logpath:QArithSternBrocot"
"date:2020-10-10"
]
authors: [
"Milad Niqui"
"Yves Bertot"
]
url {
src: "https://github.com/coq-community/qarith-stern-brocot/archive/v8.12.0.tar.gz"
checksum: "sha512=86e6fe06edd9a7cc9251a25ba0acf365df58ee4e384486808f83b92027299b5459082384395916f5e9798e42c3595279fb0eff76f0c58842f4fd73f7a2b7a80c"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-qarith-stern-brocot.8.12.0 coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-qarith-stern-brocot.8.12.0 coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>13 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-qarith-stern-brocot.8.12.0 coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>3 m 15 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 17 M</p>
<ul>
<li>2 M <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic_sign_properties.glob</code></li>
<li>891 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic_sign.vo</code></li>
<li>786 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/quadratic_correctness.glob</code></li>
<li>782 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/homographic_correctness.vo</code></li>
<li>755 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic_Qpositive_to_Qpositive.vo</code></li>
<li>528 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic_sign_properties.glob</code></li>
<li>489 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic_sign.glob</code></li>
<li>486 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic_sign.vo</code></li>
<li>470 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic_Qpositive_to_Qpositive.glob</code></li>
<li>470 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic_Qpositive_to_Q_properties.vo</code></li>
<li>392 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic_Qpositive_to_Qpositive.vo</code></li>
<li>355 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/quadratic_correctness.vo</code></li>
<li>342 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/general_Q.vo</code></li>
<li>310 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/quadraticAcc_Qquadratic_sign.glob</code></li>
<li>307 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic_Qpositive_to_Q_properties.vo</code></li>
<li>291 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic_Qpositive_to_Q_properties.glob</code></li>
<li>290 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic_sign_properties.vo</code></li>
<li>288 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic_sign_properties.v</code></li>
<li>276 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/homographic_correctness.glob</code></li>
<li>275 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Zaux.glob</code></li>
<li>268 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/homographicAcc_Qhomographic_sign.vo</code></li>
<li>250 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_denumerable.vo</code></li>
<li>238 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic.vo</code></li>
<li>221 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_to_R.glob</code></li>
<li>204 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/general_Q.glob</code></li>
<li>202 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/quadraticAcc_Qquadratic_sign.vo</code></li>
<li>201 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Zaux.vo</code></li>
<li>195 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive.vo</code></li>
<li>186 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic_Qpositive_to_Qpositive.glob</code></li>
<li>178 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic_sign.glob</code></li>
<li>167 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/positive_fraction_encoding.vo</code></li>
<li>154 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_ordered_field_properties.glob</code></li>
<li>151 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive_sub.glob</code></li>
<li>149 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic.glob</code></li>
<li>139 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/quadratic_correctness.v</code></li>
<li>137 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_to_R.vo</code></li>
<li>129 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/R_addenda.vo</code></li>
<li>112 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/R_addenda.glob</code></li>
<li>111 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_ordered_field_properties.vo</code></li>
<li>109 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic_Qpositive_to_Q_properties.glob</code></li>
<li>108 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/homographicAcc_Qhomographic_sign.glob</code></li>
<li>103 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive_sub.vo</code></li>
<li>96 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive.glob</code></li>
<li>85 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/second_Field_Theory_Q.vo</code></li>
<li>84 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic_sign_properties.v</code></li>
<li>82 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic_sign.v</code></li>
<li>80 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_order.vo</code></li>
<li>79 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive_plus_mult.glob</code></li>
<li>77 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic_sign_properties.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive_plus_mult.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_order.glob</code></li>
<li>69 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic.vo</code></li>
<li>66 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic_Qpositive_to_Qpositive.v</code></li>
<li>62 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_field.vo</code></li>
<li>61 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Zaux.v</code></li>
<li>60 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/homographic_correctness.v</code></li>
<li>59 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/sqrt2.vo</code></li>
<li>54 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive_le.vo</code></li>
<li>49 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qmax_min.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_field.glob</code></li>
<li>47 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/positive_fraction_encoding.glob</code></li>
<li>47 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/general_Q.v</code></li>
<li>46 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qabs.vo</code></li>
<li>44 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive_order.vo</code></li>
<li>43 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/quadraticAcc_Qquadratic_sign.v</code></li>
<li>43 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Field_Theory_Q.vo</code></li>
<li>41 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic_Qpositive_to_Q_properties.v</code></li>
<li>41 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/QArith_Stern_Brocot.vo</code></li>
<li>40 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qmax_min.glob</code></li>
<li>39 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_Archimedean.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/homographicAcc_Qhomographic_sign.v</code></li>
<li>38 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qquadratic.v</code></li>
<li>38 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qabs.glob</code></li>
<li>38 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic_sign.v</code></li>
<li>34 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_to_R.v</code></li>
<li>34 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic.glob</code></li>
<li>33 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic_Qpositive_to_Qpositive.v</code></li>
<li>30 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive_le.glob</code></li>
<li>30 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qsyntax.vo</code></li>
<li>29 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/sqrt2.glob</code></li>
<li>28 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/second_Field_Theory_Q.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_denumerable.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive_order.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic_Qpositive_to_Q_properties.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_ordered_field_properties.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive_sub.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Merge_Order.glob</code></li>
<li>19 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/R_addenda.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_order.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Merge_Order.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/positive_fraction_encoding.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_Archimedean.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_field.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qhomographic.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive_plus_mult.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_denumerable.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive_le.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qmax_min.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Field_Theory_Q.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qabs.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/second_Field_Theory_Q.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/sqrt2.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qpositive_order.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Merge_Order.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Q_Archimedean.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Field_Theory_Q.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qsyntax.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/QArith_Stern_Brocot.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/Qsyntax.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/QArithSternBrocot/QArith_Stern_Brocot.glob</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-qarith-stern-brocot.8.12.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
v5/user-agent-detail/07/d6/07d67d05-7f27-43a4-b9ef-bca40291ce6b.html | ThaDafinser/UserAgentParserComparison |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>User agent detail - Mozilla/5.0 (Linux; U; Android 2.3.5; en-es; HTC/Explorer/1.41.161.3 Build/GRJ90) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="../circle.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="section">
<h1 class="header center orange-text">User agent detail</h1>
<div class="row center">
<h5 class="header light">
Mozilla/5.0 (Linux; U; Android 2.3.5; en-es; HTC/Explorer/1.41.161.3 Build/GRJ90) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
</h5>
</div>
</div>
<div class="section">
<table class="striped"><tr><th></th><th colspan="3">General</th><th colspan="5">Device</th><th colspan="3">Bot</th><th colspan="2"></th></tr><tr><th>Provider</th><th>Browser</th><th>Engine</th><th>OS</th><th>Brand</th><th>Model</th><th>Type</th><th>Is mobile</th><th>Is touch</th><th>Is bot</th><th>Name</th><th>Type</th><th>Parse time</th><th>Actions</th></tr><tr><th colspan="14" class="green lighten-3">Test suite</th></tr><tr><td>PiwikDeviceDetector<br /><small>3.6.1</small><br /><small>vendor/piwik/device-detector/Tests/fixtures/smartphone-1.yml</small></td><td>Android Browser </td><td>WebKit </td><td>Android 2.3.5</td><td style="border-left: 1px solid #555">HTC</td><td>Explorer</td><td>smartphone</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-a952e161-ace3-4c73-a03c-12746b7cf6d1">Detail</a>
<!-- Modal Structure -->
<div id="modal-a952e161-ace3-4c73-a03c-12746b7cf6d1" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>PiwikDeviceDetector result detail</h4>
<p><pre><code class="php">Array
(
[user_agent] => Mozilla/5.0 (Linux; U; Android 2.3.5; en-es; HTC/Explorer/1.41.161.3 Build/GRJ90) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
[os] => Array
(
[name] => Android
[short_name] => AND
[version] => 2.3.5
[platform] =>
)
[client] => Array
(
[type] => browser
[name] => Android Browser
[short_name] => AN
[version] =>
[engine] => WebKit
)
[device] => Array
(
[type] => smartphone
[brand] => HT
[model] => Explorer
)
[os_family] => Android
[browser_family] => Android Browser
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><th colspan="14" class="green lighten-3">Providers</th></tr><tr><td>BrowscapFull<br /><small>6014</small><br /></td><td>Android 4.0</td><td>WebKit </td><td>Android 2.3</td><td style="border-left: 1px solid #555">HTC</td><td>Explorer</td><td>Mobile Phone</td><td>yes</td><td></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.0156</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-47a9cd06-e213-4882-bc34-db6aed664223">Detail</a>
<!-- Modal Structure -->
<div id="modal-47a9cd06-e213-4882-bc34-db6aed664223" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapFull result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^mozilla\/5\.0 \(.*linux.*android.2\.3.*htc\/explorer.* build\/.*\) applewebkit\/.* \(khtml,.*like gecko.*\) version\/4\.0.*safari.*$/
[browser_name_pattern] => mozilla/5.0 (*linux*android?2.3*htc/explorer* build/*) applewebkit/* (khtml,*like gecko*) version/4.0*safari*
[parent] => Android Browser 4.0
[comment] => Android Browser 4.0
[browser] => Android
[browser_type] => Browser
[browser_bits] => 32
[browser_maker] => Google Inc
[browser_modus] => unknown
[version] => 4.0
[majorver] => 4
[minorver] => 0
[platform] => Android
[platform_version] => 2.3
[platform_description] => Android OS
[platform_bits] => 32
[platform_maker] => Google Inc
[alpha] =>
[beta] =>
[win16] =>
[win32] =>
[win64] =>
[frames] => 1
[iframes] => 1
[tables] => 1
[cookies] => 1
[backgroundsounds] =>
[javascript] => 1
[vbscript] =>
[javaapplets] => 1
[activexcontrols] =>
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] =>
[crawler] =>
[isfake] =>
[isanonymized] =>
[ismodified] =>
[cssversion] => 3
[aolversion] => 0
[device_name] => Explorer
[device_maker] => HTC
[device_type] => Mobile Phone
[device_pointing_method] => unknown
[device_code_name] => A310e
[device_brand_name] => HTC
[renderingengine_name] => WebKit
[renderingengine_version] => unknown
[renderingengine_description] => For Google Chrome, iOS (including both mobile Safari, WebViews within third-party apps, and web clips), Safari, Arora, Midori, OmniWeb, Shiira, iCab since version 4, Web, SRWare Iron, Rekonq, and in Maxthon 3.
[renderingengine_maker] => Apple Inc
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>BrowscapLite<br /><small>6014</small><br /></td><td>Android 4.0</td><td><i class="material-icons">close</i></td><td>Android </td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>Mobile Phone</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-42bb56ba-b834-47c5-bea0-c0270e9ab371">Detail</a>
<!-- Modal Structure -->
<div id="modal-42bb56ba-b834-47c5-bea0-c0270e9ab371" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapLite result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^mozilla\/5\.0 \(.*linux.*android.* build\/.*\).*applewebkit\/.*\(.*khtml,.*like gecko.*\).*version\/4\.0.*safari.*$/
[browser_name_pattern] => mozilla/5.0 (*linux*android* build/*)*applewebkit/*(*khtml,*like gecko*)*version/4.0*safari*
[parent] => Android Browser 4.0
[comment] => Android Browser 4.0
[browser] => Android
[browser_type] => unknown
[browser_bits] => 0
[browser_maker] => unknown
[browser_modus] => unknown
[version] => 4.0
[majorver] => 0
[minorver] => 0
[platform] => Android
[platform_version] => unknown
[platform_description] => unknown
[platform_bits] => 0
[platform_maker] => unknown
[alpha] => false
[beta] => false
[win16] => false
[win32] => false
[win64] => false
[frames] => false
[iframes] => false
[tables] => false
[cookies] => false
[backgroundsounds] => false
[javascript] => false
[vbscript] => false
[javaapplets] => false
[activexcontrols] => false
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] => false
[crawler] => false
[isfake] => false
[isanonymized] => false
[ismodified] => false
[cssversion] => 0
[aolversion] => 0
[device_name] => unknown
[device_maker] => unknown
[device_type] => Mobile Phone
[device_pointing_method] => unknown
[device_code_name] => unknown
[device_brand_name] => unknown
[renderingengine_name] => unknown
[renderingengine_version] => unknown
[renderingengine_description] => unknown
[renderingengine_maker] => unknown
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>BrowscapPhp<br /><small>6014</small><br /></td><td>Android 4.0</td><td><i class="material-icons">close</i></td><td>Android </td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>Mobile Phone</td><td>yes</td><td>yes</td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.0156</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-ad0041a2-b0f4-43f6-a70d-cad1443caa68">Detail</a>
<!-- Modal Structure -->
<div id="modal-ad0041a2-b0f4-43f6-a70d-cad1443caa68" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapPhp result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^mozilla\/5\.0 \(.*linux.*android.* build\/.*\).*applewebkit\/.*\(.*khtml,.*like gecko.*\).*version\/4\.0.*safari.*$/
[browser_name_pattern] => mozilla/5.0 (*linux*android* build/*)*applewebkit/*(*khtml,*like gecko*)*version/4.0*safari*
[parent] => Android Browser 4.0
[comment] => Android Browser 4.0
[browser] => Android
[browser_type] => unknown
[browser_bits] => 0
[browser_maker] => Google Inc
[browser_modus] => unknown
[version] => 4.0
[majorver] => 4
[minorver] => 0
[platform] => Android
[platform_version] => unknown
[platform_description] => unknown
[platform_bits] => 0
[platform_maker] => unknown
[alpha] => false
[beta] => false
[win16] => false
[win32] => false
[win64] => false
[frames] => false
[iframes] => false
[tables] => false
[cookies] => false
[backgroundsounds] => false
[javascript] => false
[vbscript] => false
[javaapplets] => false
[activexcontrols] => false
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] => false
[crawler] =>
[isfake] => false
[isanonymized] => false
[ismodified] => false
[cssversion] => 0
[aolversion] => 0
[device_name] => unknown
[device_maker] => unknown
[device_type] => Mobile Phone
[device_pointing_method] => touchscreen
[device_code_name] => unknown
[device_brand_name] => unknown
[renderingengine_name] => unknown
[renderingengine_version] => unknown
[renderingengine_description] => unknown
[renderingengine_maker] => unknown
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>DonatjUAParser<br /><small>v0.5.1</small><br /></td><td>Android Browser 4.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-15fbc1f0-2615-4d42-b5d9-a30dd647b050">Detail</a>
<!-- Modal Structure -->
<div id="modal-15fbc1f0-2615-4d42-b5d9-a30dd647b050" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>DonatjUAParser result detail</h4>
<p><pre><code class="php">Array
(
[platform] => Android
[browser] => Android Browser
[version] => 4.0
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>JenssegersAgent<br /><small>v2.3.3</small><br /></td><td>Safari 4.0</td><td><i class="material-icons">close</i></td><td>AndroidOS 2.3.5</td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-b85a2b91-6a55-4436-a82c-1ea0d46e2e51">Detail</a>
<!-- Modal Structure -->
<div id="modal-b85a2b91-6a55-4436-a82c-1ea0d46e2e51" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>JenssegersAgent result detail</h4>
<p><pre><code class="php">Array
(
[browserName] => Safari
[browserVersion] => 4.0
[osName] => AndroidOS
[osVersion] => 2.3.5
[deviceModel] => HTC
[isMobile] => 1
[isRobot] =>
[botName] =>
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>NeutrinoApiCom<br /><small></small><br /></td><td>Android Webkit 4.0</td><td><i class="material-icons">close</i></td><td>Android 2.3.5</td><td style="border-left: 1px solid #555">HTC</td><td>A310e</td><td>mobile-browser</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.2516</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-8c2a7a4e-3fbf-4df2-8d61-5e730422f67b">Detail</a>
<!-- Modal Structure -->
<div id="modal-8c2a7a4e-3fbf-4df2-8d61-5e730422f67b" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>NeutrinoApiCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[mobile_screen_height] => 480
[is_mobile] => 1
[type] => mobile-browser
[mobile_brand] => HTC
[mobile_model] => A310e
[version] => 4.0
[is_android] => 1
[browser_name] => Android Webkit
[operating_system_family] => Android
[operating_system_version] => 2.3.5
[is_ios] =>
[producer] => Google Inc.
[operating_system] => Android 2.3.x Gingerbread
[mobile_screen_width] => 320
[mobile_browser] => Android Webkit
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>PiwikDeviceDetector<br /><small>3.6.1</small><br /></td><td>Android Browser </td><td>WebKit </td><td>Android 2.3</td><td style="border-left: 1px solid #555">HTC</td><td>Explorer</td><td>smartphone</td><td>yes</td><td></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.0156</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-4a941d34-a8d3-4914-9724-346f60ad7046">Detail</a>
<!-- Modal Structure -->
<div id="modal-4a941d34-a8d3-4914-9724-346f60ad7046" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>PiwikDeviceDetector result detail</h4>
<p><pre><code class="php">Array
(
[client] => Array
(
[type] => browser
[name] => Android Browser
[short_name] => AN
[version] =>
[engine] => WebKit
)
[operatingSystem] => Array
(
[name] => Android
[short_name] => AND
[version] => 2.3
[platform] =>
)
[device] => Array
(
[brand] => HT
[brandName] => HTC
[model] => Explorer
[device] => 1
[deviceName] => smartphone
)
[bot] =>
[extra] => Array
(
[isBot] =>
[isBrowser] => 1
[isFeedReader] =>
[isMobileApp] =>
[isPIM] =>
[isLibrary] =>
[isMediaPlayer] =>
[isCamera] =>
[isCarBrowser] =>
[isConsole] =>
[isFeaturePhone] =>
[isPhablet] =>
[isPortableMediaPlayer] =>
[isSmartDisplay] =>
[isSmartphone] => 1
[isTablet] =>
[isTV] =>
[isDesktop] =>
[isMobile] => 1
[isTouchEnabled] =>
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>SinergiBrowserDetector<br /><small>6.0.1</small><br /></td><td>Navigator 4.0</td><td><i class="material-icons">close</i></td><td>Android 2.3.5</td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-ec1cd248-02b0-457e-8a9d-35bb99af008c">Detail</a>
<!-- Modal Structure -->
<div id="modal-ec1cd248-02b0-457e-8a9d-35bb99af008c" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>SinergiBrowserDetector result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Sinergi\BrowserDetector\Browser Object
(
[userAgent:Sinergi\BrowserDetector\Browser:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; U; Android 2.3.5; en-es; HTC/Explorer/1.41.161.3 Build/GRJ90) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
)
[name:Sinergi\BrowserDetector\Browser:private] => Navigator
[version:Sinergi\BrowserDetector\Browser:private] => 4.0
[isRobot:Sinergi\BrowserDetector\Browser:private] =>
[isChromeFrame:Sinergi\BrowserDetector\Browser:private] =>
[isFacebookWebView:Sinergi\BrowserDetector\Browser:private] =>
[isCompatibilityMode:Sinergi\BrowserDetector\Browser:private] =>
)
[operatingSystem] => Sinergi\BrowserDetector\Os Object
(
[name:Sinergi\BrowserDetector\Os:private] => Android
[version:Sinergi\BrowserDetector\Os:private] => 2.3.5
[isMobile:Sinergi\BrowserDetector\Os:private] => 1
[userAgent:Sinergi\BrowserDetector\Os:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; U; Android 2.3.5; en-es; HTC/Explorer/1.41.161.3 Build/GRJ90) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
)
)
[device] => Sinergi\BrowserDetector\Device Object
(
[name:Sinergi\BrowserDetector\Device:private] => unknown
[userAgent:Sinergi\BrowserDetector\Device:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; U; Android 2.3.5; en-es; HTC/Explorer/1.41.161.3 Build/GRJ90) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
)
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UAParser<br /><small>v3.4.5</small><br /></td><td>Android 2.3.5</td><td><i class="material-icons">close</i></td><td>Android 2.3.5</td><td style="border-left: 1px solid #555">HTC</td><td>Explorer</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-3160e405-8a8f-46dd-8f47-5115f06462d2">Detail</a>
<!-- Modal Structure -->
<div id="modal-3160e405-8a8f-46dd-8f47-5115f06462d2" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UAParser result detail</h4>
<p><pre><code class="php">UAParser\Result\Client Object
(
[ua] => UAParser\Result\UserAgent Object
(
[major] => 2
[minor] => 3
[patch] => 5
[family] => Android
)
[os] => UAParser\Result\OperatingSystem Object
(
[major] => 2
[minor] => 3
[patch] => 5
[patchMinor] =>
[family] => Android
)
[device] => UAParser\Result\Device Object
(
[brand] => HTC
[model] => Explorer
[family] => HTC Explorer
)
[originalUserAgent] => Mozilla/5.0 (Linux; U; Android 2.3.5; en-es; HTC/Explorer/1.41.161.3 Build/GRJ90) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UserAgentApiCom<br /><small></small><br /></td><td>Safari 533.1</td><td>WebKit 533.1</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>Mobile</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.1404</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-afeb05fb-26b9-4509-b8ac-0c604a9e97d6">Detail</a>
<!-- Modal Structure -->
<div id="modal-afeb05fb-26b9-4509-b8ac-0c604a9e97d6" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UserAgentApiCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[platform_name] => HTC
[platform_version] => 1.41.161.3
[platform_type] => Mobile
[browser_name] => Safari
[browser_version] => 533.1
[engine_name] => WebKit
[engine_version] => 533.1
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UserAgentStringCom<br /><small></small><br /></td><td>Android Webkit Browser </td><td><i class="material-icons">close</i></td><td>Android 2.3.5</td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.0624</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-08a9ddfb-838f-48d7-9ede-1d132306b2ee">Detail</a>
<!-- Modal Structure -->
<div id="modal-08a9ddfb-838f-48d7-9ede-1d132306b2ee" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UserAgentStringCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[agent_type] => Browser
[agent_name] => Android Webkit Browser
[agent_version] => --
[os_type] => Android
[os_name] => Android
[os_versionName] =>
[os_versionNumber] => 2.3.5
[os_producer] =>
[os_producerURL] =>
[linux_distibution] => Null
[agent_language] => English
[agent_languageTag] => en-es
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>WhatIsMyBrowserCom<br /><small></small><br /></td><td>Android Browser 4.0</td><td>WebKit 533.1</td><td>Android 2.3.5</td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.234</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-5fc1ff22-a74d-481b-9ad1-fcfde73ded9c">Detail</a>
<!-- Modal Structure -->
<div id="modal-5fc1ff22-a74d-481b-9ad1-fcfde73ded9c" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhatIsMyBrowserCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[operating_system_name] => Android
[simple_sub_description_string] =>
[simple_browser_string] => Android Browser 4 on Android (Gingerbread)
[browser_version] => 4
[extra_info] => Array
(
)
[operating_platform] => HTC
[extra_info_table] => stdClass Object
(
[System Build] => GRJ90
)
[layout_engine_name] => WebKit
[detected_addons] => Array
(
)
[operating_system_flavour_code] =>
[hardware_architecture] =>
[operating_system_flavour] =>
[operating_system_frameworks] => Array
(
)
[browser_name_code] => android-browser
[operating_system_version] => Gingerbread
[simple_operating_platform_string] => HTC
[is_abusive] =>
[layout_engine_version] => 533.1
[browser_capabilities] => Array
(
)
[operating_platform_vendor_name] =>
[operating_system] => Android (Gingerbread)
[operating_system_version_full] => 2.3.5
[operating_platform_code] =>
[browser_name] => Android Browser
[operating_system_name_code] => android
[user_agent] => Mozilla/5.0 (Linux; U; Android 2.3.5; en-es; HTC/Explorer/1.41.161.3 Build/GRJ90) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
[browser_version_full] => 4.0
[browser] => Android Browser 4
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>WhichBrowser<br /><small>v2.0.18</small><br /></td><td>Android Browser </td><td>Webkit 533.1</td><td>Android 2.3.5</td><td style="border-left: 1px solid #555"></td><td>HTC/Explorer/1.41.161.3</td><td>mobile:smart</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-083a336f-5d73-4505-84f3-c5fc9bb78652">Detail</a>
<!-- Modal Structure -->
<div id="modal-083a336f-5d73-4505-84f3-c5fc9bb78652" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhichBrowser result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Array
(
[name] => Android Browser
)
[engine] => Array
(
[name] => Webkit
[version] => 533.1
)
[os] => Array
(
[name] => Android
[version] => 2.3.5
)
[device] => Array
(
[type] => mobile
[subtype] => smart
[model] => HTC/Explorer/1.41.161.3
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Woothee<br /><small>v1.2.0</small><br /></td><td>Safari 4.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>smartphone</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-f00e7198-0e22-49fe-bad0-dbb3a9cde9b9">Detail</a>
<!-- Modal Structure -->
<div id="modal-f00e7198-0e22-49fe-bad0-dbb3a9cde9b9" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Woothee result detail</h4>
<p><pre><code class="php">Array
(
[name] => Safari
[vendor] => Apple
[version] => 4.0
[category] => smartphone
[os] => Android
[os_version] => 2.3.5
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Wurfl<br /><small>1.7.1.0</small><br /></td><td>Android Webkit 2.3.5</td><td><i class="material-icons">close</i></td><td>Android 2.3.5</td><td style="border-left: 1px solid #555">HTC</td><td>A310e</td><td>Smartphone</td><td>yes</td><td>yes</td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.0312</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-a2bedf8c-4a95-42a7-96c5-aaf233b2ac50">Detail</a>
<!-- Modal Structure -->
<div id="modal-a2bedf8c-4a95-42a7-96c5-aaf233b2ac50" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Wurfl result detail</h4>
<p><pre><code class="php">Array
(
[virtual] => Array
(
[is_android] => true
[is_ios] => false
[is_windows_phone] => false
[is_app] => false
[is_full_desktop] => false
[is_largescreen] => false
[is_mobile] => true
[is_robot] => false
[is_smartphone] => true
[is_touchscreen] => true
[is_wml_preferred] => false
[is_xhtmlmp_preferred] => false
[is_html_preferred] => true
[advertised_device_os] => Android
[advertised_device_os_version] => 2.3.5
[advertised_browser] => Android Webkit
[advertised_browser_version] => 2.3.5
[complete_device_name] => HTC A310e (Explorer)
[device_name] => HTC Explorer
[form_factor] => Smartphone
[is_phone] => true
[is_app_webview] => false
)
[all] => Array
(
[brand_name] => HTC
[model_name] => A310e
[unique] => true
[ununiqueness_handler] =>
[is_wireless_device] => true
[device_claims_web_support] => true
[has_qwerty_keyboard] => true
[can_skip_aligned_link_row] => true
[uaprof] => http://www.htcmms.com.tw/Android/Common/PJ03/ua-profile.xml
[uaprof2] =>
[uaprof3] =>
[nokia_series] => 0
[nokia_edition] => 0
[device_os] => Android
[mobile_browser] => Android Webkit
[mobile_browser_version] =>
[device_os_version] => 2.3
[pointing_method] => touchscreen
[release_date] => 2011_october
[marketing_name] => Explorer
[model_extra_info] => HTC Pico
[nokia_feature_pack] => 0
[can_assign_phone_number] => true
[is_tablet] => false
[manufacturer_name] =>
[is_bot] => false
[is_google_glass] => false
[proportional_font] => false
[built_in_back_button_support] => false
[card_title_support] => true
[softkey_support] => false
[table_support] => true
[numbered_menus] => false
[menu_with_select_element_recommended] => false
[menu_with_list_of_links_recommended] => true
[icons_on_menu_items_support] => false
[break_list_of_links_with_br_element_recommended] => true
[access_key_support] => false
[wrap_mode_support] => false
[times_square_mode_support] => false
[deck_prefetch_support] => false
[elective_forms_recommended] => true
[wizards_recommended] => false
[image_as_link_support] => false
[insert_br_element_after_widget_recommended] => false
[wml_can_display_images_and_text_on_same_line] => false
[wml_displays_image_in_center] => false
[opwv_wml_extensions_support] => false
[wml_make_phone_call_string] => wtai://wp/mc;
[chtml_display_accesskey] => false
[emoji] => false
[chtml_can_display_images_and_text_on_same_line] => false
[chtml_displays_image_in_center] => false
[imode_region] => none
[chtml_make_phone_call_string] => tel:
[chtml_table_support] => false
[xhtml_honors_bgcolor] => true
[xhtml_supports_forms_in_table] => true
[xhtml_support_wml2_namespace] => false
[xhtml_autoexpand_select] => false
[xhtml_select_as_dropdown] => false
[xhtml_select_as_radiobutton] => false
[xhtml_select_as_popup] => false
[xhtml_display_accesskey] => false
[xhtml_supports_invisible_text] => false
[xhtml_supports_inline_input] => false
[xhtml_supports_monospace_font] => false
[xhtml_supports_table_for_layout] => true
[xhtml_supports_css_cell_table_coloring] => true
[xhtml_format_as_css_property] => false
[xhtml_format_as_attribute] => false
[xhtml_nowrap_mode] => false
[xhtml_marquee_as_css_property] => false
[xhtml_readable_background_color1] => #FFFFFF
[xhtml_readable_background_color2] => #FFFFFF
[xhtml_allows_disabled_form_elements] => true
[xhtml_document_title_support] => true
[xhtml_preferred_charset] => iso-8859-1
[opwv_xhtml_extensions_support] => false
[xhtml_make_phone_call_string] => tel:
[xhtmlmp_preferred_mime_type] => text/html
[xhtml_table_support] => true
[xhtml_send_sms_string] => sms:
[xhtml_send_mms_string] => mms:
[xhtml_file_upload] => supported
[cookie_support] => true
[accept_third_party_cookie] => true
[xhtml_supports_iframe] => full
[xhtml_avoid_accesskeys] => true
[xhtml_can_embed_video] => none
[ajax_support_javascript] => true
[ajax_manipulate_css] => true
[ajax_support_getelementbyid] => true
[ajax_support_inner_html] => true
[ajax_xhr_type] => standard
[ajax_manipulate_dom] => true
[ajax_support_events] => true
[ajax_support_event_listener] => true
[ajax_preferred_geoloc_api] => w3c_api
[xhtml_support_level] => 4
[preferred_markup] => html_web_4_0
[wml_1_1] => false
[wml_1_2] => false
[wml_1_3] => false
[html_wi_w3_xhtmlbasic] => true
[html_wi_oma_xhtmlmp_1_0] => true
[html_wi_imode_html_1] => false
[html_wi_imode_html_2] => false
[html_wi_imode_html_3] => false
[html_wi_imode_html_4] => false
[html_wi_imode_html_5] => false
[html_wi_imode_htmlx_1] => false
[html_wi_imode_htmlx_1_1] => false
[html_wi_imode_compact_generic] => false
[html_web_3_2] => true
[html_web_4_0] => true
[voicexml] => false
[multipart_support] => false
[total_cache_disable_support] => false
[time_to_live_support] => false
[resolution_width] => 320
[resolution_height] => 480
[columns] => 60
[max_image_width] => 320
[max_image_height] => 400
[rows] => 40
[physical_screen_width] => 82
[physical_screen_height] => 122
[dual_orientation] => true
[density_class] => 1.0
[wbmp] => true
[bmp] => false
[epoc_bmp] => false
[gif_animated] => false
[jpg] => true
[png] => true
[tiff] => false
[transparent_png_alpha] => true
[transparent_png_index] => true
[svgt_1_1] => false
[svgt_1_1_plus] => false
[greyscale] => false
[gif] => true
[colors] => 65536
[webp_lossy_support] => false
[webp_lossless_support] => false
[post_method_support] => true
[basic_authentication_support] => true
[empty_option_value_support] => true
[emptyok] => false
[nokia_voice_call] => false
[wta_voice_call] => false
[wta_phonebook] => false
[wta_misc] => false
[wta_pdc] => false
[https_support] => true
[phone_id_provided] => false
[max_data_rate] => 384
[wifi] => true
[sdio] => false
[vpn] => false
[has_cellular_radio] => true
[max_deck_size] => 2000000
[max_url_length_in_requests] => 256
[max_url_length_homepage] => 0
[max_url_length_bookmark] => 0
[max_url_length_cached_page] => 0
[max_no_of_connection_settings] => 0
[max_no_of_bookmarks] => 0
[max_length_of_username] => 0
[max_length_of_password] => 0
[max_object_size] => 0
[downloadfun_support] => false
[directdownload_support] => true
[inline_support] => false
[oma_support] => true
[ringtone] => false
[ringtone_3gpp] => false
[ringtone_midi_monophonic] => false
[ringtone_midi_polyphonic] => false
[ringtone_imelody] => false
[ringtone_digiplug] => false
[ringtone_compactmidi] => false
[ringtone_mmf] => false
[ringtone_rmf] => false
[ringtone_xmf] => false
[ringtone_amr] => false
[ringtone_awb] => false
[ringtone_aac] => false
[ringtone_wav] => false
[ringtone_mp3] => false
[ringtone_spmidi] => false
[ringtone_qcelp] => false
[ringtone_voices] => 1
[ringtone_df_size_limit] => 0
[ringtone_directdownload_size_limit] => 0
[ringtone_inline_size_limit] => 0
[ringtone_oma_size_limit] => 0
[wallpaper] => false
[wallpaper_max_width] => 0
[wallpaper_max_height] => 0
[wallpaper_preferred_width] => 0
[wallpaper_preferred_height] => 0
[wallpaper_resize] => none
[wallpaper_wbmp] => false
[wallpaper_bmp] => false
[wallpaper_gif] => false
[wallpaper_jpg] => false
[wallpaper_png] => false
[wallpaper_tiff] => false
[wallpaper_greyscale] => false
[wallpaper_colors] => 2
[wallpaper_df_size_limit] => 0
[wallpaper_directdownload_size_limit] => 0
[wallpaper_inline_size_limit] => 0
[wallpaper_oma_size_limit] => 0
[screensaver] => false
[screensaver_max_width] => 0
[screensaver_max_height] => 0
[screensaver_preferred_width] => 0
[screensaver_preferred_height] => 0
[screensaver_resize] => none
[screensaver_wbmp] => false
[screensaver_bmp] => false
[screensaver_gif] => false
[screensaver_jpg] => false
[screensaver_png] => false
[screensaver_greyscale] => false
[screensaver_colors] => 2
[screensaver_df_size_limit] => 0
[screensaver_directdownload_size_limit] => 0
[screensaver_inline_size_limit] => 0
[screensaver_oma_size_limit] => 0
[picture] => false
[picture_max_width] => 0
[picture_max_height] => 0
[picture_preferred_width] => 0
[picture_preferred_height] => 0
[picture_resize] => none
[picture_wbmp] => false
[picture_bmp] => false
[picture_gif] => false
[picture_jpg] => false
[picture_png] => false
[picture_greyscale] => false
[picture_colors] => 2
[picture_df_size_limit] => 0
[picture_directdownload_size_limit] => 0
[picture_inline_size_limit] => 0
[picture_oma_size_limit] => 0
[video] => false
[oma_v_1_0_forwardlock] => false
[oma_v_1_0_combined_delivery] => false
[oma_v_1_0_separate_delivery] => false
[streaming_video] => true
[streaming_3gpp] => true
[streaming_mp4] => true
[streaming_mov] => false
[streaming_video_size_limit] => 0
[streaming_real_media] => none
[streaming_flv] => false
[streaming_3g2] => false
[streaming_vcodec_h263_0] => 10
[streaming_vcodec_h263_3] => -1
[streaming_vcodec_mpeg4_sp] => 2
[streaming_vcodec_mpeg4_asp] => -1
[streaming_vcodec_h264_bp] => 3.0
[streaming_acodec_amr] => nb
[streaming_acodec_aac] => lc
[streaming_wmv] => none
[streaming_preferred_protocol] => rtsp
[streaming_preferred_http_protocol] => progressive_download
[wap_push_support] => false
[connectionless_service_indication] => false
[connectionless_service_load] => false
[connectionless_cache_operation] => false
[connectionoriented_unconfirmed_service_indication] => false
[connectionoriented_unconfirmed_service_load] => false
[connectionoriented_unconfirmed_cache_operation] => false
[connectionoriented_confirmed_service_indication] => false
[connectionoriented_confirmed_service_load] => false
[connectionoriented_confirmed_cache_operation] => false
[utf8_support] => true
[ascii_support] => false
[iso8859_support] => false
[expiration_date] => false
[j2me_cldc_1_0] => false
[j2me_cldc_1_1] => false
[j2me_midp_1_0] => false
[j2me_midp_2_0] => false
[doja_1_0] => false
[doja_1_5] => false
[doja_2_0] => false
[doja_2_1] => false
[doja_2_2] => false
[doja_3_0] => false
[doja_3_5] => false
[doja_4_0] => false
[j2me_jtwi] => false
[j2me_mmapi_1_0] => false
[j2me_mmapi_1_1] => false
[j2me_wmapi_1_0] => false
[j2me_wmapi_1_1] => false
[j2me_wmapi_2_0] => false
[j2me_btapi] => false
[j2me_3dapi] => false
[j2me_locapi] => false
[j2me_nokia_ui] => false
[j2me_motorola_lwt] => false
[j2me_siemens_color_game] => false
[j2me_siemens_extension] => false
[j2me_heap_size] => 0
[j2me_max_jar_size] => 0
[j2me_storage_size] => 0
[j2me_max_record_store_size] => 0
[j2me_screen_width] => 0
[j2me_screen_height] => 0
[j2me_canvas_width] => 0
[j2me_canvas_height] => 0
[j2me_bits_per_pixel] => 0
[j2me_audio_capture_enabled] => false
[j2me_video_capture_enabled] => false
[j2me_photo_capture_enabled] => false
[j2me_capture_image_formats] => none
[j2me_http] => false
[j2me_https] => false
[j2me_socket] => false
[j2me_udp] => false
[j2me_serial] => false
[j2me_gif] => false
[j2me_gif89a] => false
[j2me_jpg] => false
[j2me_png] => false
[j2me_bmp] => false
[j2me_bmp3] => false
[j2me_wbmp] => false
[j2me_midi] => false
[j2me_wav] => false
[j2me_amr] => false
[j2me_mp3] => false
[j2me_mp4] => false
[j2me_imelody] => false
[j2me_rmf] => false
[j2me_au] => false
[j2me_aac] => false
[j2me_realaudio] => false
[j2me_xmf] => false
[j2me_wma] => false
[j2me_3gpp] => false
[j2me_h263] => false
[j2me_svgt] => false
[j2me_mpeg4] => false
[j2me_realvideo] => false
[j2me_real8] => false
[j2me_realmedia] => false
[j2me_left_softkey_code] => 0
[j2me_right_softkey_code] => 0
[j2me_middle_softkey_code] => 0
[j2me_select_key_code] => 0
[j2me_return_key_code] => 0
[j2me_clear_key_code] => 0
[j2me_datefield_no_accepts_null_date] => false
[j2me_datefield_broken] => false
[receiver] => false
[sender] => false
[mms_max_size] => 0
[mms_max_height] => 0
[mms_max_width] => 0
[built_in_recorder] => false
[built_in_camera] => true
[mms_jpeg_baseline] => false
[mms_jpeg_progressive] => false
[mms_gif_static] => false
[mms_gif_animated] => false
[mms_png] => false
[mms_bmp] => false
[mms_wbmp] => false
[mms_amr] => false
[mms_wav] => false
[mms_midi_monophonic] => false
[mms_midi_polyphonic] => false
[mms_midi_polyphonic_voices] => 0
[mms_spmidi] => false
[mms_mmf] => false
[mms_mp3] => false
[mms_evrc] => false
[mms_qcelp] => false
[mms_ota_bitmap] => false
[mms_nokia_wallpaper] => false
[mms_nokia_operatorlogo] => false
[mms_nokia_3dscreensaver] => false
[mms_nokia_ringingtone] => false
[mms_rmf] => false
[mms_xmf] => false
[mms_symbian_install] => false
[mms_jar] => false
[mms_jad] => false
[mms_vcard] => false
[mms_vcalendar] => false
[mms_wml] => false
[mms_wbxml] => false
[mms_wmlc] => false
[mms_video] => false
[mms_mp4] => false
[mms_3gpp] => false
[mms_3gpp2] => false
[mms_max_frame_rate] => 0
[nokiaring] => false
[picturemessage] => false
[operatorlogo] => false
[largeoperatorlogo] => false
[callericon] => false
[nokiavcard] => false
[nokiavcal] => false
[sckl_ringtone] => false
[sckl_operatorlogo] => false
[sckl_groupgraphic] => false
[sckl_vcard] => false
[sckl_vcalendar] => false
[text_imelody] => false
[ems] => false
[ems_variablesizedpictures] => false
[ems_imelody] => false
[ems_odi] => false
[ems_upi] => false
[ems_version] => 0
[siemens_ota] => false
[siemens_logo_width] => 101
[siemens_logo_height] => 29
[siemens_screensaver_width] => 101
[siemens_screensaver_height] => 50
[gprtf] => false
[sagem_v1] => false
[sagem_v2] => false
[panasonic] => false
[sms_enabled] => true
[wav] => false
[mmf] => false
[smf] => false
[mld] => false
[midi_monophonic] => false
[midi_polyphonic] => false
[sp_midi] => false
[rmf] => false
[xmf] => false
[compactmidi] => false
[digiplug] => false
[nokia_ringtone] => false
[imelody] => false
[au] => false
[amr] => false
[awb] => false
[aac] => true
[mp3] => true
[voices] => 1
[qcelp] => false
[evrc] => false
[flash_lite_version] =>
[fl_wallpaper] => false
[fl_screensaver] => false
[fl_standalone] => false
[fl_browser] => false
[fl_sub_lcd] => false
[full_flash_support] => true
[css_supports_width_as_percentage] => true
[css_border_image] => webkit
[css_rounded_corners] => webkit
[css_gradient] => none
[css_spriting] => true
[css_gradient_linear] => none
[is_transcoder] => false
[transcoder_ua_header] => user-agent
[rss_support] => false
[pdf_support] => true
[progressive_download] => true
[playback_vcodec_h263_0] => 10
[playback_vcodec_h263_3] => -1
[playback_vcodec_mpeg4_sp] => 0
[playback_vcodec_mpeg4_asp] => -1
[playback_vcodec_h264_bp] => 3.0
[playback_real_media] => none
[playback_3gpp] => true
[playback_3g2] => false
[playback_mp4] => true
[playback_mov] => false
[playback_acodec_amr] => nb
[playback_acodec_aac] => none
[playback_df_size_limit] => 0
[playback_directdownload_size_limit] => 0
[playback_inline_size_limit] => 0
[playback_oma_size_limit] => 0
[playback_acodec_qcelp] => false
[playback_wmv] => none
[hinted_progressive_download] => true
[html_preferred_dtd] => html4
[viewport_supported] => true
[viewport_width] => device_width_token
[viewport_userscalable] => no
[viewport_initial_scale] =>
[viewport_maximum_scale] =>
[viewport_minimum_scale] =>
[mobileoptimized] => false
[handheldfriendly] => false
[canvas_support] => full
[image_inlining] => true
[is_smarttv] => false
[is_console] => false
[nfc_support] => false
[ux_full_desktop] => false
[jqm_grade] => A
[is_sencha_touch_ok] => false
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Zsxsoft<br /><small>1.3</small><br /></td><td>Android Webkit 4.0</td><td><i class="material-icons">close</i></td><td>Android 2.3.5</td><td style="border-left: 1px solid #555">HTC</td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-5d43e024-b46c-44f6-8914-529b05569bc2">Detail</a>
<!-- Modal Structure -->
<div id="modal-5d43e024-b46c-44f6-8914-529b05569bc2" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Zsxsoft result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Array
(
[link] => http://developer.android.com/reference/android/webkit/package-summary.html
[title] => Android Webkit 4.0
[name] => Android Webkit
[version] => 4.0
[code] => android-webkit
[image] => img/16/browser/android-webkit.png
)
[os] => Array
(
[link] => http://www.android.com/
[name] => Android
[version] => 2.3.5
[code] => android
[x64] =>
[title] => Android 2.3.5
[type] => os
[dir] => os
[image] => img/16/os/android.png
)
[device] => Array
(
[link] => http://en.wikipedia.org/wiki/High_Tech_Computer_Corporation
[title] => HTC
[model] =>
[brand] => HTC
[code] => htc
[dir] => device
[type] => device
[image] => img/16/device/htc.png
)
[platform] => Array
(
[link] => http://en.wikipedia.org/wiki/High_Tech_Computer_Corporation
[title] => HTC
[model] =>
[brand] => HTC
[code] => htc
[dir] => device
[type] => device
[image] => img/16/device/htc.png
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr></table>
</div>
<div class="section">
<h1 class="header center orange-text">About this comparison</h1>
<div class="row center">
<h5 class="header light">
The primary goal of this project is simple<br />
I wanted to know which user agent parser is the most accurate in each part - device detection, bot detection and so on...<br />
<br />
The secondary goal is to provide a source for all user agent parsers to improve their detection based on this results.<br />
<br />
You can also improve this further, by suggesting ideas at <a href="https://github.com/ThaDafinser/UserAgentParserComparison">ThaDafinser/UserAgentParserComparison</a><br />
<br />
The comparison is based on the abstraction by <a href="https://github.com/ThaDafinser/UserAgentParser">ThaDafinser/UserAgentParser</a>
</h5>
</div>
</div>
<div class="card">
<div class="card-content">
Comparison created <i>2016-05-10 07:50:49</i> | by
<a href="https://github.com/ThaDafinser">ThaDafinser</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/list.js/1.2.0/list.min.js"></script>
<script>
$(document).ready(function(){
// the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered
$('.modal-trigger').leanModal();
});
</script>
</body>
</html> |
server/templates/schedule.html | anantb/confer | {% extends "layout.html" %}
{% block links %}
<span id="logged_in_name">{{login_name}}</span>
<a class="button mobile-nav" href="#">Menu</a>
<a class="button navitem nav_papers" href="/{{conf}}/papers">My Papers</a>
<a class="button active navitem nav_schedule" href="/{{conf}}/schedule">My Schedule</a>
<a class="button navitem nav_meetups" href="/{{conf}}/meetups">My Meetups</a>
{% if login_id %}
<a class="button navitem" href="/logout">Log Out</a>
{% else %}
<a class="button navitem" href="/login?redirect_url=/{{conf}}/schedule">Log In</a>
{% endif %}
{% endblock %}
{% block content %}
<div class="blurb nav_papers">
Tag sessions and papers you want to see and get updated recommendations on the fly. Use your likes, recommendations, and other filtering options to discover your personal schedule.
{% if meetups_enabled == False %}
<br/><br/>Want to find people having similar interests as yours? Try <a class="blue bold" href="/{{conf}}/meetups">Meetups</a>!
<br/>
{% endif %}
</div>
<div class="goto-link">
<a class="button nav_papers" href="/{{conf}}/papers">Go to My Papers</a>
</div>
<!-- Schedule -->
<div id="schedule">
<div id="filters">
<table id="filter_schedule">
</table>
</div>
<br />
<br />
<div class="search-container">
<label id="search_label">Search:</label>
<input type="text" id="search_session" placeholder="Enter session or paper titles, authors, or keywords" class="search-box"></input>
<span class="button" id="search_sessions_btn">Search</span>
<div id="search-results">Showing <span class="count">all</span> sessions</div>
</div>
<div id="program">
</div> <!-- program -->
</div> <!-- schedule -->
{% endblock %}
{% block javascript %}
<!-- Javascript -->
<script type="text/javascript">
$(document).ready(function(){
populate_filters()
populate_schedule()
setup_filters()
bind_events()
log('schedule')
});
</script>
<script type="text/javascript" src="/static/javascript/confer.js"></script>
{% endblock %}
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.10.1/menhirlib/20190620.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>menhirlib: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.10.1 / menhirlib - 20190620</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
menhirlib
<small>
20190620
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-10-02 09:47:12 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-02 09:47:12 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.10.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
synopsis: "A support library for verified Coq parsers produced by Menhir"
maintainer: "francois.pottier@inria.fr"
authors: [
"Jacques-Henri Jourdan <jacques-henri.jourdan@lri.fr>"
]
homepage: "https://gitlab.inria.fr/fpottier/menhir"
dev-repo: "git+https://gitlab.inria.fr/fpottier/menhir.git"
bug-reports: "jacques-henri.jourdan@lri.fr"
build: [
[make "-C" "coq-menhirlib" "-j%{jobs}%"]
]
install: [
[make "-C" "coq-menhirlib" "install"]
]
depends: [
"coq" { >= "8.8.1" & < "8.9" }
]
conflicts: [
"menhir" { != "20190620" }
]
tags: [
"date:2019-06-20"
"logpath:MenhirLib"
]
url {
src:
"https://gitlab.inria.fr/fpottier/menhir/-/archive/20190620/archive.tar.gz"
checksum: [
"md5=f77d327a6203dfa031a9b94466b0c560"
"sha512=7f21e60353219a70a3a037a1e77422aa11465d532335114b184dcefb5570c88070cb2f052351710dd13adcd3c0a15a3e8439b41b8ba4583dab71f6ce26d397f0"
]
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-menhirlib.20190620 coq.8.10.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.1).
The following dependencies couldn't be met:
- coq-menhirlib -> coq < 8.9 -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-menhirlib.20190620</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.03.0-2.0.5/released/8.9.1/unimath-category-theory/0.1.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>unimath-category-theory: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.9.1 / unimath-category-theory - 0.1.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
unimath-category-theory
<small>
0.1.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-28 10:10:01 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-28 10:10:01 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.9.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.03.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.03.0 Official 4.03.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "opam@clarus.me"
homepage: "https://github.com/UniMath/UniMath"
dev-repo: "git+https://github.com/UniMath/UniMath.git"
bug-reports: "https://github.com/UniMath/UniMath/issues"
license: "Kind of MIT"
authors: ["The UniMath Development Team"]
build: [
["coq_makefile" "-f" "Make" "-o" "Makefile"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
depends: [
"ocaml"
"coq" {>= "8.5.0" & < "8.6"}
"coq-unimath-foundations"
]
synopsis: "Aims to formalize a substantial body of mathematics using the univalent point of view"
extra-files: ["Make" "md5=2d439c0305755682eb748f6d6e24e74a"]
url {
src: "https://github.com/UniMath/UniMath/archive/v0.1.tar.gz"
checksum: "md5=1ed57c1028e227a309f428a6dc5f0866"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-unimath-category-theory.0.1.0 coq.8.9.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.9.1).
The following dependencies couldn't be met:
- coq-unimath-category-theory -> coq-unimath-foundations -> coq < 8.6 -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-unimath-category-theory.0.1.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
v4/user-agent-detail/37/90/37904066-6ea0-471a-a6a6-e050188d3d51.html | ThaDafinser/UserAgentParserComparison |
<html>
<head>
<title>User agent detail - Mozilla/5.0 (Linux; U; Android 2.2.2; zh-cn; coolpad-Coolpad W706 Build/FROYO) AppleWebKit/533.1 (KHTML,like Gecko) Version/4.0 Mobile Safari/533.1/UCWEB7.6.0.75/139/32411</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="section">
<h1 class="header center orange-text">User agent detail</h1>
<div class="row center">
<h5 class="header light">
Mozilla/5.0 (Linux; U; Android 2.2.2; zh-cn; coolpad-Coolpad W706 Build/FROYO) AppleWebKit/533.1 (KHTML,like Gecko) Version/4.0 Mobile Safari/533.1/UCWEB7.6.0.75/139/32411
</h5>
</div>
</div>
<div class="section">
<table class="striped"><tr><th></th><th colspan="3">General</th><th colspan="5">Device</th><th colspan="3">Bot</th><th colspan="2"></th></tr><tr><th>Provider</th><th>Browser</th><th>Engine</th><th>OS</th><th>Brand</th><th>Model</th><th>Type</th><th>Is mobile</th><th>Is touch</th><th>Is bot</th><th>Name</th><th>Type</th><th>Parse time</th><th>Actions</th></tr><tr><th colspan="14" class="green lighten-3">Source result (test suite)</th></tr><tr><td>ua-parser/uap-core<br /><small>vendor/thadafinser/uap-core/tests/test_device.yaml</small></td><td> </td><td> </td><td> </td><td style="border-left: 1px solid #555">Coolpad</td><td>coolpad-W706</td><td></td><td></td><td></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-test">Detail</a>
<!-- Modal Structure -->
<div id="modal-test" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Testsuite result detail</h4>
<p><pre><code class="php">Array
(
[user_agent_string] => Mozilla/5.0 (Linux; U; Android 2.2.2; zh-cn; coolpad-Coolpad W706 Build/FROYO) AppleWebKit/533.1 (KHTML,like Gecko) Version/4.0 Mobile Safari/533.1/UCWEB7.6.0.75/139/32411
[family] => coolpad-W706
[brand] => Coolpad
[model] => coolpad-W706
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><th colspan="14" class="green lighten-3">Providers</th></tr><tr><td>BrowscapPhp<br /><small>6012</small></td><td>Android 4.0</td><td>WebKit </td><td>Android 2.2</td><td style="border-left: 1px solid #555"></td><td></td><td>Mobile Phone</td><td>yes</td><td>yes</td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.014</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-215ac98d-ccf8-4615-916e-5a819d6a59c9">Detail</a>
<!-- Modal Structure -->
<div id="modal-215ac98d-ccf8-4615-916e-5a819d6a59c9" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapPhp result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^mozilla\/5\.0 \(.*linux.*android.2\.2.* build\/.*\).*applewebkit\/.*\(.*khtml,.*like gecko.*\).*version\/4\.0.*safari.*$/
[browser_name_pattern] => mozilla/5.0 (*linux*android?2.2* build/*)*applewebkit/*(*khtml,*like gecko*)*version/4.0*safari*
[parent] => Android Browser 4.0
[comment] => Android Browser 4.0
[browser] => Android
[browser_type] => Browser
[browser_bits] => 32
[browser_maker] => Google Inc
[browser_modus] => unknown
[version] => 4.0
[majorver] => 4
[minorver] => 0
[platform] => Android
[platform_version] => 2.2
[platform_description] => Android OS
[platform_bits] => 32
[platform_maker] => Google Inc
[alpha] =>
[beta] =>
[win16] =>
[win32] =>
[win64] =>
[frames] => 1
[iframes] => 1
[tables] => 1
[cookies] => 1
[backgroundsounds] =>
[javascript] => 1
[vbscript] =>
[javaapplets] => 1
[activexcontrols] =>
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] =>
[crawler] =>
[cssversion] => 3
[aolversion] => 0
[device_name] => general Mobile Phone
[device_maker] => unknown
[device_type] => Mobile Phone
[device_pointing_method] => touchscreen
[device_code_name] => general Mobile Phone
[device_brand_name] => unknown
[renderingengine_name] => WebKit
[renderingengine_version] => unknown
[renderingengine_description] => For Google Chrome, iOS (including both mobile Safari, WebViews within third-party apps, and web clips), Safari, Arora, Midori, OmniWeb, Shiira, iCab since version 4, Web, SRWare Iron, Rekonq, and in Maxthon 3.
[renderingengine_maker] => Apple Inc
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>DonatjUAParser<br /><small>v0.5.0</small></td><td>Android Browser 4.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-f1436016-fdf1-4aea-b4be-1d7c99ab0661">Detail</a>
<!-- Modal Structure -->
<div id="modal-f1436016-fdf1-4aea-b4be-1d7c99ab0661" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>DonatjUAParser result detail</h4>
<p><pre><code class="php">Array
(
[platform] => Android
[browser] => Android Browser
[version] => 4.0
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>NeutrinoApiCom<br /><small></small></td><td>Android Webkit 4.0</td><td><i class="material-icons">close</i></td><td>Android 2.2.2</td><td style="border-left: 1px solid #555">Generic</td><td>Android 2.2</td><td>mobile-browser</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.38304</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-9b0fa449-ec1b-40c8-8b1c-9486eb3b9cbc">Detail</a>
<!-- Modal Structure -->
<div id="modal-9b0fa449-ec1b-40c8-8b1c-9486eb3b9cbc" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>NeutrinoApiCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[mobile_screen_height] => 480
[is_mobile] => 1
[type] => mobile-browser
[mobile_brand] => Generic
[mobile_model] => Android 2.2
[version] => 4.0
[is_android] => 1
[browser_name] => Android Webkit
[operating_system_family] => Android
[operating_system_version] => 2.2.2
[is_ios] =>
[producer] => Google Inc.
[operating_system] => Android 2.2.x Froyo
[mobile_screen_width] => 320
[mobile_browser] => UCWeb
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>PiwikDeviceDetector<br /><small>3.5.2</small></td><td>UC Browser 7.6</td><td>WebKit </td><td>Android 2.2</td><td style="border-left: 1px solid #555">Coolpad</td><td>Coolpad W706</td><td>smartphone</td><td>yes</td><td></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.006</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-21638055-738d-46ba-a1b1-f5114bc26475">Detail</a>
<!-- Modal Structure -->
<div id="modal-21638055-738d-46ba-a1b1-f5114bc26475" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>PiwikDeviceDetector result detail</h4>
<p><pre><code class="php">Array
(
[client] => Array
(
[type] => browser
[name] => UC Browser
[short_name] => UC
[version] => 7.6
[engine] => WebKit
)
[operatingSystem] => Array
(
[name] => Android
[short_name] => AND
[version] => 2.2
[platform] =>
)
[device] => Array
(
[brand] => CO
[brandName] => Coolpad
[model] => Coolpad W706
[device] => 1
[deviceName] => smartphone
)
[bot] =>
[extra] => Array
(
[isBot] =>
[isBrowser] => 1
[isFeedReader] =>
[isMobileApp] =>
[isPIM] =>
[isLibrary] =>
[isMediaPlayer] =>
[isCamera] =>
[isCarBrowser] =>
[isConsole] =>
[isFeaturePhone] =>
[isPhablet] =>
[isPortableMediaPlayer] =>
[isSmartDisplay] =>
[isSmartphone] => 1
[isTablet] =>
[isTV] =>
[isDesktop] =>
[isMobile] => 1
[isTouchEnabled] =>
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>SinergiBrowserDetector<br /><small>6.0.0</small></td><td>Navigator 4.0</td><td><i class="material-icons">close</i></td><td>Android 2.2.2</td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.001</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-5415e7f2-ef7b-434c-abe0-b71ba9f6707c">Detail</a>
<!-- Modal Structure -->
<div id="modal-5415e7f2-ef7b-434c-abe0-b71ba9f6707c" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>SinergiBrowserDetector result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Sinergi\BrowserDetector\Browser Object
(
[userAgent:Sinergi\BrowserDetector\Browser:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; U; Android 2.2.2; zh-cn; coolpad-Coolpad W706 Build/FROYO) AppleWebKit/533.1 (KHTML,like Gecko) Version/4.0 Mobile Safari/533.1/UCWEB7.6.0.75/139/32411
)
[name:Sinergi\BrowserDetector\Browser:private] => Navigator
[version:Sinergi\BrowserDetector\Browser:private] => 4.0
[isRobot:Sinergi\BrowserDetector\Browser:private] =>
[isChromeFrame:Sinergi\BrowserDetector\Browser:private] =>
)
[operatingSystem] => Sinergi\BrowserDetector\Os Object
(
[name:Sinergi\BrowserDetector\Os:private] => Android
[version:Sinergi\BrowserDetector\Os:private] => 2.2.2
[isMobile:Sinergi\BrowserDetector\Os:private] => 1
[userAgent:Sinergi\BrowserDetector\Os:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; U; Android 2.2.2; zh-cn; coolpad-Coolpad W706 Build/FROYO) AppleWebKit/533.1 (KHTML,like Gecko) Version/4.0 Mobile Safari/533.1/UCWEB7.6.0.75/139/32411
)
)
[device] => Sinergi\BrowserDetector\Device Object
(
[name:Sinergi\BrowserDetector\Device:private] => unknown
[userAgent:Sinergi\BrowserDetector\Device:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; U; Android 2.2.2; zh-cn; coolpad-Coolpad W706 Build/FROYO) AppleWebKit/533.1 (KHTML,like Gecko) Version/4.0 Mobile Safari/533.1/UCWEB7.6.0.75/139/32411
)
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UAParser<br /><small>v3.4.5</small></td><td>UC Browser 7.6.0</td><td><i class="material-icons">close</i></td><td>Android 2.2.2</td><td style="border-left: 1px solid #555">Coolpad</td><td>coolpad-W706</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.001</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-346c1a98-5fd3-454f-b6c8-350f2f505d8b">Detail</a>
<!-- Modal Structure -->
<div id="modal-346c1a98-5fd3-454f-b6c8-350f2f505d8b" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UAParser result detail</h4>
<p><pre><code class="php">UAParser\Result\Client Object
(
[ua] => UAParser\Result\UserAgent Object
(
[major] => 7
[minor] => 6
[patch] => 0
[family] => UC Browser
)
[os] => UAParser\Result\OperatingSystem Object
(
[major] => 2
[minor] => 2
[patch] => 2
[patchMinor] =>
[family] => Android
)
[device] => UAParser\Result\Device Object
(
[brand] => Coolpad
[model] => coolpad-W706
[family] => coolpad-W706
)
[originalUserAgent] => Mozilla/5.0 (Linux; U; Android 2.2.2; zh-cn; coolpad-Coolpad W706 Build/FROYO) AppleWebKit/533.1 (KHTML,like Gecko) Version/4.0 Mobile Safari/533.1/UCWEB7.6.0.75/139/32411
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UserAgentStringCom<br /><small></small></td><td>UC Browser 7.6.0.75</td><td><i class="material-icons">close</i></td><td>Android 2.2.2</td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.06501</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-9cdd8b45-a2eb-406b-bd27-7e48af38ffd4">Detail</a>
<!-- Modal Structure -->
<div id="modal-9cdd8b45-a2eb-406b-bd27-7e48af38ffd4" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UserAgentStringCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[agent_type] => Mobile Browser
[agent_name] => UC Browser
[agent_version] => 7.6.0.75
[os_type] => Android
[os_name] => Android
[os_versionName] =>
[os_versionNumber] => 2.2.2
[os_producer] =>
[os_producerURL] =>
[linux_distibution] => Null
[agent_language] => Chinese - China
[agent_languageTag] => zh-cn
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>WhatIsMyBrowserCom<br /><small></small></td><td>UC Browser 7.6.0.75</td><td>WebKit 533.1</td><td>Android 2.2.2</td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.42504</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-9795f66f-7271-430e-973a-a5c0e14dc35a">Detail</a>
<!-- Modal Structure -->
<div id="modal-9795f66f-7271-430e-973a-a5c0e14dc35a" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhatIsMyBrowserCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[operating_system_name] => Android
[simple_sub_description_string] =>
[simple_browser_string] => UC Browser 7.6 on Android (Froyo)
[browser_version] => 7.6
[extra_info] => Array
(
)
[operating_platform] =>
[extra_info_table] => Array
(
)
[layout_engine_name] => WebKit
[detected_addons] => Array
(
)
[operating_system_flavour_code] =>
[hardware_architecture] =>
[operating_system_flavour] =>
[operating_system_frameworks] => Array
(
)
[browser_name_code] => uc-browser
[operating_system_version] => Froyo
[simple_operating_platform_string] =>
[is_abusive] =>
[layout_engine_version] => 533.1
[browser_capabilities] => Array
(
)
[operating_platform_vendor_name] =>
[operating_system] => Android (Froyo)
[operating_system_version_full] => 2.2.2
[operating_platform_code] =>
[browser_name] => UC Browser
[operating_system_name_code] => android
[user_agent] => Mozilla/5.0 (Linux; U; Android 2.2.2; zh-cn; coolpad-Coolpad W706 Build/FROYO) AppleWebKit/533.1 (KHTML,like Gecko) Version/4.0 Mobile Safari/533.1/UCWEB7.6.0.75/139/32411
[browser_version_full] => 7.6.0.75
[browser] => UC Browser 7.6
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>WhichBrowser<br /><small>2.0.10</small></td><td>UC Browser 7.6</td><td>Webkit 533.1</td><td>Android 2.2.2</td><td style="border-left: 1px solid #555">Coolpad</td><td>-Coolpad</td><td>mobile:smart</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.17102</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-342c8d32-4765-40a8-8a5c-af3a38d19ae4">Detail</a>
<!-- Modal Structure -->
<div id="modal-342c8d32-4765-40a8-8a5c-af3a38d19ae4" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhichBrowser result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Array
(
[name] => UC Browser
[version] => 7.6
[type] => browser
)
[engine] => Array
(
[name] => Webkit
[version] => 533.1
)
[os] => Array
(
[name] => Android
[version] => 2.2.2
)
[device] => Array
(
[type] => mobile
[subtype] => smart
[manufacturer] => Coolpad
[model] => -Coolpad
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Woothee<br /><small>v1.2.0</small></td><td>Safari 4.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>smartphone</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-3f285ff5-314b-4db4-9948-54572e92e7b6">Detail</a>
<!-- Modal Structure -->
<div id="modal-3f285ff5-314b-4db4-9948-54572e92e7b6" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Woothee result detail</h4>
<p><pre><code class="php">Array
(
[name] => Safari
[vendor] => Apple
[version] => 4.0
[category] => smartphone
[os] => Android
[os_version] => 2.2.2
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Wurfl<br /><small>1.6.4</small></td><td> </td><td><i class="material-icons">close</i></td><td>Linux </td><td style="border-left: 1px solid #555"></td><td></td><td>Smartphone</td><td>yes</td><td>yes</td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.016</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-1a1aee36-7ce7-4111-a391-8e2c501f1532">Detail</a>
<!-- Modal Structure -->
<div id="modal-1a1aee36-7ce7-4111-a391-8e2c501f1532" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Wurfl result detail</h4>
<p><pre><code class="php">Array
(
[virtual] => Array
(
[is_android] => true
[is_ios] => false
[is_windows_phone] => false
[is_app] => false
[is_full_desktop] => false
[is_largescreen] => false
[is_mobile] => true
[is_robot] => false
[is_smartphone] => true
[is_touchscreen] => true
[is_wml_preferred] => false
[is_xhtmlmp_preferred] => false
[is_html_preferred] => true
[advertised_device_os] => Linux
[advertised_device_os_version] =>
[advertised_browser] =>
[advertised_browser_version] =>
[complete_device_name] => Generic Android 2.2
[form_factor] => Smartphone
[is_phone] => true
[is_app_webview] => false
)
[all] => Array
(
[brand_name] => Generic
[model_name] => Android 2.2
[unique] => true
[ununiqueness_handler] =>
[is_wireless_device] => true
[device_claims_web_support] => true
[has_qwerty_keyboard] => true
[can_skip_aligned_link_row] => true
[uaprof] =>
[uaprof2] =>
[uaprof3] =>
[nokia_series] => 0
[nokia_edition] => 0
[device_os] => Android
[mobile_browser] => UCWeb
[mobile_browser_version] => 7.8
[device_os_version] => 2.2
[pointing_method] => touchscreen
[release_date] => 2009_october
[marketing_name] =>
[model_extra_info] =>
[nokia_feature_pack] => 0
[can_assign_phone_number] => true
[is_tablet] => false
[manufacturer_name] =>
[is_bot] => false
[is_google_glass] => false
[proportional_font] => false
[built_in_back_button_support] => false
[card_title_support] => true
[softkey_support] => false
[table_support] => true
[numbered_menus] => false
[menu_with_select_element_recommended] => false
[menu_with_list_of_links_recommended] => true
[icons_on_menu_items_support] => false
[break_list_of_links_with_br_element_recommended] => true
[access_key_support] => false
[wrap_mode_support] => false
[times_square_mode_support] => false
[deck_prefetch_support] => false
[elective_forms_recommended] => true
[wizards_recommended] => false
[image_as_link_support] => false
[insert_br_element_after_widget_recommended] => false
[wml_can_display_images_and_text_on_same_line] => false
[wml_displays_image_in_center] => false
[opwv_wml_extensions_support] => false
[wml_make_phone_call_string] => wtai://wp/mc;
[chtml_display_accesskey] => false
[emoji] => false
[chtml_can_display_images_and_text_on_same_line] => false
[chtml_displays_image_in_center] => false
[imode_region] => none
[chtml_make_phone_call_string] => tel:
[chtml_table_support] => false
[xhtml_honors_bgcolor] => true
[xhtml_supports_forms_in_table] => true
[xhtml_support_wml2_namespace] => false
[xhtml_autoexpand_select] => false
[xhtml_select_as_dropdown] => false
[xhtml_select_as_radiobutton] => false
[xhtml_select_as_popup] => false
[xhtml_display_accesskey] => false
[xhtml_supports_invisible_text] => false
[xhtml_supports_inline_input] => false
[xhtml_supports_monospace_font] => false
[xhtml_supports_table_for_layout] => true
[xhtml_supports_css_cell_table_coloring] => true
[xhtml_format_as_css_property] => false
[xhtml_format_as_attribute] => false
[xhtml_nowrap_mode] => false
[xhtml_marquee_as_css_property] => false
[xhtml_readable_background_color1] => #FFFFFF
[xhtml_readable_background_color2] => #FFFFFF
[xhtml_allows_disabled_form_elements] => true
[xhtml_document_title_support] => true
[xhtml_preferred_charset] => iso-8859-1
[opwv_xhtml_extensions_support] => false
[xhtml_make_phone_call_string] => wtai://wp/mc;
[xhtmlmp_preferred_mime_type] => text/html
[xhtml_table_support] => true
[xhtml_send_sms_string] => none
[xhtml_send_mms_string] => none
[xhtml_file_upload] => not_supported
[cookie_support] => true
[accept_third_party_cookie] => true
[xhtml_supports_iframe] => full
[xhtml_avoid_accesskeys] => true
[xhtml_can_embed_video] => play_and_stop
[ajax_support_javascript] => true
[ajax_manipulate_css] => true
[ajax_support_getelementbyid] => true
[ajax_support_inner_html] => true
[ajax_xhr_type] => standard
[ajax_manipulate_dom] => true
[ajax_support_events] => true
[ajax_support_event_listener] => true
[ajax_preferred_geoloc_api] => w3c_api
[xhtml_support_level] => 4
[preferred_markup] => html_web_4_0
[wml_1_1] => true
[wml_1_2] => false
[wml_1_3] => false
[html_wi_w3_xhtmlbasic] => true
[html_wi_oma_xhtmlmp_1_0] => true
[html_wi_imode_html_1] => false
[html_wi_imode_html_2] => false
[html_wi_imode_html_3] => false
[html_wi_imode_html_4] => false
[html_wi_imode_html_5] => false
[html_wi_imode_htmlx_1] => false
[html_wi_imode_htmlx_1_1] => false
[html_wi_imode_compact_generic] => false
[html_web_3_2] => true
[html_web_4_0] => true
[voicexml] => false
[multipart_support] => false
[total_cache_disable_support] => false
[time_to_live_support] => false
[resolution_width] => 320
[resolution_height] => 480
[columns] => 60
[max_image_width] => 320
[max_image_height] => 400
[rows] => 40
[physical_screen_width] => 34
[physical_screen_height] => 50
[dual_orientation] => true
[density_class] => 1.0
[wbmp] => true
[bmp] => false
[epoc_bmp] => false
[gif_animated] => false
[jpg] => true
[png] => true
[tiff] => false
[transparent_png_alpha] => true
[transparent_png_index] => true
[svgt_1_1] => false
[svgt_1_1_plus] => false
[greyscale] => false
[gif] => true
[colors] => 65536
[webp_lossy_support] => false
[webp_lossless_support] => false
[post_method_support] => true
[basic_authentication_support] => true
[empty_option_value_support] => true
[emptyok] => false
[nokia_voice_call] => false
[wta_voice_call] => false
[wta_phonebook] => false
[wta_misc] => false
[wta_pdc] => false
[https_support] => true
[phone_id_provided] => false
[max_data_rate] => 384
[wifi] => true
[sdio] => false
[vpn] => false
[has_cellular_radio] => true
[max_deck_size] => 2000000
[max_url_length_in_requests] => 256
[max_url_length_homepage] => 0
[max_url_length_bookmark] => 0
[max_url_length_cached_page] => 0
[max_no_of_connection_settings] => 0
[max_no_of_bookmarks] => 0
[max_length_of_username] => 0
[max_length_of_password] => 0
[max_object_size] => 0
[downloadfun_support] => false
[directdownload_support] => true
[inline_support] => false
[oma_support] => true
[ringtone] => false
[ringtone_3gpp] => false
[ringtone_midi_monophonic] => false
[ringtone_midi_polyphonic] => false
[ringtone_imelody] => false
[ringtone_digiplug] => false
[ringtone_compactmidi] => false
[ringtone_mmf] => false
[ringtone_rmf] => false
[ringtone_xmf] => false
[ringtone_amr] => false
[ringtone_awb] => false
[ringtone_aac] => false
[ringtone_wav] => false
[ringtone_mp3] => false
[ringtone_spmidi] => false
[ringtone_qcelp] => false
[ringtone_voices] => 1
[ringtone_df_size_limit] => 0
[ringtone_directdownload_size_limit] => 0
[ringtone_inline_size_limit] => 0
[ringtone_oma_size_limit] => 0
[wallpaper] => false
[wallpaper_max_width] => 0
[wallpaper_max_height] => 0
[wallpaper_preferred_width] => 0
[wallpaper_preferred_height] => 0
[wallpaper_resize] => none
[wallpaper_wbmp] => false
[wallpaper_bmp] => false
[wallpaper_gif] => false
[wallpaper_jpg] => false
[wallpaper_png] => false
[wallpaper_tiff] => false
[wallpaper_greyscale] => false
[wallpaper_colors] => 2
[wallpaper_df_size_limit] => 0
[wallpaper_directdownload_size_limit] => 0
[wallpaper_inline_size_limit] => 0
[wallpaper_oma_size_limit] => 0
[screensaver] => false
[screensaver_max_width] => 0
[screensaver_max_height] => 0
[screensaver_preferred_width] => 0
[screensaver_preferred_height] => 0
[screensaver_resize] => none
[screensaver_wbmp] => false
[screensaver_bmp] => false
[screensaver_gif] => false
[screensaver_jpg] => false
[screensaver_png] => false
[screensaver_greyscale] => false
[screensaver_colors] => 2
[screensaver_df_size_limit] => 0
[screensaver_directdownload_size_limit] => 0
[screensaver_inline_size_limit] => 0
[screensaver_oma_size_limit] => 0
[picture] => false
[picture_max_width] => 0
[picture_max_height] => 0
[picture_preferred_width] => 0
[picture_preferred_height] => 0
[picture_resize] => none
[picture_wbmp] => false
[picture_bmp] => false
[picture_gif] => false
[picture_jpg] => false
[picture_png] => false
[picture_greyscale] => false
[picture_colors] => 2
[picture_df_size_limit] => 0
[picture_directdownload_size_limit] => 0
[picture_inline_size_limit] => 0
[picture_oma_size_limit] => 0
[video] => false
[oma_v_1_0_forwardlock] => false
[oma_v_1_0_combined_delivery] => false
[oma_v_1_0_separate_delivery] => false
[streaming_video] => true
[streaming_3gpp] => true
[streaming_mp4] => true
[streaming_mov] => false
[streaming_video_size_limit] => 0
[streaming_real_media] => none
[streaming_flv] => false
[streaming_3g2] => false
[streaming_vcodec_h263_0] => 10
[streaming_vcodec_h263_3] => -1
[streaming_vcodec_mpeg4_sp] => 2
[streaming_vcodec_mpeg4_asp] => -1
[streaming_vcodec_h264_bp] => 3.0
[streaming_acodec_amr] => nb
[streaming_acodec_aac] => lc
[streaming_wmv] => none
[streaming_preferred_protocol] => rtsp
[streaming_preferred_http_protocol] => progressive_download
[wap_push_support] => false
[connectionless_service_indication] => false
[connectionless_service_load] => false
[connectionless_cache_operation] => false
[connectionoriented_unconfirmed_service_indication] => false
[connectionoriented_unconfirmed_service_load] => false
[connectionoriented_unconfirmed_cache_operation] => false
[connectionoriented_confirmed_service_indication] => false
[connectionoriented_confirmed_service_load] => false
[connectionoriented_confirmed_cache_operation] => false
[utf8_support] => true
[ascii_support] => false
[iso8859_support] => false
[expiration_date] => false
[j2me_cldc_1_0] => false
[j2me_cldc_1_1] => false
[j2me_midp_1_0] => false
[j2me_midp_2_0] => false
[doja_1_0] => false
[doja_1_5] => false
[doja_2_0] => false
[doja_2_1] => false
[doja_2_2] => false
[doja_3_0] => false
[doja_3_5] => false
[doja_4_0] => false
[j2me_jtwi] => false
[j2me_mmapi_1_0] => false
[j2me_mmapi_1_1] => false
[j2me_wmapi_1_0] => false
[j2me_wmapi_1_1] => false
[j2me_wmapi_2_0] => false
[j2me_btapi] => false
[j2me_3dapi] => false
[j2me_locapi] => false
[j2me_nokia_ui] => false
[j2me_motorola_lwt] => false
[j2me_siemens_color_game] => false
[j2me_siemens_extension] => false
[j2me_heap_size] => 0
[j2me_max_jar_size] => 0
[j2me_storage_size] => 0
[j2me_max_record_store_size] => 0
[j2me_screen_width] => 0
[j2me_screen_height] => 0
[j2me_canvas_width] => 0
[j2me_canvas_height] => 0
[j2me_bits_per_pixel] => 0
[j2me_audio_capture_enabled] => false
[j2me_video_capture_enabled] => false
[j2me_photo_capture_enabled] => false
[j2me_capture_image_formats] => none
[j2me_http] => false
[j2me_https] => false
[j2me_socket] => false
[j2me_udp] => false
[j2me_serial] => false
[j2me_gif] => false
[j2me_gif89a] => false
[j2me_jpg] => false
[j2me_png] => false
[j2me_bmp] => false
[j2me_bmp3] => false
[j2me_wbmp] => false
[j2me_midi] => false
[j2me_wav] => false
[j2me_amr] => false
[j2me_mp3] => false
[j2me_mp4] => false
[j2me_imelody] => false
[j2me_rmf] => false
[j2me_au] => false
[j2me_aac] => false
[j2me_realaudio] => false
[j2me_xmf] => false
[j2me_wma] => false
[j2me_3gpp] => false
[j2me_h263] => false
[j2me_svgt] => false
[j2me_mpeg4] => false
[j2me_realvideo] => false
[j2me_real8] => false
[j2me_realmedia] => false
[j2me_left_softkey_code] => 0
[j2me_right_softkey_code] => 0
[j2me_middle_softkey_code] => 0
[j2me_select_key_code] => 0
[j2me_return_key_code] => 0
[j2me_clear_key_code] => 0
[j2me_datefield_no_accepts_null_date] => false
[j2me_datefield_broken] => false
[receiver] => false
[sender] => false
[mms_max_size] => 0
[mms_max_height] => 0
[mms_max_width] => 0
[built_in_recorder] => false
[built_in_camera] => true
[mms_jpeg_baseline] => false
[mms_jpeg_progressive] => false
[mms_gif_static] => false
[mms_gif_animated] => false
[mms_png] => false
[mms_bmp] => false
[mms_wbmp] => false
[mms_amr] => false
[mms_wav] => false
[mms_midi_monophonic] => false
[mms_midi_polyphonic] => false
[mms_midi_polyphonic_voices] => 0
[mms_spmidi] => false
[mms_mmf] => false
[mms_mp3] => false
[mms_evrc] => false
[mms_qcelp] => false
[mms_ota_bitmap] => false
[mms_nokia_wallpaper] => false
[mms_nokia_operatorlogo] => false
[mms_nokia_3dscreensaver] => false
[mms_nokia_ringingtone] => false
[mms_rmf] => false
[mms_xmf] => false
[mms_symbian_install] => false
[mms_jar] => false
[mms_jad] => false
[mms_vcard] => false
[mms_vcalendar] => false
[mms_wml] => false
[mms_wbxml] => false
[mms_wmlc] => false
[mms_video] => false
[mms_mp4] => false
[mms_3gpp] => false
[mms_3gpp2] => false
[mms_max_frame_rate] => 0
[nokiaring] => false
[picturemessage] => false
[operatorlogo] => false
[largeoperatorlogo] => false
[callericon] => false
[nokiavcard] => false
[nokiavcal] => false
[sckl_ringtone] => false
[sckl_operatorlogo] => false
[sckl_groupgraphic] => false
[sckl_vcard] => false
[sckl_vcalendar] => false
[text_imelody] => false
[ems] => false
[ems_variablesizedpictures] => false
[ems_imelody] => false
[ems_odi] => false
[ems_upi] => false
[ems_version] => 0
[siemens_ota] => false
[siemens_logo_width] => 101
[siemens_logo_height] => 29
[siemens_screensaver_width] => 101
[siemens_screensaver_height] => 50
[gprtf] => false
[sagem_v1] => false
[sagem_v2] => false
[panasonic] => false
[sms_enabled] => true
[wav] => false
[mmf] => false
[smf] => false
[mld] => false
[midi_monophonic] => false
[midi_polyphonic] => false
[sp_midi] => false
[rmf] => false
[xmf] => false
[compactmidi] => false
[digiplug] => false
[nokia_ringtone] => false
[imelody] => false
[au] => false
[amr] => false
[awb] => false
[aac] => true
[mp3] => true
[voices] => 1
[qcelp] => false
[evrc] => false
[flash_lite_version] =>
[fl_wallpaper] => false
[fl_screensaver] => false
[fl_standalone] => false
[fl_browser] => false
[fl_sub_lcd] => false
[full_flash_support] => true
[css_supports_width_as_percentage] => true
[css_border_image] => webkit
[css_rounded_corners] => css3
[css_gradient] => none
[css_spriting] => true
[css_gradient_linear] => none
[is_transcoder] => false
[transcoder_ua_header] => user-agent
[rss_support] => false
[pdf_support] => true
[progressive_download] => true
[playback_vcodec_h263_0] => 10
[playback_vcodec_h263_3] => -1
[playback_vcodec_mpeg4_sp] => 0
[playback_vcodec_mpeg4_asp] => -1
[playback_vcodec_h264_bp] => 3.0
[playback_real_media] => none
[playback_3gpp] => true
[playback_3g2] => false
[playback_mp4] => true
[playback_mov] => false
[playback_acodec_amr] => nb
[playback_acodec_aac] => none
[playback_df_size_limit] => 0
[playback_directdownload_size_limit] => 0
[playback_inline_size_limit] => 0
[playback_oma_size_limit] => 0
[playback_acodec_qcelp] => false
[playback_wmv] => none
[hinted_progressive_download] => true
[html_preferred_dtd] => html4
[viewport_supported] => true
[viewport_width] => device_width_token
[viewport_userscalable] => no
[viewport_initial_scale] =>
[viewport_maximum_scale] =>
[viewport_minimum_scale] =>
[mobileoptimized] => false
[handheldfriendly] => false
[canvas_support] => full
[image_inlining] => true
[is_smarttv] => false
[is_console] => false
[nfc_support] => false
[ux_full_desktop] => false
[jqm_grade] => A
[is_sencha_touch_ok] => false
[controlcap_is_smartphone] => default
[controlcap_is_ios] => default
[controlcap_is_android] => default
[controlcap_is_robot] => default
[controlcap_is_app] => default
[controlcap_advertised_device_os] => default
[controlcap_advertised_device_os_version] => default
[controlcap_advertised_browser] => default
[controlcap_advertised_browser_version] => default
[controlcap_is_windows_phone] => default
[controlcap_is_full_desktop] => default
[controlcap_is_largescreen] => default
[controlcap_is_mobile] => default
[controlcap_is_touchscreen] => default
[controlcap_is_wml_preferred] => default
[controlcap_is_xhtmlmp_preferred] => default
[controlcap_is_html_preferred] => default
[controlcap_form_factor] => default
[controlcap_complete_device_name] => default
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr></table>
</div>
<div class="section">
<h1 class="header center orange-text">About this comparison</h1>
<div class="row center">
<h5 class="header light">
The primary goal of this project is simple<br />
I wanted to know which user agent parser is the most accurate in each part - device detection, bot detection and so on...<br />
<br />
The secondary goal is to provide a source for all user agent parsers to improve their detection based on this results.<br />
<br />
You can also improve this further, by suggesting ideas at <a href="https://github.com/ThaDafinser/UserAgentParserComparison">ThaDafinser/UserAgentParserComparison</a><br />
<br />
The comparison is based on the abstraction by <a href="https://github.com/ThaDafinser/UserAgentParser">ThaDafinser/UserAgentParser</a>
</h5>
</div>
</div>
<div class="card">
<div class="card-content">
Comparison created <i>2016-02-13 13:29:11</i> | by
<a href="https://github.com/ThaDafinser">ThaDafinser</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/list.js/1.1.1/list.min.js"></script>
<script>
$(document).ready(function(){
// the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered
$('.modal-trigger').leanModal();
});
</script>
</body>
</html> |
py_fitness/py_fitness/templates/account/email.html | audiolion/py-fitness |
{% extends "account/base.html" %}
{% load crispy_forms_tags %}
{% block head_title %}Account{% endblock %}
{% block inner %}
<h1>E-mail Addresses</h1>
{% if user.emailaddress_set.all %}
<p>The following e-mail addresses are associated with your account:</p>
<form action="{% url 'account_email' %}" class="email_list" method="post">
{% csrf_token %}
<fieldset class="blockLabels">
{% for emailaddress in user.emailaddress_set.all %}
<div class="radio">
<label for="email_radio_{{forloop.counter}}" class="{% if emailaddress.primary %}primary_email{%endif%}">
<input id="email_radio_{{forloop.counter}}" type="radio" name="email" {% if emailaddress.primary or user.emailaddress_set.count == 1 %}checked="checked"{%endif %} value="{{emailaddress.email}}"/>
{{ emailaddress.email }}
{% if emailaddress.verified %}
<span class="verified">Verified</span>
{% else %}
<span class="unverified">Unverified</span>
{% endif %}
{% if emailaddress.primary %}<span class="primary">Primary</span>{% endif %}
</label>
</div>
{% endfor %}
<div class="form-group">
<button class="secondaryAction btn btn-primary" type="submit" name="action_primary" >Make Primary</button>
<button class="secondaryAction btn btn-primary" type="submit" name="action_send" >Re-send Verification</button>
<button class="primaryAction btn btn-primary" type="submit" name="action_remove" >Remove</button>
</div>
</fieldset>
</form>
{% else %}
<p><strong>Warning:</strong> You currently do not have any e-mail address set up. You should really add an e-mail address so you can receive notifications, reset your password, etc.</p>
{% endif %}
<h2>Add E-mail Address</h2>
<form method="post" action="{% url 'account_email' %}" class="add_email">
{% csrf_token %}
{{ form|crispy }}
<button class="btn btn-primary" name="action_add" type="submit">Add E-mail</button>
</form>
{% endblock %}
{% block javascript %}
{{ block.super }}
<script type="text/javascript">
(function() {
var message = "Do you really want to remove the selected e-mail address?";
var actions = document.getElementsByName('action_remove');
if (actions.length) {
actions[0].addEventListener("click", function(e) {
if (! confirm(message)) {
e.preventDefault();
}
});
}
})();
$('.form-group').removeClass('row');
</script>
{% endblock %}
|
public/patterns/00-atoms-00-global-04-logo/00-atoms-00-global-04-logo.markup-only.html | giga0/renault_task | <a href="..\../patterns/04-pages-01-hp\04-pages-01-hp.rendered.html"><img class="a-cmp-nav-logo" src="../../images/logo.png" alt="Logo" /></a> |
docs/source/MaskLayer.html | hatimeria/HatimeriaExtJS | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The source code</title>
<link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../resources/prettify/prettify.js"></script>
<style type="text/css">
.highlight { display: block; background-color: #ddd; }
</style>
<script type="text/javascript">
function highlight() {
document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
}
</script>
</head>
<body onload="prettyPrint(); highlight();">
<pre class="prettyprint lang-js">/*
This file is part of Ext JS 4
Copyright (c) 2011 Sencha Inc
Contact: http://www.sencha.com/contact
Commercial Usage
Licensees holding valid commercial licenses may use this file in accordance with the Commercial Software License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Sencha.
If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
*/
Ext.define('Ext.chart.MaskLayer', {
extend: 'Ext.Component',
constructor: function(config) {
config = Ext.apply(config || {}, {
style: 'position:absolute;background-color:#888;cursor:move;opacity:0.6;border:1px solid #222;'
});
this.callParent([config]);
},
initComponent: function() {
var me = this;
me.callParent(arguments);
me.addEvents(
'mousedown',
'mouseup',
'mousemove',
'mouseenter',
'mouseleave'
);
},
initDraggable: function() {
this.callParent(arguments);
this.dd.onStart = function (e) {
var me = this,
comp = me.comp;
// Cache the start [X, Y] array
this.startPosition = comp.getPosition(true);
// If client Component has a ghost method to show a lightweight version of itself
// then use that as a drag proxy unless configured to liveDrag.
if (comp.ghost && !comp.liveDrag) {
me.proxy = comp.ghost();
me.dragTarget = me.proxy.header.el;
}
// Set the constrainTo Region before we start dragging.
if (me.constrain || me.constrainDelegate) {
me.constrainTo = me.calculateConstrainRegion();
}
};
}
});
</pre>
</body>
</html>
|
clean/Linux-x86_64-4.07.1-2.0.6/released/8.8.0/elpi/1.4.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>elpi: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.0 / elpi - 1.4.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
elpi
<small>
1.4.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-01 06:52:58 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-01 06:52:58 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.8.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Enrico Tassi <enrico.tassi@inria.fr>"
authors: [ "Enrico Tassi" ]
license: "LGPL-2.1-or-later"
homepage: "https://github.com/LPCIC/coq-elpi"
bug-reports: "https://github.com/LPCIC/coq-elpi/issues"
dev-repo: "git+https://github.com/LPCIC/coq-elpi"
build: [ make "COQBIN=%{bin}%/" "ELPIDIR=%{prefix}%/lib/elpi" ]
install: [ make "install" "COQBIN=%{bin}%/" "ELPIDIR=%{prefix}%/lib/elpi" ]
depends: [
"elpi" {>= "1.11.2" & < "1.12.0~"}
"coq" {>= "8.11" & < "8.12~"}
]
tags: [
"logpath:elpi"
]
synopsis: "Elpi extension language for Coq"
description: """
Coq-elpi provides a Coq plugin that embeds ELPI.
It also provides a way to embed Coq's terms into λProlog using
the Higher-Order Abstract Syntax approach
and a way to read terms back. In addition to that it exports to ELPI a
set of Coq's primitives, e.g. printing a message, accessing the
environment of theorems and data types, defining a new constant and so on.
For convenience it also provides a quotation and anti-quotation for Coq's
syntax in λProlog. E.g. `{{nat}}` is expanded to the type name of natural
numbers, or `{{A -> B}}` to the representation of a product by unfolding
the `->` notation. Finally it provides a way to define new vernacular commands
and new tactics."""
url {
src: "https://github.com/LPCIC/coq-elpi/archive/v1.4.0.tar.gz"
checksum: "sha256=13c2034209f728451707b79937f25d800ea87f3be1c80886f9c21b8bf8f3f7c9"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-elpi.1.4.0 coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.0).
The following dependencies couldn't be met:
- coq-elpi -> coq >= 8.11
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-elpi.1.4.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
docs/ethic.html | Konsola/Konsola | <html>
<head>
<title>usage of Konsola under ethic</title>
<style>
.container{
text-align:center;
}
</style>
</head>
<body>
<!--
@n1d4n1d4 exposing @coolmemes1993 #flag
thanks for use the magic console called Konsola
./jurandir.py
-->
<div class="container">
<h1>Konsola , the dream hacker console</h1>
<img src="coolmemes1993flag.jpg" />
<p>be like coolmemes1993, the rainbow hat... </p>
<pre>
The usage of Konsola is ethical,
This experimental tool is built for testing and studying proposes;
all of the usages is in accordance with the law and the responsability of using Konsola takes who agree to terms.
</pre>
</div>
</body>
</html>
|
clean/Linux-x86_64-4.09.1-2.0.6/released/8.10.1/bignums/8.9.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>bignums: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.10.1 / bignums - 8.9.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
bignums
<small>
8.9.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-10-27 08:55:36 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-27 08:55:36 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.10.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.09.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.09.1 Official release 4.09.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Laurent.Thery@inria.fr"
homepage: "https://github.com/coq/bignums"
dev-repo: "git+https://github.com/coq/bignums.git"
bug-reports: "https://github.com/coq/bignums/issues"
authors: [
"Laurent Théry"
"Benjamin Grégoire"
"Arnaud Spiwack"
"Evgeny Makarov"
"Pierre Letouzey"
]
license: "LGPL-2.1-only"
build: [
[make "-j%{jobs}%" {ocaml:version >= "4.06"}]
]
install: [
[make "install"]
]
depends: [
"ocaml"
"coq" {>= "8.9" & < "8.10~"}
]
tags: [
"keyword:integer numbers"
"keyword:rational numbers"
"keyword:arithmetic"
"keyword:arbitrary-precision"
"category:Miscellaneous/Coq Extensions"
"category:Mathematics/Arithmetic and Number Theory/Number theory"
"category:Mathematics/Arithmetic and Number Theory/Rational numbers"
"logpath:Bignums"
]
synopsis: "Bignums, the Coq library of arbitrary large numbers"
description:
"Provides BigN, BigZ, BigQ that used to be part of Coq standard library < 8.7."
url {
src: "https://github.com/coq/bignums/archive/V8.9.0.tar.gz"
checksum: "md5=76a5dcff0dbbfd4eaa5e626c5b003eac"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-bignums.8.9.0 coq.8.10.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.1).
The following dependencies couldn't be met:
- coq-bignums -> coq < 8.10~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-bignums.8.9.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.07.1-2.0.6/released/8.7.1/equations/1.2+8.9.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>equations: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1 / equations - 1.2+8.9</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
equations
<small>
1.2+8.9
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-11 23:07:18 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-11 23:07:18 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.7.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
authors: [ "Matthieu Sozeau <matthieu.sozeau@inria.fr>" "Cyprien Mangin <cyprien.mangin@m4x.org>" ]
dev-repo: "git://github.com/mattam82/Coq-Equations.git"
maintainer: "matthieu.sozeau@inria.fr"
homepage: "https://mattam82.github.io/Coq-Equations"
bug-reports: "https://github.com/mattam82/Coq-Equations/issues"
license: "LGPL 2.1"
synopsis: "A function definition package for Coq"
description: """
Equations is a function definition plugin for Coq, that allows the
definition of functions by dependent pattern-matching and well-founded,
mutual or nested structural recursion and compiles them into core
terms. It automatically derives the clauses equations, the graph of the
function and its associated elimination principle.
"""
tags: [
"keyword:dependent pattern-matching"
"keyword:functional elimination"
"category:Miscellaneous/Coq Extensions"
"logpath:Equations"
]
build: [
["coq_makefile" "-f" "_CoqProject" "-o" "Makefile"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
depends: [
"coq" {>= "8.9~" & < "8.10~"}
]
url {
src:
"https://github.com/mattam82/Coq-Equations/archive/v1.2-8.9.tar.gz"
checksum: "md5=6a3a984f16825f959eaf0125652edd4f"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-equations.1.2+8.9 coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1).
The following dependencies couldn't be met:
- coq-equations -> coq >= 8.9~
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-equations.1.2+8.9</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.04.2-2.0.5/released/8.7.0/coqffi/1.0.0~beta2.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>coqffi: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.0 / coqffi - 1.0.0~beta2</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
coqffi
<small>
1.0.0~beta2
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-06 09:22:26 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-06 09:22:26 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.7.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "thomas.letan@ssi.gouv.fr"
homepage: "https://github.com/coq-community/coqffi"
dev-repo: "git+https://github.com/coq-community/coqffi.git"
bug-reports: "https://github.com/coq-community/coqffi/issues"
license: "MIT"
synopsis: "Tool for generating Coq FFI bindings to OCaml libraries"
description: """
`coqffi` generates the necessary Coq boilerplate to use OCaml functions in a
Coq development, and configures the Coq extraction mechanism accordingly."""
build: [
["./src-prepare.sh"]
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.08" & < "4.12~" }
"dune" {>= "2.5"}
"coq" {(>= "8.12" & < "8.13~") | (= "dev")}
"cmdliner" {>= "1.0.4"}
]
tags: [
"category:Miscellaneous/Coq Extensions"
"keyword:foreign function interface"
"keyword:extraction"
"keyword:OCaml"
"logpath:CoqFFI"
]
authors: [
"Thomas Letan"
"Li-yao Xia"
"Yann Régis-Gianas"
"Yannick Zakowski"
]
url {
src: "https://github.com/coq-community/coqffi/archive/1.0.0-beta2.tar.gz"
checksum: "sha512=e1190d40bb163cc075d30c29d910b71b03c805f806ed9da2e6047de4b83da95cb6fc6622395d30c2920a17ef2df7cc2933f3702ee603681e908122d6eac18f8f"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-coqffi.1.0.0~beta2 coq.8.7.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.0).
The following dependencies couldn't be met:
- coq-coqffi -> ocaml >= 4.08
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-coqffi.1.0.0~beta2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.09.1-2.0.6/released/8.7.1+1/huffman/8.5.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>huffman: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1+1 / huffman - 8.5.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
huffman
<small>
8.5.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-05 11:27:21 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-05 11:27:21 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.7.1+1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.09.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.09.1 Official release 4.09.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matej.kosik@inria.fr"
homepage: "https://github.com/coq-contribs/huffman"
license: "LGPL 2"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Huffman"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
]
tags: [ "keyword:data compression" "keyword:code" "keyword:huffman tree" "category:Computer Science/Decision Procedures and Certified Algorithms/Correctness proofs of algorithms" "category:Miscellaneous/Extracted Programs/Combinatorics" "date:2003-10" ]
authors: [ "Laurent Théry <>" ]
bug-reports: "https://github.com/coq-contribs/huffman/issues"
dev-repo: "git+https://github.com/coq-contribs/huffman.git"
synopsis: "A correctness proof of Huffman algorithm"
description: """
This directory contains the proof of correctness of Huffman algorithm
as described in:
David A. Huffman,
"A Method for the Construction of Minimum-Redundancy Codes,"
Proc. IRE, pp. 1098-1101, September 1952."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/huffman/archive/v8.5.0.tar.gz"
checksum: "md5=24c177433fec3608f741355cbf411486"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-huffman.8.5.0 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1+1).
The following dependencies couldn't be met:
- coq-huffman -> coq < 8.6~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-huffman.8.5.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
src/elements/Map/leaflet.attribution.html | programmfabrik/coffeescript-ui | © <a href="http://osm.org/copyright">OpenStreetMap</a> contributors |
docs/complexity/files/test_complexity_js/index.html | PropelJS/gulp-module | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Plato - test/complexity.js</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="../../assets/css/vendor/morris.css" rel="stylesheet">
<link href="../../assets/css/vendor/bootstrap.css" rel="stylesheet">
<link href="../../assets/css/vendor/font-awesome.css" rel="stylesheet">
<link href="../../assets/css/vendor/codemirror.css" rel="stylesheet">
<link href="../../assets/css/plato.css" rel="stylesheet">
<link href="../../assets/css/plato-file.css" rel="stylesheet">
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="container">
<a class="navbar-brand" href="http://github.com/es-analysis/plato">Plato on Github</a>
<ul class="nav navbar-nav">
<li>
<a href="../../index.html">Report Home</a>
</li>
</ul>
</div>
</div>
<div class="jumbotron">
<div class="container">
<h1>test/complexity.js</h1>
</div>
</div>
<div class="container aggregate-stats">
<div class="row">
<div class="col-md-6">
<h2 class="header">Maintainability <a href="http://blogs.msdn.com/b/codeanalysis/archive/2007/11/20/maintainability-index-range-and-meaning.aspx"><i class="icon icon-info-sign" rel="popover" data-placement="top" data-trigger="hover" data-content="A value between 0 and 100 that represents the relative ease of maintaining the code. A high value means better maintainability." data-original-title="Maintainability Index" data-container="body"></i></a></h2>
<p class="stat">86.52</p>
</div>
<div class="col-md-6">
<h2 class="header">Lines of code <i class="icon icon-info-sign" rel="popover" data-placement="top" data-trigger="hover" data-content="Source Lines of Code / Logical Lines of Code" data-original-title="SLOC/LSLOC" data-container="body"></i></h2>
<p class="stat">38</p>
</div>
</div>
<div class="row historical">
<div class="col-md-6">
<p id="chart_historical_maint" class="chart"></p>
</div>
<div class="col-md-6">
<p id="chart_historical_sloc" class="chart"></p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h2 class="header">Difficulty <a href="http://en.wikipedia.org/wiki/Halstead_complexity_measures"><i class="icon icon-info-sign" rel="popover" data-placement="top" data-trigger="hover" data-content="The difficulty measure is related to the difficulty of the program to write or understand." data-original-title="Difficulty" data-container="body"></i></a></h2>
<p class="stat">8.13</p>
</div>
<div class="col-md-6">
<h2 class="header">Estimated Errors <a href="http://en.wikipedia.org/wiki/Halstead_complexity_measures"><i class="icon icon-info-sign" rel="popover" data-placement="top" data-trigger="hover" data-content="Halstead's delivered bugs is an estimate for the number of errors in the implementation." data-original-title="Delivered Bugs" data-container="body"></i></a></h2>
<p class="stat">0.17</p>
</div>
</div>
</div>
<div class="container charts">
<div class="row">
<h2 class="header">Function weight</h2>
</div>
<div class="row">
<div class="col-md-6">
<h3 class="chart-header">By Complexity <a href="http://en.wikipedia.org/wiki/Cyclomatic_complexity"><i class="icon icon-info-sign" rel="popover" data-placement="top" data-trigger="hover" data-content="This metric counts the number of distinct paths through a block of code. Lower values are better." data-original-title="Cyclomatic Complexity" data-container="body"></i></a></h3>
<div id="fn-by-complexity" class="stat"></div>
</div>
<div class="col-md-6">
<h3 class="chart-header">By SLOC <i class="icon icon-info-sign" rel="popover" data-placement="top" data-trigger="hover" data-content="Source Lines of Code / Logical Lines of Code" data-original-title="SLOC/LSLOC" data-container="body"></i></h3>
<div id="fn-by-sloc" class="stat"></div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<textarea id="file-source" class="col-md-12">'use strict';
/* globals describe:false, it:false */
var should = require('should'); //jshint ignore:line
var complexity = require('../lib/complexity');
var gulpMock = {};
var task = null;
gulpMock.task = function gTask (name, description, deps, func) {
task = func;
};
var configMock = {
src: ['**/*.js', '!./node_modules/**', '!./docs/**']
};
complexity(gulpMock, configMock);
describe('Gulp Module Complexity', function () {
it('Should return a function', function () {
complexity.should.be.type('function');
});
it('Should add the complexity task', function () {
task.should.be.type('function');
});
it('Should run the complexity task', function (cb) {
try {
task();
} catch (e) {
cb();
}
});
});</textarea>
</div>
</div>
<footer class="footer">
<div class="container">
<p>.</p>
</div>
</footer>
<script type="text/html" id="complexity-popover-template">
<div class="complexity-notice">
Complexity : {{ complexity.cyclomatic }} <br>
Length : {{ complexity.halstead.length }} <br>
Difficulty : {{ complexity.halstead.difficulty.toFixed(2) }} <br>
Est # bugs : {{ complexity.halstead.bugs.toFixed(2) }}<br>
</div>
</script>
<script type="text/javascript" src="../../assets/scripts/bundles/core-bundle.js"></script>
<script type="text/javascript" src="../../assets/scripts/bundles/codemirror.js"></script>
<script type="text/javascript" src="../../assets/scripts/codemirror.markpopovertext.js"></script>
<script type="text/javascript" src="report.js"></script>
<script type="text/javascript" src="report.history.js"></script>
<script type="text/javascript" src="../../assets/scripts/plato-file.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.09.0-2.0.5/released/8.7.1+2/coqprime/1.0.3.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>coqprime: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1+2 / coqprime - 1.0.3</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
coqprime
<small>
1.0.3
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-02-24 00:36:37 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-02-24 00:36:37 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.11 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.7.1+2 Formal proof management system.
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.09.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.09.0 Official release 4.09.0
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "thery@sophia.inria.fr"
homepage: "http://coqprime.gforge.inria.fr/"
bug-reports: "http://coqprime.gforge.inria.fr/"
dev-repo: "git+https://github.com/thery/coqprime.git"
license: "LGPL"
authors: ["Laurent Théry"]
build: [
["./configure.sh"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Coqprime"]
depends: [
"ocaml"
"coq" {>= "8.8~"}
"coq-bignums"
]
synopsis: "Certifying prime numbers in Coq"
flags: light-uninstall
url {
src: "https://github.com/thery/coqprime/archive/v8.8.zip"
checksum: "md5=3430856778d10abe378fbdd385ac834d"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-coqprime.1.0.3 coq.8.7.1+2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1+2).
The following dependencies couldn't be met:
- coq-coqprime -> coq >= 8.8~
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-coqprime.1.0.3</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.06.1-2.0.5/released/8.11.2/ext-lib/0.10.3.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ext-lib: 1 m 20 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.2 / ext-lib - 0.10.3</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
ext-lib
<small>
0.10.3
<span class="label label-success">1 m 20 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-26 20:00:27 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-26 20:00:27 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "gmalecha@gmail.com"
homepage: "https://github.com/coq-community/coq-ext-lib"
dev-repo: "git+https://github.com/coq-community/coq-ext-lib.git"
bug-reports: "https://github.com/coq-community/coq-ext-lib/issues"
authors: ["Gregory Malecha"]
license: "BSD-2-Clause-FreeBSD"
build: [make "-j%{jobs}%" "theories"]
run-test: [make "-j%{jobs}%" "examples"]
install: [make "install"]
depends: [
"ocaml"
"coq" {>= "8.8" < "8.12~"}
]
synopsis: "A library of Coq definitions, theorems, and tactics"
description: """
A collection of theories and plugins that may be useful in other Coq developments."""
tags: [
"logpath:ExtLib"
]
url {
src: "https://github.com/coq-community/coq-ext-lib/archive/v0.10.3.tar.gz"
checksum: "sha256=24cdcf7f0bd981be2d002a46de7e76472c3f0505a2631ac6c58386ebc2a08f22"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-ext-lib.0.10.3 coq.8.11.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-ext-lib.0.10.3 coq.8.11.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>11 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-ext-lib.0.10.3 coq.8.11.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>1 m 20 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 4 M</p>
<ul>
<li>207 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/HList.vo</code></li>
<li>108 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/HList.glob</code></li>
<li>74 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapPositive.vo</code></li>
<li>73 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/List.vo</code></li>
<li>63 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Ind.vo</code></li>
<li>61 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/TwoThreeTrees.vo</code></li>
<li>59 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Show.vo</code></li>
<li>55 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/SumN.vo</code></li>
<li>53 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/String.vo</code></li>
<li>52 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Option.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Pair.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/DerivingData.vo</code></li>
<li>46 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Vector.vo</code></li>
<li>46 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Nat.vo</code></li>
<li>43 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Sets.vo</code></li>
<li>42 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/ListFirstnSkipn.vo</code></li>
<li>42 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Member.vo</code></li>
<li>42 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/GraphAdjList.vo</code></li>
<li>41 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Data.vo</code></li>
<li>40 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapAList.vo</code></li>
<li>40 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PList.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Extras.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/ListSet.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/GraphAlgos.vo</code></li>
<li>35 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/WriterMonad.vo</code></li>
<li>34 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/TwoThreeTrees.glob</code></li>
<li>34 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Fin.vo</code></li>
<li>34 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/SigT.vo</code></li>
<li>33 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/HList.v</code></li>
<li>32 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Func.vo</code></li>
<li>31 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/StateMonad.vo</code></li>
<li>31 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapTwoThreeK.vo</code></li>
<li>29 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Z.vo</code></li>
<li>29 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Tuple.vo</code></li>
<li>28 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Char.vo</code></li>
<li>28 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Relations/TransitiveClosure.vo</code></li>
<li>28 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapPositive.glob</code></li>
<li>27 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Parametric.vo</code></li>
<li>26 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/EitherMonad.vo</code></li>
<li>26 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/EqDep.vo</code></li>
<li>24 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/WriterMonad.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapAList.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/Type.vo</code></li>
<li>24 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Le.vo</code></li>
<li>24 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Injection.vo</code></li>
<li>24 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/List.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Maps.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/With.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Sum.vo</code></li>
<li>22 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ReaderMonad.vo</code></li>
<li>22 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/OptionMonad.vo</code></li>
<li>22 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/FuelMonad.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/ListNth.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapTwoThreeK.glob</code></li>
<li>21 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/EqDep.vo</code></li>
<li>20 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Relations/TransitiveClosure.glob</code></li>
<li>20 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PList.glob</code></li>
<li>19 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/StateMonad.glob</code></li>
<li>19 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/TwoThreeTrees.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Ind.glob</code></li>
<li>19 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/OptionMonadLaws.vo</code></li>
<li>19 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Consider.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Vector.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Eq.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monad.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Positive.vo</code></li>
<li>17 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Foldable.vo</code></li>
<li>17 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/EquivDec.vo</code></li>
<li>17 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Reify.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PPair.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Pair.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Show.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/FunctorLaws.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/String.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/FuelMonadLaws.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Sets.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/RelDec.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/N.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ListMonad.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/SumN.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/BuildGraph.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/CmpDec.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Data.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Prop.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Consider.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Parametric.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Option.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadFix.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/RelDec.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Prop.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Measure.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Eqv.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Func.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Le.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/EitherMonad.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/OptionMonadLaws.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadFix.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PreFun.vo</code></li>
<li>11 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Member.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ReaderMonad.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Extras.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monad.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Fun.vo</code></li>
<li>10 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Maps.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/Type.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Eq/UIP_trans.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/OptionMonad.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadWriter.vo</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Cases.vo</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Reducible.vo</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapPositive.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Proper.vo</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monoid.vo</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/POption.vo</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/DerivingData.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Sum.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PPair.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/ListSet.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/ListFirstnSkipn.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/SigT.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/With.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Applicative.vo</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/List.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Fin.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoMonadLaws.vo</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/BoolTac.vo</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/TypeTac.vo</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PList.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Eq/UIP_trans.vo</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/CmpDec.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Relation.vo</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Eqv.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Functor.vo</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/ListNth.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Nat.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Eq.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/GraphAdjList.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapAList.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadState.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Reducible.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Vector.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Identity.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Option.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Data.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Unit.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadLaws.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapTwoThreeK.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/GenRec.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoFunctor.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Checked.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/WriterMonad.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PreFun.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Tuple.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/GenRec.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Show.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ReaderMonadLaws.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/IdentityMonadLaws.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/BinOps.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/MonadTac.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadReader.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/GraphAlgos.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadLaws.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/FuelMonadLaws.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Foldable.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Ind.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadPlus.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/POption.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Bool.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/String.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monads.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/SumN.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/BuildGraph.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Fun.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoMonad.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/IdentityMonad.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/FuelMonad.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Lazy.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadWriter.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Traversable.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/RelDec.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/LazyList.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Relations/TransitiveClosure.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Consider.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Injection.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Le.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/BoolTac.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadExc.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadState.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/SetMap.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Applicative.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Member.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/EqDep.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/FunctorLaws.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Pair.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/Type.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadZero.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Parametric.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadReader.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Char.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Proper.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/StateMonad.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/EqDep.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Measure.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/BinOps.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monad.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/Graph.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadCont.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Positive.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadTrans.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Sum.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Fin.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ReaderMonadLaws.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/SigT.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/EitherMonad.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Forward.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/OptionMonad.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/ExtLib.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Checked.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ReaderMonad.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Prop.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Z.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Sets.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Nat.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Eq.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Func.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Cases.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Facts.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Traversable.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PPair.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Maps.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Eq/UIP_trans.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/EqDep.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/Any.vo</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Reify.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Functor.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/DerivingData.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/POption.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PreFun.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/ListNth.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Equality.vo</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Facts.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/ListSet.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/ListFirstnSkipn.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoFunctor.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Reducible.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/IdentityMonadLaws.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Relations/Compose.vo</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Stream.vo</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoMonadLaws.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/GraphAdjList.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadPlus.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/BoolTac.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadFix.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Lazy.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Eqv.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Extras.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Char.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/CmpDec.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ContMonad.vo</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/FuelMonad.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Fun.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/With.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monoid.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/GraphAlgos.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ContMonad.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Tuple.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Identity.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ListMonad.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Relation.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Z.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Positive.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoMonad.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/TypeTac.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Injection.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/BuildGraph.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/TypeTac.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/LazyList.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/EqDep.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/GenRec.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Foldable.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadWriter.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/EquivDec.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Measure.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Checked.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadExc.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Unit.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/FunctorLaws.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Proper.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/MonadTac.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/IdentityMonad.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadState.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Functor.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadZero.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadReader.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Applicative.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Relations/Compose.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/Graph.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Injection.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Relation.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadCont.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Lazy.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Bool.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/N.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Traversable.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Injection.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoFunctor.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/SetMap.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Identity.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/BinOps.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Reify.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Stream.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Forward.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Unit.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoMonadLaws.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monoid.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Injection.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Forward.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monads.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/FuelMonadLaws.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadPlus.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadTrans.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/OptionMonadLaws.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ListMonad.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Bool.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoMonad.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ReaderMonadLaws.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Facts.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monads.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/N.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/IdentityMonadLaws.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/Any.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/EquivDec.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/IdentityMonad.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadZero.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadLaws.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/LazyList.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Cases.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Equality.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/Any.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/Graph.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/MonadTac.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadExc.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Stream.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadCont.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadTrans.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Relations/Compose.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/SetMap.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ContMonad.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Equality.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/ExtLib.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/ExtLib.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-ext-lib.0.10.3</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.7.1+1/mathcomp-ssreflect/1.6.2.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-ssreflect: 1 m 53 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1+1 / mathcomp-ssreflect - 1.6.2</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-ssreflect
<small>
1.6.2
<span class="label label-success">1 m 53 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-19 04:09:34 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-19 04:09:34 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.7.1+1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
name: "coq-mathcomp-ssreflect"
version: "1.6.2"
maintainer: "Mathematical Components <mathcomp-dev@sympa.inria.fr>"
homepage: "http://math-comp.github.io/math-comp/"
bug-reports: "Mathematical Components <mathcomp-dev@sympa.inria.fr>"
license: "CeCILL-B"
build: [ make "-C" "mathcomp/ssreflect" "-j" "%{jobs}%" ]
install: [ make "-C" "mathcomp/ssreflect" "install" ]
remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/mathcomp'" ]
depends: [
"ocaml"
"coq"
{((>= "8.5" & < "8.6~") | (>= "8.6" & < "8.7~") | (>= "8.7" & < "8.8~"))}
]
tags: [ "keyword:small scale reflection" "keyword:mathematical components" "keyword:odd order theorem" ]
authors: [ "Jeremy Avigad <>" "Andrea Asperti <>" "Stephane Le Roux <>" "Yves Bertot <>" "Laurence Rideau <>" "Enrico Tassi <>" "Ioana Pasca <>" "Georges Gonthier <>" "Sidi Ould Biha <>" "Cyril Cohen <>" "Francois Garillot <>" "Alexey Solovyev <>" "Russell O'Connor <>" "Laurent Théry <>" "Assia Mahboubi <>" ]
synopsis: "Small Scale Reflection"
description: """
This library includes the small scale reflection proof language
extension and the minimal set of libraries to take advantage of it.
This includes libraries on lists (seq), boolean and boolean
predicates, natural numbers and types with decidable equality,
finite types, finite sets, finite functions, finite graphs, basic arithmetics
and prime numbers, big operators"""
url {
src: "http://github.com/math-comp/math-comp/archive/mathcomp-1.6.2.tar.gz"
checksum: "md5=cf10cb16f1ac239a9d52c029a4e00f66"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-mathcomp-ssreflect.1.6.2 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-mathcomp-ssreflect.1.6.2 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>14 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-mathcomp-ssreflect.1.6.2 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>1 m 53 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 9 M</p>
<ul>
<li>640 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/seq.vo</code></li>
<li>608 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/finset.glob</code></li>
<li>563 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/finset.vo</code></li>
<li>504 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/seq.glob</code></li>
<li>496 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/bigop.glob</code></li>
<li>465 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/prime.glob</code></li>
<li>436 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/prime.vo</code></li>
<li>422 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/fintype.vo</code></li>
<li>405 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/fintype.glob</code></li>
<li>404 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/bigop.vo</code></li>
<li>362 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssrnat.glob</code></li>
<li>314 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssrnat.vo</code></li>
<li>279 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/div.glob</code></li>
<li>258 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/path.vo</code></li>
<li>247 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/binomial.vo</code></li>
<li>234 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/div.vo</code></li>
<li>221 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/binomial.glob</code></li>
<li>220 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/fingraph.vo</code></li>
<li>179 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/path.glob</code></li>
<li>167 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/choice.vo</code></li>
<li>159 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/fingraph.glob</code></li>
<li>143 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/generic_quotient.vo</code></li>
<li>127 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/tuple.vo</code></li>
<li>125 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/eqtype.vo</code></li>
<li>115 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/finfun.vo</code></li>
<li>109 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/eqtype.glob</code></li>
<li>102 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/choice.glob</code></li>
<li>101 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/generic_quotient.glob</code></li>
<li>88 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/seq.v</code></li>
<li>83 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/finset.v</code></li>
<li>78 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/tuple.glob</code></li>
<li>76 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/fintype.v</code></li>
<li>72 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/bigop.v</code></li>
<li>57 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssrnat.v</code></li>
<li>56 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/prime.v</code></li>
<li>55 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/finfun.glob</code></li>
<li>34 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/div.v</code></li>
<li>33 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/path.v</code></li>
<li>31 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/eqtype.v</code></li>
<li>31 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/all_ssreflect.vo</code></li>
<li>27 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/choice.v</code></li>
<li>27 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/generic_quotient.v</code></li>
<li>26 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/fingraph.v</code></li>
<li>23 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/binomial.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/tuple.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/finfun.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssrnotations.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssrnotations.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssrfun.vo</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssrbool.vo</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssreflect.vo</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/all_ssreflect.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/all_ssreflect.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssreflect.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssrfun.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssreflect.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssrbool.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssrfun.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssrnotations.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/mathcomp/ssreflect/ssrbool.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-mathcomp-ssreflect.1.6.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
docs/api/Kephas.Model.Elements.NamedElementBase-1.html | quartz-software/kephas | <!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class NamedElementBase<TModelContract>
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class NamedElementBase<TModelContract>
">
<meta name="generator" content="docfx 2.43.2.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="Kephas.Model.Elements.NamedElementBase`1">
<h1 id="Kephas_Model_Elements_NamedElementBase_1" data-uid="Kephas.Model.Elements.NamedElementBase`1" class="text-break">Class NamedElementBase<TModelContract>
</h1>
<div class="markdown level0 summary"><p>Base class for named elements.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">System.Dynamic.DynamicObject</span></div>
<div class="level2"><a class="xref" href="Kephas.Dynamic.ExpandoBase.html">ExpandoBase</a></div>
<div class="level3"><a class="xref" href="Kephas.Dynamic.Expando.html">Expando</a></div>
<div class="level4"><span class="xref">NamedElementBase<TModelContract></span></div>
<div class="level5"><a class="xref" href="Kephas.Model.Elements.Annotation.html">Annotation</a></div>
<div class="level5"><a class="xref" href="Kephas.Model.Elements.ModelElementBase-1.html">ModelElementBase<TModelContract></a></div>
<div class="level5"><a class="xref" href="Kephas.Model.Elements.ModelProjection.html">ModelProjection</a></div>
</div>
<div classs="implements">
<h5>Implements</h5>
<div><a class="xref" href="Kephas.Model.INamedElement.html">INamedElement</a></div>
<div><a class="xref" href="Kephas.Reflection.IAggregatedElementInfo.html">IAggregatedElementInfo</a></div>
<div><a class="xref" href="Kephas.Reflection.IElementInfo.html">IElementInfo</a></div>
<div><a class="xref" href="Kephas.Dynamic.IExpando.html">IExpando</a></div>
<div><span class="xref">System.Dynamic.IDynamicMetaObjectProvider</span></div>
<div><a class="xref" href="Kephas.Dynamic.IIndexable.html">IIndexable</a></div>
<div><a class="xref" href="Kephas.Runtime.IAttributeProvider.html">IAttributeProvider</a></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<a class="xref" href="Kephas.Dynamic.ExpandoBase.html#Kephas_Dynamic_ExpandoBase_Item_System_String_">ExpandoBase.Item[String]</a>
</div>
<div>
<a class="xref" href="Kephas.Dynamic.ExpandoBase.html#Kephas_Dynamic_ExpandoBase_GetDynamicMemberNames">ExpandoBase.GetDynamicMemberNames()</a>
</div>
<div>
<a class="xref" href="Kephas.Dynamic.ExpandoBase.html#Kephas_Dynamic_ExpandoBase_HasDynamicMember_System_String_">ExpandoBase.HasDynamicMember(String)</a>
</div>
<div>
<a class="xref" href="Kephas.Dynamic.ExpandoBase.html#Kephas_Dynamic_ExpandoBase_TryGetMember_System_Dynamic_GetMemberBinder_System_Object__">ExpandoBase.TryGetMember(GetMemberBinder, Object)</a>
</div>
<div>
<a class="xref" href="Kephas.Dynamic.ExpandoBase.html#Kephas_Dynamic_ExpandoBase_TrySetMember_System_Dynamic_SetMemberBinder_System_Object_">ExpandoBase.TrySetMember(SetMemberBinder, Object)</a>
</div>
<div>
<a class="xref" href="Kephas.Dynamic.ExpandoBase.html#Kephas_Dynamic_ExpandoBase_TryInvokeMember_System_Dynamic_InvokeMemberBinder_System_Object___System_Object__">ExpandoBase.TryInvokeMember(InvokeMemberBinder, Object[], Object)</a>
</div>
<div>
<a class="xref" href="Kephas.Dynamic.ExpandoBase.html#Kephas_Dynamic_ExpandoBase_ToDictionary_System_Func_System_String_System_String__System_Func_System_Object_System_Object__">ExpandoBase.ToDictionary(Func<String, String>, Func<Object, Object>)</a>
</div>
<div>
<a class="xref" href="Kephas.Dynamic.ExpandoBase.html#Kephas_Dynamic_ExpandoBase_GetInnerObjectTypeInfo">ExpandoBase.GetInnerObjectTypeInfo()</a>
</div>
<div>
<a class="xref" href="Kephas.Dynamic.ExpandoBase.html#Kephas_Dynamic_ExpandoBase_GetThisTypeInfo">ExpandoBase.GetThisTypeInfo()</a>
</div>
<div>
<a class="xref" href="Kephas.Dynamic.ExpandoBase.html#Kephas_Dynamic_ExpandoBase_TryGetValue_System_String_System_Object__">ExpandoBase.TryGetValue(String, Object)</a>
</div>
<div>
<a class="xref" href="Kephas.Dynamic.ExpandoBase.html#Kephas_Dynamic_ExpandoBase_TrySetValue_System_String_System_Object_">ExpandoBase.TrySetValue(String, Object)</a>
</div>
<div>
<span class="xref">System.Dynamic.DynamicObject.GetMetaObject(System.Linq.Expressions.Expression)</span>
</div>
<div>
<span class="xref">System.Dynamic.DynamicObject.TryBinaryOperation(System.Dynamic.BinaryOperationBinder, System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Dynamic.DynamicObject.TryConvert(System.Dynamic.ConvertBinder, System.Object)</span>
</div>
<div>
<span class="xref">System.Dynamic.DynamicObject.TryCreateInstance(System.Dynamic.CreateInstanceBinder, System.Object[], System.Object)</span>
</div>
<div>
<span class="xref">System.Dynamic.DynamicObject.TryDeleteIndex(System.Dynamic.DeleteIndexBinder, System.Object[])</span>
</div>
<div>
<span class="xref">System.Dynamic.DynamicObject.TryDeleteMember(System.Dynamic.DeleteMemberBinder)</span>
</div>
<div>
<span class="xref">System.Dynamic.DynamicObject.TryGetIndex(System.Dynamic.GetIndexBinder, System.Object[], System.Object)</span>
</div>
<div>
<span class="xref">System.Dynamic.DynamicObject.TryInvoke(System.Dynamic.InvokeBinder, System.Object[], System.Object)</span>
</div>
<div>
<span class="xref">System.Dynamic.DynamicObject.TrySetIndex(System.Dynamic.SetIndexBinder, System.Object[], System.Object)</span>
</div>
<div>
<span class="xref">System.Dynamic.DynamicObject.TryUnaryOperation(System.Dynamic.UnaryOperationBinder, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="Kephas.Model.Elements.html">Kephas.Model.Elements</a></h6>
<h6><strong>Assembly</strong>: Kephas.Model.dll</h6>
<h5 id="Kephas_Model_Elements_NamedElementBase_1_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public abstract class NamedElementBase<TModelContract> : Expando, INamedElement, IAggregatedElementInfo, IElementInfo, IExpando, IDynamicMetaObjectProvider, IIndexable, IAttributeProvider, IConstructibleElement where TModelContract : INamedElement</code></pre>
</div>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TModelContract</span></td>
<td><p>The type of the model contract (the interface).</p>
</td>
</tr>
</tbody>
</table>
<h3 id="constructors">Constructors
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1__ctor_Kephas_Model_Construction_IModelConstructionContext_System_String_.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.%23ctor(Kephas.Model.Construction.IModelConstructionContext%2CSystem.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L49">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1__ctor_" data-uid="Kephas.Model.Elements.NamedElementBase`1.#ctor*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1__ctor_Kephas_Model_Construction_IModelConstructionContext_System_String_" data-uid="Kephas.Model.Elements.NamedElementBase`1.#ctor(Kephas.Model.Construction.IModelConstructionContext,System.String)">NamedElementBase(IModelConstructionContext, String)</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="Kephas.Model.Elements.NamedElementBase-1.html">NamedElementBase<TModelContract></a> class.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected NamedElementBase(IModelConstructionContext constructionContext, string name)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Kephas.Model.Construction.IModelConstructionContext.html">IModelConstructionContext</a></td>
<td><span class="parametername">constructionContext</span></td>
<td><p>Context for the construction.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">name</span></td>
<td><p>The model element name.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="fields">Fields
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_Logger.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.Logger%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L37">View Source</a>
</span>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_Logger" data-uid="Kephas.Model.Elements.NamedElementBase`1.Logger">Logger</h4>
<div class="markdown level1 summary"><p>Gets the logger.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected readonly ILogger Logger</code></pre>
</div>
<h5 class="fieldValue">Field Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Kephas.Logging.ILogger.html">ILogger</a></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_Annotations.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.Annotations%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L99">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_Annotations_" data-uid="Kephas.Model.Elements.NamedElementBase`1.Annotations*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_Annotations" data-uid="Kephas.Model.Elements.NamedElementBase`1.Annotations">Annotations</h4>
<div class="markdown level1 summary"><p>Gets the annotations of this model element.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public abstract IEnumerable<IAnnotation> Annotations { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><<a class="xref" href="Kephas.Model.IAnnotation.html">IAnnotation</a>></td>
<td><p>The model element annotations.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_ConstructionMonitor.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.ConstructionMonitor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L205">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_ConstructionMonitor_" data-uid="Kephas.Model.Elements.NamedElementBase`1.ConstructionMonitor*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_ConstructionMonitor" data-uid="Kephas.Model.Elements.NamedElementBase`1.ConstructionMonitor">ConstructionMonitor</h4>
<div class="markdown level1 summary"><p>Gets the construction monitor.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected InitializationMonitor<TModelContract> ConstructionMonitor { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Kephas.Services.Transitioning.InitializationMonitor-1.html">InitializationMonitor</a><TModelContract></td>
<td><p>The construction monitor.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_DeclaringContainer.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.DeclaringContainer%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L173">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_DeclaringContainer_" data-uid="Kephas.Model.Elements.NamedElementBase`1.DeclaringContainer*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_DeclaringContainer" data-uid="Kephas.Model.Elements.NamedElementBase`1.DeclaringContainer">DeclaringContainer</h4>
<div class="markdown level1 summary"><p>Gets the container element.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public virtual IModelElement DeclaringContainer { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Kephas.Model.IModelElement.html">IModelElement</a></td>
<td><p>The container element.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_FullName.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.FullName%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L165">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_FullName_" data-uid="Kephas.Model.Elements.NamedElementBase`1.FullName*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_FullName" data-uid="Kephas.Model.Elements.NamedElementBase`1.FullName">FullName</h4>
<div class="markdown level1 summary"><p>Gets the fully qualified name, starting from the root model space.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public string FullName { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><p>The fully qualified name.</p>
</td>
</tr>
</tbody>
</table>
<h5 id="Kephas_Model_Elements_NamedElementBase_1_FullName_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>The fully qualified name is built up of qualified names separated by "/".</p>
</div>
<h5 id="Kephas_Model_Elements_NamedElementBase_1_FullName_examples">Examples</h5>
<p>
/: identifies the root model space.
</p>
<p>
/^AppLayer: identifies the AppLayer dimension.
</p>
<p>
/:Primitives:Kephas:Core:Main:Global/String: identifies the String classifier within the :Primitives:Kephas:Core:Main:Global projection.
</p>
<p>
/:MyModel:MyCompany:Contacts:Main:Domain/Contact/Name: identifies the Name member of the Contact classifier within the :MyModel:MyCompany:Contacts:Main:Domain projection.
</p>
<p>
/:MyModel:MyCompany:Contacts:Main:Domain/Contact/Name/@Required: identifies the Required attribute of the Name member of the Contact classifier within the :MyModel:MyCompany:Contacts:Main:Domain projection.
</p>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_IsInherited.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.IsInherited%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L189">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_IsInherited_" data-uid="Kephas.Model.Elements.NamedElementBase`1.IsInherited*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_IsInherited" data-uid="Kephas.Model.Elements.NamedElementBase`1.IsInherited">IsInherited</h4>
<div class="markdown level1 summary"><p>Gets or sets a value indicating whether this element is inherited.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool IsInherited { get; protected set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><p><code>true</code> if the model element is inherited, <code>false</code> if not.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_ModelSpace.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.ModelSpace%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L181">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_ModelSpace_" data-uid="Kephas.Model.Elements.NamedElementBase`1.ModelSpace*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_ModelSpace" data-uid="Kephas.Model.Elements.NamedElementBase`1.ModelSpace">ModelSpace</h4>
<div class="markdown level1 summary"><p>Gets the model space.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public virtual IModelSpace ModelSpace { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Kephas.Model.IModelSpace.html">IModelSpace</a></td>
<td><p>The model space.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_Name.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.Name%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L91">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_Name_" data-uid="Kephas.Model.Elements.NamedElementBase`1.Name*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_Name" data-uid="Kephas.Model.Elements.NamedElementBase`1.Name">Name</h4>
<div class="markdown level1 summary"><p>Gets the name of the model element.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public string Name { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><p>The model element name.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_Parts.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.Parts%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L213">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_Parts_" data-uid="Kephas.Model.Elements.NamedElementBase`1.Parts*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_Parts" data-uid="Kephas.Model.Elements.NamedElementBase`1.Parts">Parts</h4>
<div class="markdown level1 summary"><p>Gets the parts of an aggregated element.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected IEnumerable<object> Parts { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><<span class="xref">System.Object</span>></td>
<td><p>The parts.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_QualifiedFullName.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.QualifiedFullName%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L137">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_QualifiedFullName_" data-uid="Kephas.Model.Elements.NamedElementBase`1.QualifiedFullName*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_QualifiedFullName" data-uid="Kephas.Model.Elements.NamedElementBase`1.QualifiedFullName">QualifiedFullName</h4>
<div class="markdown level1 summary"><p>Gets or sets the qualified name of the element.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public string QualifiedFullName { get; protected set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><p>The qualified name of the element.</p>
</td>
</tr>
</tbody>
</table>
<h5 id="Kephas_Model_Elements_NamedElementBase_1_QualifiedFullName_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>The qualified name is unique within the container's members.
Some elements have the qualified name the same as their name,
but others will use a discriminator prefix to avoid name collisions.
For example, annotations use the &quot;@" discriminator, dimensions use "^", and projections use ":".</p>
</div>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_AddMember_Kephas_Model_INamedElement_.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.AddMember(Kephas.Model.INamedElement)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L312">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_AddMember_" data-uid="Kephas.Model.Elements.NamedElementBase`1.AddMember*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_AddMember_Kephas_Model_INamedElement_" data-uid="Kephas.Model.Elements.NamedElementBase`1.AddMember(Kephas.Model.INamedElement)">AddMember(INamedElement)</h4>
<div class="markdown level1 summary"><p>Adds the member to the members list.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected virtual void AddMember(INamedElement member)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Kephas.Model.INamedElement.html">INamedElement</a></td>
<td><span class="parametername">member</span></td>
<td><p>The member.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_AddPart_System_Object_.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.AddPart(System.Object)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L303">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_AddPart_" data-uid="Kephas.Model.Elements.NamedElementBase`1.AddPart*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_AddPart_System_Object_" data-uid="Kephas.Model.Elements.NamedElementBase`1.AddPart(System.Object)">AddPart(Object)</h4>
<div class="markdown level1 summary"><p>Adds a part to the aggregated element.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected virtual void AddPart(object part)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><span class="parametername">part</span></td>
<td><p>The part to be added.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_GetAttributes__1.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.GetAttributes%60%601%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L233">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_GetAttributes_" data-uid="Kephas.Model.Elements.NamedElementBase`1.GetAttributes*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_GetAttributes__1" data-uid="Kephas.Model.Elements.NamedElementBase`1.GetAttributes``1">GetAttributes<TAttribute>()</h4>
<div class="markdown level1 summary"><p>Gets the attribute of the provided type.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public virtual IEnumerable<TAttribute> GetAttributes<TAttribute>()
where TAttribute : Attribute</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><TAttribute></td>
<td><p>The attribute of the provided type.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TAttribute</span></td>
<td><p>Type of the attribute.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_OnCompleteConstruction_Kephas_Model_Construction_IModelConstructionContext_.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.OnCompleteConstruction(Kephas.Model.Construction.IModelConstructionContext)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L294">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_OnCompleteConstruction_" data-uid="Kephas.Model.Elements.NamedElementBase`1.OnCompleteConstruction*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_OnCompleteConstruction_Kephas_Model_Construction_IModelConstructionContext_" data-uid="Kephas.Model.Elements.NamedElementBase`1.OnCompleteConstruction(Kephas.Model.Construction.IModelConstructionContext)">OnCompleteConstruction(IModelConstructionContext)</h4>
<div class="markdown level1 summary"><p>Called when the construction is complete.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected virtual void OnCompleteConstruction(IModelConstructionContext constructionContext)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Kephas.Model.Construction.IModelConstructionContext.html">IModelConstructionContext</a></td>
<td><span class="parametername">constructionContext</span></td>
<td><p>Context for the construction.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_ToString.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.ToString%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L221">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_ToString_" data-uid="Kephas.Model.Elements.NamedElementBase`1.ToString*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_ToString" data-uid="Kephas.Model.Elements.NamedElementBase`1.ToString">ToString()</h4>
<div class="markdown level1 summary"><p>Returns a string that represents the current object.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override string ToString()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><p>A string that represents the current object.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><span class="xref">System.Object.ToString()</span></div>
<h3 id="eii">Explicit Interface Implementations
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_Kephas_Reflection_IAggregatedElementInfo_Parts.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.Kephas%23Reflection%23IAggregatedElementInfo%23Parts%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L123">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_Kephas_Reflection_IAggregatedElementInfo_Parts_" data-uid="Kephas.Model.Elements.NamedElementBase`1.Kephas#Reflection#IAggregatedElementInfo#Parts*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_Kephas_Reflection_IAggregatedElementInfo_Parts" data-uid="Kephas.Model.Elements.NamedElementBase`1.Kephas#Reflection#IAggregatedElementInfo#Parts">IAggregatedElementInfo.Parts</h4>
<div class="markdown level1 summary"><p>Gets the parts of an aggregated element.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">IEnumerable<object> IAggregatedElementInfo.Parts { get; }</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><<span class="xref">System.Object</span>></td>
<td><p>The parts.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_Kephas_Reflection_IElementInfo_Annotations.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.Kephas%23Reflection%23IElementInfo%23Annotations%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L115">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_Kephas_Reflection_IElementInfo_Annotations_" data-uid="Kephas.Model.Elements.NamedElementBase`1.Kephas#Reflection#IElementInfo#Annotations*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_Kephas_Reflection_IElementInfo_Annotations" data-uid="Kephas.Model.Elements.NamedElementBase`1.Kephas#Reflection#IElementInfo#Annotations">IElementInfo.Annotations</h4>
<div class="markdown level1 summary"><p>Gets the element annotations.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">IEnumerable<object> IElementInfo.Annotations { get; }</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><<span class="xref">System.Object</span>></td>
<td><p>The element annotations.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1_Kephas_Reflection_IElementInfo_DeclaringContainer.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601.Kephas%23Reflection%23IElementInfo%23DeclaringContainer%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L107">View Source</a>
</span>
<a id="Kephas_Model_Elements_NamedElementBase_1_Kephas_Reflection_IElementInfo_DeclaringContainer_" data-uid="Kephas.Model.Elements.NamedElementBase`1.Kephas#Reflection#IElementInfo#DeclaringContainer*"></a>
<h4 id="Kephas_Model_Elements_NamedElementBase_1_Kephas_Reflection_IElementInfo_DeclaringContainer" data-uid="Kephas.Model.Elements.NamedElementBase`1.Kephas#Reflection#IElementInfo#DeclaringContainer">IElementInfo.DeclaringContainer</h4>
<div class="markdown level1 summary"><p>Gets the parent element declaring this element.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">IElementInfo IElementInfo.DeclaringContainer { get; }</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Kephas.Reflection.IElementInfo.html">IElementInfo</a></td>
<td><p>The declaring element.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="implements">Implements</h3>
<div>
<a class="xref" href="Kephas.Model.INamedElement.html">INamedElement</a>
</div>
<div>
<a class="xref" href="Kephas.Reflection.IAggregatedElementInfo.html">IAggregatedElementInfo</a>
</div>
<div>
<a class="xref" href="Kephas.Reflection.IElementInfo.html">IElementInfo</a>
</div>
<div>
<a class="xref" href="Kephas.Dynamic.IExpando.html">IExpando</a>
</div>
<div>
<span class="xref">System.Dynamic.IDynamicMetaObjectProvider</span>
</div>
<div>
<a class="xref" href="Kephas.Dynamic.IIndexable.html">IIndexable</a>
</div>
<div>
<a class="xref" href="Kephas.Runtime.IAttributeProvider.html">IAttributeProvider</a>
</div>
<h3 id="extensionmethods">Extension Methods</h3>
<div>
<a class="xref" href="Kephas.DynamicObjectExtensions.html#Kephas_DynamicObjectExtensions_SetPropertyValue_System_Object_System_String_System_Object_">DynamicObjectExtensions.SetPropertyValue(Object, String, Object)</a>
</div>
<div>
<a class="xref" href="Kephas.DynamicObjectExtensions.html#Kephas_DynamicObjectExtensions_TrySetPropertyValue_System_Object_System_String_System_Object_">DynamicObjectExtensions.TrySetPropertyValue(Object, String, Object)</a>
</div>
<div>
<a class="xref" href="Kephas.DynamicObjectExtensions.html#Kephas_DynamicObjectExtensions_GetPropertyValue_System_Object_System_String_">DynamicObjectExtensions.GetPropertyValue(Object, String)</a>
</div>
<div>
<a class="xref" href="Kephas.DynamicObjectExtensions.html#Kephas_DynamicObjectExtensions_TryGetPropertyValue_System_Object_System_String_System_Object__">DynamicObjectExtensions.TryGetPropertyValue(Object, String, out Object)</a>
</div>
<div>
<a class="xref" href="Kephas.DynamicObjectExtensions.html#Kephas_DynamicObjectExtensions_GetRuntimeTypeInfo_System_Object_">DynamicObjectExtensions.GetRuntimeTypeInfo(Object)</a>
</div>
<div>
<a class="xref" href="Kephas.DynamicObjectExtensions.html#Kephas_DynamicObjectExtensions_ToDynamic_System_Object_">DynamicObjectExtensions.ToDynamic(Object)</a>
</div>
<div>
<a class="xref" href="Kephas.DynamicObjectExtensions.html#Kephas_DynamicObjectExtensions_ToExpando_System_Object_">DynamicObjectExtensions.ToExpando(Object)</a>
</div>
<div>
<a class="xref" href="Kephas.Behaviors.BehaviorValue.html#Kephas_Behaviors_BehaviorValue_ToBehaviorValue__1___0_">BehaviorValue.ToBehaviorValue<TValue>(TValue)</a>
</div>
<div>
<a class="xref" href="Kephas.Collections.CollectionExtensions.html#Kephas_Collections_CollectionExtensions_AddRange__2___0_System_Collections_Generic_IEnumerable___1__">CollectionExtensions.AddRange<T, TItem>(T, IEnumerable<TItem>)</a>
</div>
<div>
<a class="xref" href="Kephas.Logging.LoggingExtensions.html#Kephas_Logging_LoggingExtensions_GetLogger_System_Object_Kephas_Services_IContext_">LoggingExtensions.GetLogger(Object, IContext)</a>
</div>
<div>
<a class="xref" href="Kephas.Model.TypeExtensions.html#Kephas_Model_TypeExtensions_GetAbstractType_System_Object_">TypeExtensions.GetAbstractType(Object)</a>
</div>
<div>
<a class="xref" href="Kephas.Model.TypeExtensions.html#Kephas_Model_TypeExtensions_GetAbstractTypeInfo_System_Object_">TypeExtensions.GetAbstractTypeInfo(Object)</a>
</div>
<div>
<a class="xref" href="Kephas.Reflection.ReflectionHelper.html#Kephas_Reflection_ReflectionHelper_GetTypeInfo_System_Object_">ReflectionHelper.GetTypeInfo(Object)</a>
</div>
<div>
<a class="xref" href="Kephas.Model.Reflection.RuntimeTypeInfoExtensions.html#Kephas_Model_Reflection_RuntimeTypeInfoExtensions_IsExcludedFromModel_Kephas_Runtime_IAttributeProvider_">RuntimeTypeInfoExtensions.IsExcludedFromModel(IAttributeProvider)</a>
</div>
<div>
<a class="xref" href="Kephas.Data.Capabilities.EntityEntryExtensions.html#Kephas_Data_Capabilities_EntityEntryExtensions_TryGetAttachedEntityEntry_System_Object_">EntityEntryExtensions.TryGetAttachedEntityEntry(Object)</a>
</div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/kephas-software/kephas/new/master/apiSpec/new?filename=Kephas_Model_Elements_NamedElementBase_1.md&value=---%0Auid%3A%20Kephas.Model.Elements.NamedElementBase%601%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/kephas-software/kephas/blob/master/src/Kephas.Model/Elements/NamedElementBase.cs/#L31" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
|
start.html | Ali-Baba-Tajine/Ali-Baba-Tajine-Jekyll01 | ---
layout: abtstandard
title: Start
category : info
modified: 2014-07-08
description: "In den Ländern des Maghreb – Algerien, Tunesien und Marokko – ist die Tajine der Alltagskochtopf"
comments: false
share: true
---
{% include abtsetup.html %}
<p>Die Tajine gibt es in ihrer Ursprungsform schon seit tausenden von Jahren.
In den Ländern des Maghreb – Algerien, Tunesien und Marokko – ist die Tajine auf dem
Land immer noch der Alltagskochtopf, der in jeder Familie selbst hergestellt wird.
Aus Tradition fertigt jede Frau ihre eigene Tajine für ihren Haushalt. Werden die Töpfe
jedoch für den Handel hergestellt, übernehmen Männer diese Arbeit. In den ländlichen
Regionen leben die Menschen vorwiegend von der Landwirtschaft. Erst wenn die Männer älter
werden und die Landarbeit an die Söhne abgeben, fangen sie an Tajines zu töpfern, um damit
einen Zuverdienst für die Familie zu sichern.
Die Formen sind verschieden – die spitzen Deckel sind eher arabisch und die halbrunden
Deckel gibt es bei den Berbern. In Marokko werden inzwischen etwa 80% aller Tajines mit
Glasur versehen. Es gilt als schöner und praktischer, weil die Töpfe leichter zu reinigen wären.
Allerdings gibt es dort kaum Glasuren, die kein Blei enthalten. Nach unserem Lebensmittelrecht
dürfte man diese Töpfe nicht zur Zubereitung von Speisen verwenden. Sie eignen sich allenfalls
zum Anrichten.
Eine Tajine kann man mitten auf die Glut stellen und das Kochgut kalt ablöschen.
Wer das einmal(!) mit einem industriell gefertigten Römertopf probiert hat, wird sich das kaum
vorstellen können.Traditionell hatte dieser aus unbehandeltem Lehm gebrannte Topf einen
gewölbten Boden, er wurde zum Garen der Speisen direkt über die Glut gestellt.</p>
<div class="jumbotron">
<h1>Isotope</h1>
<p>...</p>
<p><a class="btn btn-primary btn-lg" role="button">Hier her</a></p>
</div>
|
clean/Linux-x86_64-4.13.1-2.1.0/extra-dev/dev/coqoban/8.8.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>coqoban: Error with dependencies</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">dev / coqoban - 8.8.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
coqoban
<small>
8.8.0
<span class="label label-warning">Error with dependencies</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-11-06 06:49:18 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-06 06:49:18 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq dev Formal proof management system
dune 2.9.1 Fast, portable, and opinionated build system
ocaml 4.13.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.13.1 Official release 4.13.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/coqoban"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Coqoban"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
]
tags: [ "keyword: Sokoban" "keyword: puzzles" "category: Miscellaneous/Logical Puzzles and Entertainment" "date: 2003-09-19" ]
authors: [ "Jasper Stein" ]
bug-reports: "https://github.com/coq-contribs/coqoban/issues"
dev-repo: "git+https://github.com/coq-contribs/coqoban.git"
synopsis: "Coqoban (Sokoban)"
description: """
A Coq implementation of Sokoban, the Japanese warehouse
keepers' game"""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/coqoban/archive/v8.8.0.tar.gz"
checksum: "md5=a5e4858ebbd03ec269c7a4dfe7f22195"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-coqoban.8.8.0 coq.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is dev).
[ERROR] Package conflict!
Sorry, no solution found: there seems to be a problem with your request.
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-coqoban.8.8.0</code></dd>
<dt>Return code</dt>
<dd>512</dd>
<dt>Output</dt>
<dd><pre>The following actions will be performed:
- remove coq dev
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
While removing coq.dev: these files have been modified since installation:
- share/texmf/tex/latex/misc/coqdoc.sty
- man/man1/coqwc.1
- man/man1/coqtop.opt.1
- man/man1/coqtop.byte.1
- man/man1/coqtop.1
- man/man1/coqnative.1
- man/man1/coqdoc.1
- man/man1/coqdep.1
- man/man1/coqchk.1
- man/man1/coqc.1
- man/man1/coq_makefile.1
- man/man1/coq-tex.1
- lib/stublibs/dllcoqrun_stubs.so
- lib/coqide-server/protocol/xmlprotocol.mli
- lib/coqide-server/protocol/xmlprotocol.ml
- lib/coqide-server/protocol/xmlprotocol.cmx
- lib/coqide-server/protocol/xmlprotocol.cmti
- lib/coqide-server/protocol/xmlprotocol.cmt
- lib/coqide-server/protocol/xmlprotocol.cmi
- lib/coqide-server/protocol/xml_printer.mli
- lib/coqide-server/protocol/xml_printer.ml
- lib/coqide-server/protocol/xml_printer.cmx
- lib/coqide-server/protocol/xml_printer.cmti
- lib/coqide-server/protocol/xml_printer.cmt
- lib/coqide-server/protocol/xml_printer.cmi
- lib/coqide-server/protocol/xml_parser.mli
- lib/coqide-server/protocol/xml_parser.ml
- lib/coqide-server/protocol/xml_parser.cmx
- lib/coqide-server/protocol/xml_parser.cmti
- lib/coqide-server/protocol/xml_parser.cmt
- lib/coqide-server/protocol/xml_parser.cmi
- lib/coqide-server/protocol/xml_lexer.mli
- lib/coqide-server/protocol/xml_lexer.ml
- lib/coqide-server/protocol/xml_lexer.cmx
- lib/coqide-server/protocol/xml_lexer.cmti
- lib/coqide-server/protocol/xml_lexer.cmt
- lib/coqide-server/protocol/xml_lexer.cmi
- lib/coqide-server/protocol/serialize.mli
- lib/coqide-server/protocol/serialize.ml
- lib/coqide-server/protocol/serialize.cmx
- lib/coqide-server/protocol/serialize.cmti
- lib/coqide-server/protocol/serialize.cmt
- lib/coqide-server/protocol/serialize.cmi
- lib/coqide-server/protocol/richpp.mli
- lib/coqide-server/protocol/richpp.ml
- lib/coqide-server/protocol/richpp.cmx
- lib/coqide-server/protocol/richpp.cmti
- lib/coqide-server/protocol/richpp.cmt
- lib/coqide-server/protocol/richpp.cmi
- lib/coqide-server/protocol/protocol.cmxs
- lib/coqide-server/protocol/protocol.cmxa
- lib/coqide-server/protocol/protocol.cma
- lib/coqide-server/protocol/protocol.a
- lib/coqide-server/protocol/interface.ml
- lib/coqide-server/protocol/interface.cmx
- lib/coqide-server/protocol/interface.cmt
- lib/coqide-server/protocol/interface.cmi
- lib/coqide-server/opam
- lib/coqide-server/dune-package
- lib/coqide-server/core/document.mli
- lib/coqide-server/core/document.ml
- lib/coqide-server/core/document.cmx
- lib/coqide-server/core/document.cmti
- lib/coqide-server/core/document.cmt
- lib/coqide-server/core/document.cmi
- lib/coqide-server/core/core.cmxs
- lib/coqide-server/core/core.cmxa
- lib/coqide-server/core/core.cma
- lib/coqide-server/core/core.a
- lib/coqide-server/META
- lib/coq/user-contrib/Ltac2/String.vos
- lib/coq/user-contrib/Ltac2/String.vo
- lib/coq/user-contrib/Ltac2/String.v
- lib/coq/user-contrib/Ltac2/String.glob
- lib/coq/user-contrib/Ltac2/Std.vos
- lib/coq/user-contrib/Ltac2/Std.vo
- lib/coq/user-contrib/Ltac2/Std.v
- lib/coq/user-contrib/Ltac2/Std.glob
- lib/coq/user-contrib/Ltac2/Printf.vos
- lib/coq/user-contrib/Ltac2/Printf.vo
- lib/coq/user-contrib/Ltac2/Printf.v
- lib/coq/user-contrib/Ltac2/Printf.glob
- lib/coq/user-contrib/Ltac2/Pattern.vos
- lib/coq/user-contrib/Ltac2/Pattern.vo
- lib/coq/user-contrib/Ltac2/Pattern.v
- lib/coq/user-contrib/Ltac2/Pattern.glob
- lib/coq/user-contrib/Ltac2/Option.vos
- lib/coq/user-contrib/Ltac2/Option.vo
- lib/coq/user-contrib/Ltac2/Option.v
- lib/coq/user-contrib/Ltac2/Option.glob
- lib/coq/user-contrib/Ltac2/Notations.vos
- lib/coq/user-contrib/Ltac2/Notations.vo
- lib/coq/user-contrib/Ltac2/Notations.v
- lib/coq/user-contrib/Ltac2/Notations.glob
- lib/coq/user-contrib/Ltac2/Message.vos
- lib/coq/user-contrib/Ltac2/Message.vo
- lib/coq/user-contrib/Ltac2/Message.v
- lib/coq/user-contrib/Ltac2/Message.glob
- lib/coq/user-contrib/Ltac2/Ltac2.vos
- lib/coq/user-contrib/Ltac2/Ltac2.vo
- lib/coq/user-contrib/Ltac2/Ltac2.v
- lib/coq/user-contrib/Ltac2/Ltac2.glob
- lib/coq/user-contrib/Ltac2/Ltac1.vos
- lib/coq/user-contrib/Ltac2/Ltac1.vo
- lib/coq/user-contrib/Ltac2/Ltac1.v
- lib/coq/user-contrib/Ltac2/Ltac1.glob
- lib/coq/user-contrib/Ltac2/List.vos
- lib/coq/user-contrib/Ltac2/List.vo
- lib/coq/user-contrib/Ltac2/List.v
- lib/coq/user-contrib/Ltac2/List.glob
- lib/coq/user-contrib/Ltac2/Int.vos
- lib/coq/user-contrib/Ltac2/Int.vo
- lib/coq/user-contrib/Ltac2/Int.v
- lib/coq/user-contrib/Ltac2/Int.glob
- lib/coq/user-contrib/Ltac2/Init.vos
- lib/coq/user-contrib/Ltac2/Init.vo
- lib/coq/user-contrib/Ltac2/Init.v
- lib/coq/user-contrib/Ltac2/Init.glob
- lib/coq/user-contrib/Ltac2/Ind.vos
- lib/coq/user-contrib/Ltac2/Ind.vo
- lib/coq/user-contrib/Ltac2/Ind.v
- lib/coq/user-contrib/Ltac2/Ind.glob
- lib/coq/user-contrib/Ltac2/Ident.vos
- lib/coq/user-contrib/Ltac2/Ident.vo
- lib/coq/user-contrib/Ltac2/Ident.v
- lib/coq/user-contrib/Ltac2/Ident.glob
- lib/coq/user-contrib/Ltac2/Fresh.vos
- lib/coq/user-contrib/Ltac2/Fresh.vo
- lib/coq/user-contrib/Ltac2/Fresh.v
- lib/coq/user-contrib/Ltac2/Fresh.glob
- lib/coq/user-contrib/Ltac2/Env.vos
- lib/coq/user-contrib/Ltac2/Env.vo
- lib/coq/user-contrib/Ltac2/Env.v
- lib/coq/user-contrib/Ltac2/Env.glob
- lib/coq/user-contrib/Ltac2/Control.vos
- lib/coq/user-contrib/Ltac2/Control.vo
- lib/coq/user-contrib/Ltac2/Control.v
- lib/coq/user-contrib/Ltac2/Control.glob
- lib/coq/user-contrib/Ltac2/Constr.vos
- lib/coq/user-contrib/Ltac2/Constr.vo
- lib/coq/user-contrib/Ltac2/Constr.v
- lib/coq/user-contrib/Ltac2/Constr.glob
- lib/coq/user-contrib/Ltac2/Char.vos
- lib/coq/user-contrib/Ltac2/Char.vo
- lib/coq/user-contrib/Ltac2/Char.v
- lib/coq/user-contrib/Ltac2/Char.glob
- lib/coq/user-contrib/Ltac2/Bool.vos
- lib/coq/user-contrib/Ltac2/Bool.vo
- lib/coq/user-contrib/Ltac2/Bool.v
- lib/coq/user-contrib/Ltac2/Bool.glob
- lib/coq/user-contrib/Ltac2/Array.vos
- lib/coq/user-contrib/Ltac2/Array.vo
- lib/coq/user-contrib/Ltac2/Array.v
- lib/coq/user-contrib/Ltac2/Array.glob
- lib/coq/theories/ssrsearch/ssrsearch.vos
- lib/coq/theories/ssrsearch/ssrsearch.vo
- lib/coq/theories/ssrsearch/ssrsearch.v
- lib/coq/theories/ssrsearch/ssrsearch.glob
- lib/coq/theories/ssrmatching/ssrmatching.vos
- lib/coq/theories/ssrmatching/ssrmatching.vo
- lib/coq/theories/ssrmatching/ssrmatching.v
- lib/coq/theories/ssrmatching/ssrmatching.glob
- lib/coq/theories/ssr/ssrunder.vos
- lib/coq/theories/ssr/ssrunder.vo
- lib/coq/theories/ssr/ssrunder.v
- lib/coq/theories/ssr/ssrunder.glob
- lib/coq/theories/ssr/ssrsetoid.vos
- lib/coq/theories/ssr/ssrsetoid.vo
- lib/coq/theories/ssr/ssrsetoid.v
- lib/coq/theories/ssr/ssrsetoid.glob
- lib/coq/theories/ssr/ssrfun.vos
- lib/coq/theories/ssr/ssrfun.vo
- lib/coq/theories/ssr/ssrfun.v
- lib/coq/theories/ssr/ssrfun.glob
- lib/coq/theories/ssr/ssreflect.vos
- lib/coq/theories/ssr/ssreflect.vo
- lib/coq/theories/ssr/ssreflect.v
- lib/coq/theories/ssr/ssreflect.glob
- lib/coq/theories/ssr/ssrclasses.vos
- lib/coq/theories/ssr/ssrclasses.vo
- lib/coq/theories/ssr/ssrclasses.v
- lib/coq/theories/ssr/ssrclasses.glob
- lib/coq/theories/ssr/ssrbool.vos
- lib/coq/theories/ssr/ssrbool.vo
- lib/coq/theories/ssr/ssrbool.v
- lib/coq/theories/ssr/ssrbool.glob
- lib/coq/theories/setoid_ring/ZArithRing.vos
- lib/coq/theories/setoid_ring/ZArithRing.vo
- lib/coq/theories/setoid_ring/ZArithRing.v
- lib/coq/theories/setoid_ring/ZArithRing.glob
- lib/coq/theories/setoid_ring/Rings_Z.vos
- lib/coq/theories/setoid_ring/Rings_Z.vo
- lib/coq/theories/setoid_ring/Rings_Z.v
- lib/coq/theories/setoid_ring/Rings_Z.glob
- lib/coq/theories/setoid_ring/Rings_R.vos
- lib/coq/theories/setoid_ring/Rings_R.vo
- lib/coq/theories/setoid_ring/Rings_R.v
- lib/coq/theories/setoid_ring/Rings_R.glob
- lib/coq/theories/setoid_ring/Rings_Q.vos
- lib/coq/theories/setoid_ring/Rings_Q.vo
- lib/coq/theories/setoid_ring/Rings_Q.v
- lib/coq/theories/setoid_ring/Rings_Q.glob
- lib/coq/theories/setoid_ring/Ring_theory.vos
- lib/coq/theories/setoid_ring/Ring_theory.vo
- lib/coq/theories/setoid_ring/Ring_theory.v
- lib/coq/theories/setoid_ring/Ring_theory.glob
- lib/coq/theories/setoid_ring/Ring_tac.vos
- lib/coq/theories/setoid_ring/Ring_tac.vo
- lib/coq/theories/setoid_ring/Ring_tac.v
- lib/coq/theories/setoid_ring/Ring_tac.glob
- lib/coq/theories/setoid_ring/Ring_polynom.vos
- lib/coq/theories/setoid_ring/Ring_polynom.vo
- lib/coq/theories/setoid_ring/Ring_polynom.v
- lib/coq/theories/setoid_ring/Ring_polynom.glob
- lib/coq/theories/setoid_ring/Ring_base.vos
- lib/coq/theories/setoid_ring/Ring_base.vo
- lib/coq/theories/setoid_ring/Ring_base.v
- lib/coq/theories/setoid_ring/Ring_base.glob
- lib/coq/theories/setoid_ring/Ring.vos
- lib/coq/theories/setoid_ring/Ring.vo
- lib/coq/theories/setoid_ring/Ring.v
- lib/coq/theories/setoid_ring/Ring.glob
- lib/coq/theories/setoid_ring/RealField.vos
- lib/coq/theories/setoid_ring/RealField.vo
- lib/coq/theories/setoid_ring/RealField.v
- lib/coq/theories/setoid_ring/RealField.glob
- lib/coq/theories/setoid_ring/Ncring_tac.vos
- lib/coq/theories/setoid_ring/Ncring_tac.vo
- lib/coq/theories/setoid_ring/Ncring_tac.v
- lib/coq/theories/setoid_ring/Ncring_tac.glob
- lib/coq/theories/setoid_ring/Ncring_polynom.vos
- lib/coq/theories/setoid_ring/Ncring_polynom.vo
- lib/coq/theories/setoid_ring/Ncring_polynom.v
- lib/coq/theories/setoid_ring/Ncring_polynom.glob
- lib/coq/theories/setoid_ring/Ncring_initial.vos
- lib/coq/theor
[...] truncated
predicate.cmt
- lib/coq-core/clib/predicate.cmi
- lib/coq-core/clib/orderedType.mli
- lib/coq-core/clib/orderedType.ml
- lib/coq-core/clib/orderedType.cmx
- lib/coq-core/clib/orderedType.cmti
- lib/coq-core/clib/orderedType.cmt
- lib/coq-core/clib/orderedType.cmi
- lib/coq-core/clib/option.mli
- lib/coq-core/clib/option.ml
- lib/coq-core/clib/option.cmx
- lib/coq-core/clib/option.cmti
- lib/coq-core/clib/option.cmt
- lib/coq-core/clib/option.cmi
- lib/coq-core/clib/neList.mli
- lib/coq-core/clib/neList.ml
- lib/coq-core/clib/neList.cmx
- lib/coq-core/clib/neList.cmti
- lib/coq-core/clib/neList.cmt
- lib/coq-core/clib/neList.cmi
- lib/coq-core/clib/monad.mli
- lib/coq-core/clib/monad.ml
- lib/coq-core/clib/monad.cmx
- lib/coq-core/clib/monad.cmti
- lib/coq-core/clib/monad.cmt
- lib/coq-core/clib/monad.cmi
- lib/coq-core/clib/minisys.ml
- lib/coq-core/clib/minisys.cmx
- lib/coq-core/clib/minisys.cmt
- lib/coq-core/clib/minisys.cmi
- lib/coq-core/clib/int.mli
- lib/coq-core/clib/int.ml
- lib/coq-core/clib/int.cmx
- lib/coq-core/clib/int.cmti
- lib/coq-core/clib/int.cmt
- lib/coq-core/clib/int.cmi
- lib/coq-core/clib/iStream.mli
- lib/coq-core/clib/iStream.ml
- lib/coq-core/clib/iStream.cmx
- lib/coq-core/clib/iStream.cmti
- lib/coq-core/clib/iStream.cmt
- lib/coq-core/clib/iStream.cmi
- lib/coq-core/clib/heap.mli
- lib/coq-core/clib/heap.ml
- lib/coq-core/clib/heap.cmx
- lib/coq-core/clib/heap.cmti
- lib/coq-core/clib/heap.cmt
- lib/coq-core/clib/heap.cmi
- lib/coq-core/clib/hashset.mli
- lib/coq-core/clib/hashset.ml
- lib/coq-core/clib/hashset.cmx
- lib/coq-core/clib/hashset.cmti
- lib/coq-core/clib/hashset.cmt
- lib/coq-core/clib/hashset.cmi
- lib/coq-core/clib/hashcons.mli
- lib/coq-core/clib/hashcons.ml
- lib/coq-core/clib/hashcons.cmx
- lib/coq-core/clib/hashcons.cmti
- lib/coq-core/clib/hashcons.cmt
- lib/coq-core/clib/hashcons.cmi
- lib/coq-core/clib/hMap.mli
- lib/coq-core/clib/hMap.ml
- lib/coq-core/clib/hMap.cmx
- lib/coq-core/clib/hMap.cmti
- lib/coq-core/clib/hMap.cmt
- lib/coq-core/clib/hMap.cmi
- lib/coq-core/clib/exninfo.mli
- lib/coq-core/clib/exninfo.ml
- lib/coq-core/clib/exninfo.cmx
- lib/coq-core/clib/exninfo.cmti
- lib/coq-core/clib/exninfo.cmt
- lib/coq-core/clib/exninfo.cmi
- lib/coq-core/clib/dyn.mli
- lib/coq-core/clib/dyn.ml
- lib/coq-core/clib/dyn.cmx
- lib/coq-core/clib/dyn.cmti
- lib/coq-core/clib/dyn.cmt
- lib/coq-core/clib/dyn.cmi
- lib/coq-core/clib/diff2.mli
- lib/coq-core/clib/diff2.ml
- lib/coq-core/clib/diff2.cmx
- lib/coq-core/clib/diff2.cmti
- lib/coq-core/clib/diff2.cmt
- lib/coq-core/clib/diff2.cmi
- lib/coq-core/clib/clib.cmxs
- lib/coq-core/clib/clib.cmxa
- lib/coq-core/clib/clib.cma
- lib/coq-core/clib/clib.a
- lib/coq-core/clib/cUnix.mli
- lib/coq-core/clib/cUnix.ml
- lib/coq-core/clib/cUnix.cmx
- lib/coq-core/clib/cUnix.cmti
- lib/coq-core/clib/cUnix.cmt
- lib/coq-core/clib/cUnix.cmi
- lib/coq-core/clib/cThread.mli
- lib/coq-core/clib/cThread.ml
- lib/coq-core/clib/cThread.cmx
- lib/coq-core/clib/cThread.cmti
- lib/coq-core/clib/cThread.cmt
- lib/coq-core/clib/cThread.cmi
- lib/coq-core/clib/cString.mli
- lib/coq-core/clib/cString.ml
- lib/coq-core/clib/cString.cmx
- lib/coq-core/clib/cString.cmti
- lib/coq-core/clib/cString.cmt
- lib/coq-core/clib/cString.cmi
- lib/coq-core/clib/cSig.mli
- lib/coq-core/clib/cSig.cmti
- lib/coq-core/clib/cSig.cmi
- lib/coq-core/clib/cSet.mli
- lib/coq-core/clib/cSet.ml
- lib/coq-core/clib/cSet.cmx
- lib/coq-core/clib/cSet.cmti
- lib/coq-core/clib/cSet.cmt
- lib/coq-core/clib/cSet.cmi
- lib/coq-core/clib/cObj.mli
- lib/coq-core/clib/cObj.ml
- lib/coq-core/clib/cObj.cmx
- lib/coq-core/clib/cObj.cmti
- lib/coq-core/clib/cObj.cmt
- lib/coq-core/clib/cObj.cmi
- lib/coq-core/clib/cMap.mli
- lib/coq-core/clib/cMap.ml
- lib/coq-core/clib/cMap.cmx
- lib/coq-core/clib/cMap.cmti
- lib/coq-core/clib/cMap.cmt
- lib/coq-core/clib/cMap.cmi
- lib/coq-core/clib/cList.mli
- lib/coq-core/clib/cList.ml
- lib/coq-core/clib/cList.cmx
- lib/coq-core/clib/cList.cmti
- lib/coq-core/clib/cList.cmt
- lib/coq-core/clib/cList.cmi
- lib/coq-core/clib/cEphemeron.mli
- lib/coq-core/clib/cEphemeron.ml
- lib/coq-core/clib/cEphemeron.cmx
- lib/coq-core/clib/cEphemeron.cmti
- lib/coq-core/clib/cEphemeron.cmt
- lib/coq-core/clib/cEphemeron.cmi
- lib/coq-core/clib/cArray.mli
- lib/coq-core/clib/cArray.ml
- lib/coq-core/clib/cArray.cmx
- lib/coq-core/clib/cArray.cmti
- lib/coq-core/clib/cArray.cmt
- lib/coq-core/clib/cArray.cmi
- lib/coq-core/boot/util.ml
- lib/coq-core/boot/path.ml
- lib/coq-core/boot/env.mli
- lib/coq-core/boot/env.ml
- lib/coq-core/boot/boot__Util.cmx
- lib/coq-core/boot/boot__Util.cmt
- lib/coq-core/boot/boot__Util.cmi
- lib/coq-core/boot/boot__Path.cmx
- lib/coq-core/boot/boot__Path.cmt
- lib/coq-core/boot/boot__Path.cmi
- lib/coq-core/boot/boot__Env.cmx
- lib/coq-core/boot/boot__Env.cmti
- lib/coq-core/boot/boot__Env.cmt
- lib/coq-core/boot/boot__Env.cmi
- lib/coq-core/boot/boot.ml
- lib/coq-core/boot/boot.cmxs
- lib/coq-core/boot/boot.cmxa
- lib/coq-core/boot/boot.cmx
- lib/coq-core/boot/boot.cmt
- lib/coq-core/boot/boot.cmi
- lib/coq-core/boot/boot.cma
- lib/coq-core/boot/boot.a
- lib/coq-core/META
- doc/coqide-server/README.md
- doc/coqide-server/LICENSE
- doc/coq-core/README.md
- doc/coq-core/LICENSE
- bin/votour
- bin/ocamllibdep
- bin/csdpcert
- bin/coqworkmgr
- bin/coqwc
- bin/coqtop.opt
- bin/coqtop.byte
- bin/coqtop
- bin/coqtacticworker.opt
- bin/coqqueryworker.opt
- bin/coqproofworker.opt
- bin/coqpp
- bin/coqnative
- bin/coqidetop.opt
- bin/coqidetop.byte
- bin/coqdoc
- bin/coqdep
- bin/coqchk
- bin/coqc.byte
- bin/coqc
- bin/coq_makefile
- bin/coq-tex
Remove them anyway? [y/N] y
[NOTE] While removing coq.dev: not removing non-empty directories:
- share/texmf/tex/latex/misc
- lib/coqide-server/protocol
- lib/coqide-server/core
- lib/coq/user-contrib/Ltac2
- lib/coq/theories/ssrsearch
- lib/coq/theories/ssrmatching
- lib/coq/theories/setoid_ring
- lib/coq/theories/rtauto
- lib/coq/theories/omega
- lib/coq/theories/nsatz
- lib/coq/theories/micromega
- lib/coq/theories/funind
- lib/coq/theories/extraction
- lib/coq/theories/derive
- lib/coq/theories/btauto
- lib/coq/theories/ZArith
- lib/coq/theories/Wellfounded
- lib/coq/theories/Vectors
- lib/coq/theories/Unicode
- lib/coq/theories/Structures
- lib/coq/theories/Strings
- lib/coq/theories/Sorting
- lib/coq/theories/Sets
- lib/coq/theories/Setoids
- lib/coq/theories/Relations
- lib/coq/theories/Reals/Cauchy
- lib/coq/theories/Reals/Abstract
- lib/coq/theories/QArith
- lib/coq/theories/Program
- lib/coq/theories/PArith
- lib/coq/theories/Numbers/Natural/Peano
- lib/coq/theories/Numbers/Natural/Binary
- lib/coq/theories/Numbers/Natural/Abstract
- lib/coq/theories/Numbers/NatInt
- lib/coq/theories/Numbers/Integer/NatPairs
- lib/coq/theories/Numbers/Integer/Binary
- lib/coq/theories/Numbers/Integer/Abstract
- lib/coq/theories/Numbers/Cyclic/ZModulo
- lib/coq/theories/Numbers/Cyclic/Int63
- lib/coq/theories/Numbers/Cyclic/Int31
- lib/coq/theories/Numbers/Cyclic/Abstract
- lib/coq/theories/NArith
- lib/coq/theories/MSets
- lib/coq/theories/Logic
- lib/coq/theories/Lists
- lib/coq/theories/Init
- lib/coq/theories/Floats
- lib/coq/theories/FSets
- lib/coq/theories/Compat
- lib/coq/theories/Classes
- lib/coq/theories/Bool
- lib/coq/theories/Array
- lib/coq/theories/Arith
- lib/coq-core/vm
- lib/coq-core/vernac
- lib/coq-core/toplevel
- lib/coq-core/top_printers
- lib/coq-core/tools/coqdoc
- lib/coq-core/tactics
- lib/coq-core/sysinit
- lib/coq-core/stm
- lib/coq-core/proofs
- lib/coq-core/printing
- lib/coq-core/pretyping
- lib/coq-core/plugins/zify
- lib/coq-core/plugins/tutorial/p3
- lib/coq-core/plugins/tutorial/p2
- lib/coq-core/plugins/tutorial/p1
- lib/coq-core/plugins/tutorial/p0
- lib/coq-core/plugins/tauto
- lib/coq-core/plugins/ssrsearch
- lib/coq-core/plugins/ssrmatching
- lib/coq-core/plugins/ssreflect
- lib/coq-core/plugins/rtauto
- lib/coq-core/plugins/ring
- lib/coq-core/plugins/number_string_notation
- lib/coq-core/plugins/nsatz
- lib/coq-core/plugins/micromega
- lib/coq-core/plugins/ltac2
- lib/coq-core/plugins/funind
- lib/coq-core/plugins/firstorder
- lib/coq-core/plugins/extraction
- lib/coq-core/plugins/derive
- lib/coq-core/plugins/cc
- lib/coq-core/plugins/btauto
- lib/coq-core/parsing
- lib/coq-core/library
- lib/coq-core/kernel
- lib/coq-core/interp
- lib/coq-core/gramlib
- lib/coq-core/engine
- lib/coq-core/config
- lib/coq-core/clib
- lib/coq-core/boot
- doc/coqide-server
- doc/coq-core
-> removed coq.dev
Done.
# Run eval $(opam env) to update the current shell environment
opam: --unlock-base was removed in version 2.1 of the opam CLI, but version 2.1 has been requested. Use --update-invariant instead or set OPAMCLI environment variable to 2.0.
The middle of the output is truncated (maximum 20000 characters)
</pre></dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.02.3-2.0.6/released/8.7.2/float/8.5.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>float: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.2 / float - 8.5.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
float
<small>
8.5.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-22 06:02:19 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-22 06:02:19 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-ocamlbuild base OCamlbuild binary and libraries distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.7.2 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.02.3 The OCaml compiler (virtual package)
ocaml-base-compiler 4.02.3 Official 4.02.3 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matej.kosik@inria.fr"
homepage: "https://github.com/coq-contribs/float"
license: "LGPL 2"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Float"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
]
tags: [
"keyword:floating-point arithmetic"
"category:Computer Science/Data Types and Data Structures"
"date:2001"
]
authors: [ "Sylvie Boldo <>" "Laurent Théry <>" ]
bug-reports: "https://github.com/coq-contribs/float/issues"
dev-repo: "git+https://github.com/coq-contribs/float.git"
synopsis: "Library for floating-point numbers"
description: "A library for floating-point numbers."
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/float/archive/v8.5.0.tar.gz"
checksum: "md5=0744e6c9df53f300b1214c6c947539f4"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-float.8.5.0 coq.8.7.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.2).
The following dependencies couldn't be met:
- coq-float -> coq < 8.6~ -> ocaml < 4.02.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-float.8.5.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
docs/build/html/docs/source/_rst/twilio.rest.chat.html | twilio/twilio-python |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><!--Google Tag Manager--><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'%26l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MWRD6S');</script><!--End Google Tag Manager-->
<meta content="IE=Edge" http-equiv="X-UA-Compatible"/>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<title>twilio.rest.chat package — twilio-python 7.7.0 documentation</title>
<link href="../../../_static/alabaster.css" rel="stylesheet" type="text/css"/>
<link href="../../../_static/pygments.css" rel="stylesheet" type="text/css"/>
<script data-url_root="../../../" id="documentation_options" src="../../../_static/documentation_options.js" type="text/javascript"></script>
<script src="../../../_static/jquery.js" type="text/javascript"></script>
<script src="../../../_static/underscore.js" type="text/javascript"></script>
<script src="../../../_static/doctools.js" type="text/javascript"></script>
<script async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
<link href="../../../genindex.html" rel="index" title="Index"/>
<link href="../../../search.html" rel="search" title="Search"/>
<link href="twilio.rest.chat.v1.html" rel="next" title="twilio.rest.chat.v1 package"/>
<link href="twilio.rest.bulkexports.v1.export.html" rel="prev" title="twilio.rest.bulkexports.v1.export package"/>
<link href="../../../_static/custom.css" rel="stylesheet" type="text/css"/>
<meta content="width=device-width, initial-scale=0.9, maximum-scale=0.9" name="viewport"/>
</head><body><!--Google Tag Manager (noscript)--><noscript><iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-MWRD6S" style="display:none;visibility:hidden" width="0"></iframe></noscript><!--End Google Tag Manager (noscript)-->
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="twilio-rest-chat-package">
<h1>twilio.rest.chat package<a class="headerlink" href="#twilio-rest-chat-package" title="Permalink to this headline">¶</a></h1>
<div class="section" id="subpackages">
<h2>Subpackages<a class="headerlink" href="#subpackages" title="Permalink to this headline">¶</a></h2>
<div class="toctree-wrapper compound">
<ul>
<li class="toctree-l1"><a class="reference internal" href="twilio.rest.chat.v1.html">twilio.rest.chat.v1 package</a><ul>
<li class="toctree-l2"><a class="reference internal" href="twilio.rest.chat.v1.html#subpackages">Subpackages</a><ul>
<li class="toctree-l3"><a class="reference internal" href="twilio.rest.chat.v1.service.html">twilio.rest.chat.v1.service package</a><ul>
<li class="toctree-l4"><a class="reference internal" href="twilio.rest.chat.v1.service.html#subpackages">Subpackages</a><ul>
<li class="toctree-l5"><a class="reference internal" href="twilio.rest.chat.v1.service.channel.html">twilio.rest.chat.v1.service.channel package</a><ul>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v1.service.channel.html#submodules">Submodules</a></li>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v1.service.channel.html#module-twilio.rest.chat.v1.service.channel.invite">twilio.rest.chat.v1.service.channel.invite module</a></li>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v1.service.channel.html#module-twilio.rest.chat.v1.service.channel.member">twilio.rest.chat.v1.service.channel.member module</a></li>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v1.service.channel.html#module-twilio.rest.chat.v1.service.channel.message">twilio.rest.chat.v1.service.channel.message module</a></li>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v1.service.channel.html#module-twilio.rest.chat.v1.service.channel">Module contents</a></li>
</ul>
</li>
<li class="toctree-l5"><a class="reference internal" href="twilio.rest.chat.v1.service.user.html">twilio.rest.chat.v1.service.user package</a><ul>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v1.service.user.html#submodules">Submodules</a></li>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v1.service.user.html#module-twilio.rest.chat.v1.service.user.user_channel">twilio.rest.chat.v1.service.user.user_channel module</a></li>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v1.service.user.html#module-twilio.rest.chat.v1.service.user">Module contents</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l4"><a class="reference internal" href="twilio.rest.chat.v1.service.html#submodules">Submodules</a></li>
<li class="toctree-l4"><a class="reference internal" href="twilio.rest.chat.v1.service.html#module-twilio.rest.chat.v1.service.role">twilio.rest.chat.v1.service.role module</a></li>
<li class="toctree-l4"><a class="reference internal" href="twilio.rest.chat.v1.service.html#module-twilio.rest.chat.v1.service">Module contents</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="twilio.rest.chat.v1.html#submodules">Submodules</a></li>
<li class="toctree-l2"><a class="reference internal" href="twilio.rest.chat.v1.html#module-twilio.rest.chat.v1.credential">twilio.rest.chat.v1.credential module</a></li>
<li class="toctree-l2"><a class="reference internal" href="twilio.rest.chat.v1.html#module-twilio.rest.chat.v1">Module contents</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="twilio.rest.chat.v2.html">twilio.rest.chat.v2 package</a><ul>
<li class="toctree-l2"><a class="reference internal" href="twilio.rest.chat.v2.html#subpackages">Subpackages</a><ul>
<li class="toctree-l3"><a class="reference internal" href="twilio.rest.chat.v2.service.html">twilio.rest.chat.v2.service package</a><ul>
<li class="toctree-l4"><a class="reference internal" href="twilio.rest.chat.v2.service.html#subpackages">Subpackages</a><ul>
<li class="toctree-l5"><a class="reference internal" href="twilio.rest.chat.v2.service.channel.html">twilio.rest.chat.v2.service.channel package</a><ul>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v2.service.channel.html#submodules">Submodules</a></li>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v2.service.channel.html#module-twilio.rest.chat.v2.service.channel.invite">twilio.rest.chat.v2.service.channel.invite module</a></li>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v2.service.channel.html#module-twilio.rest.chat.v2.service.channel.member">twilio.rest.chat.v2.service.channel.member module</a></li>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v2.service.channel.html#module-twilio.rest.chat.v2.service.channel.message">twilio.rest.chat.v2.service.channel.message module</a></li>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v2.service.channel.html#module-twilio.rest.chat.v2.service.channel.webhook">twilio.rest.chat.v2.service.channel.webhook module</a></li>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v2.service.channel.html#module-twilio.rest.chat.v2.service.channel">Module contents</a></li>
</ul>
</li>
<li class="toctree-l5"><a class="reference internal" href="twilio.rest.chat.v2.service.user.html">twilio.rest.chat.v2.service.user package</a><ul>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v2.service.user.html#submodules">Submodules</a></li>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v2.service.user.html#module-twilio.rest.chat.v2.service.user.user_binding">twilio.rest.chat.v2.service.user.user_binding module</a></li>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v2.service.user.html#module-twilio.rest.chat.v2.service.user.user_channel">twilio.rest.chat.v2.service.user.user_channel module</a></li>
<li class="toctree-l6"><a class="reference internal" href="twilio.rest.chat.v2.service.user.html#module-twilio.rest.chat.v2.service.user">Module contents</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l4"><a class="reference internal" href="twilio.rest.chat.v2.service.html#submodules">Submodules</a></li>
<li class="toctree-l4"><a class="reference internal" href="twilio.rest.chat.v2.service.html#module-twilio.rest.chat.v2.service.binding">twilio.rest.chat.v2.service.binding module</a></li>
<li class="toctree-l4"><a class="reference internal" href="twilio.rest.chat.v2.service.html#module-twilio.rest.chat.v2.service.role">twilio.rest.chat.v2.service.role module</a></li>
<li class="toctree-l4"><a class="reference internal" href="twilio.rest.chat.v2.service.html#module-twilio.rest.chat.v2.service">Module contents</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l2"><a class="reference internal" href="twilio.rest.chat.v2.html#submodules">Submodules</a></li>
<li class="toctree-l2"><a class="reference internal" href="twilio.rest.chat.v2.html#module-twilio.rest.chat.v2.credential">twilio.rest.chat.v2.credential module</a></li>
<li class="toctree-l2"><a class="reference internal" href="twilio.rest.chat.v2.html#module-twilio.rest.chat.v2">Module contents</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="section" id="module-twilio.rest.chat">
<span id="module-contents"></span><h2>Module contents<a class="headerlink" href="#module-twilio.rest.chat" title="Permalink to this headline">¶</a></h2>
<p>This code was generated by
/ _ _ _| _ _</p>
<blockquote>
<div><div class="line-block">
<div class="line">(_)/(_)(_|/| <a href="#system-message-1"><span class="problematic" id="problematic-1">|</span></a>(/_ v1.0.0
/ /</div>
</div>
</div></blockquote>
<dl class="class">
<dt id="twilio.rest.chat.Chat">
<em class="property">class </em><code class="descclassname">twilio.rest.chat.</code><code class="descname">Chat</code><span class="sig-paren">(</span><em>twilio</em><span class="sig-paren">)</span><a class="reference internal" href="../../../_modules/twilio/rest/chat.html#Chat"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#twilio.rest.chat.Chat" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <a class="reference internal" href="twilio.base.html#twilio.base.domain.Domain" title="twilio.base.domain.Domain"><code class="xref py py-class docutils literal notranslate"><span class="pre">twilio.base.domain.Domain</span></code></a></p>
<dl class="attribute">
<dt id="twilio.rest.chat.Chat.credentials">
<code class="descname">credentials</code><a class="headerlink" href="#twilio.rest.chat.Chat.credentials" title="Permalink to this definition">¶</a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name"/>
<col class="field-body"/>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body"><a class="reference internal" href="twilio.rest.chat.v2.html#twilio.rest.chat.v2.credential.CredentialList" title="twilio.rest.chat.v2.credential.CredentialList">twilio.rest.chat.v2.credential.CredentialList</a></td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="twilio.rest.chat.Chat.services">
<code class="descname">services</code><a class="headerlink" href="#twilio.rest.chat.Chat.services" title="Permalink to this definition">¶</a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name"/>
<col class="field-body"/>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body"><a class="reference internal" href="twilio.rest.chat.v2.service.html#twilio.rest.chat.v2.service.ServiceList" title="twilio.rest.chat.v2.service.ServiceList">twilio.rest.chat.v2.service.ServiceList</a></td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="twilio.rest.chat.Chat.v1">
<code class="descname">v1</code><a class="headerlink" href="#twilio.rest.chat.Chat.v1" title="Permalink to this definition">¶</a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name"/>
<col class="field-body"/>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">Version v1 of chat</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><a class="reference internal" href="twilio.rest.chat.v1.html#twilio.rest.chat.v1.V1" title="twilio.rest.chat.v1.V1">twilio.rest.chat.v1.V1</a></td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="attribute">
<dt id="twilio.rest.chat.Chat.v2">
<code class="descname">v2</code><a class="headerlink" href="#twilio.rest.chat.Chat.v2" title="Permalink to this definition">¶</a></dt>
<dd><table class="docutils field-list" frame="void" rules="none">
<col class="field-name"/>
<col class="field-body"/>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">Version v2 of chat</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><a class="reference internal" href="twilio.rest.chat.v2.html#twilio.rest.chat.v2.V2" title="twilio.rest.chat.v2.V2">twilio.rest.chat.v2.V2</a></td>
</tr>
</tbody>
</table>
</dd></dl>
</dd></dl>
</div>
</div>
</div>
</div>
</div>
<div aria-label="main navigation" class="sphinxsidebar" role="navigation">
<div class="sphinxsidebarwrapper"><h3><a href="https://www.twilio.com/docs/libraries/python">About twilio-python</a></h3>
<p>
A Python module for communicating with the Twilio API and generating <a href="http://www.twilio.com/docs/api/twiml/">TwiML</a>.
</p>
<h3>Useful Links</h3>
<ul>
<li><a href="https://www.twilio.com/docs/libraries/python">Twilio's Python Helper Library Docs</a></li>
<li><a href="https://pypi.org/project/twilio/">twilio @ PyPI</a></li>
<li><a href="https://github.com/twilio/twilio-python">twilio-python @ GitHub</a></li>
</ul>
<h3><a href="../../../index.html">Table of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">twilio.rest.chat package</a><ul>
<li><a class="reference internal" href="#subpackages">Subpackages</a></li>
<li><a class="reference internal" href="#module-twilio.rest.chat">Module contents</a></li>
</ul>
</li>
</ul>
<div class="relations">
<h3>Related Topics</h3>
<ul>
<li><a href="../../../index.html">Documentation overview</a><ul>
<li><a href="modules.html">twilio</a><ul>
<li><a href="twilio.html">twilio package</a><ul>
<li><a href="twilio.rest.html">twilio.rest package</a><ul>
<li>Previous: <a href="twilio.rest.bulkexports.v1.export.html" title="previous chapter">twilio.rest.bulkexports.v1.export package</a></li>
<li>Next: <a href="twilio.rest.chat.v1.html" title="next chapter">twilio.rest.chat.v1 package</a></li>
</ul></li>
</ul></li>
</ul></li>
</ul></li>
</ul>
</div>
<div aria-label="source link" role="note">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../../../_sources/docs/source/_rst/twilio.rest.chat.rst.txt" rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" role="search" style="display: none">
<h3>Quick search</h3>
<div class="searchformwrapper">
<form action="../../../search.html" class="search" method="get">
<input name="q" type="text"/>
<input type="submit" value="Go"/>
<input name="check_keywords" type="hidden" value="yes"/>
<input name="area" type="hidden" value="default"/>
</form>
</div>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="footer">
©2019, Twilio.
|
Powered by <a href="http://sphinx-doc.org/">Sphinx 1.8.0</a>
& <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.12</a>
|
<a href="../../../_sources/docs/source/_rst/twilio.rest.chat.rst.txt" rel="nofollow">Page source</a>
</div>
</body>
</html> |
clean/Linux-x86_64-4.05.0-2.0.1/released/8.8.1/circuits/8.8.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>circuits: 23 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.1 / circuits - 8.8.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
circuits
<small>
8.8.0
<span class="label label-success">23 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-10-21 07:12:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-21 07:12:33 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.8.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/circuits"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Circuits"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
]
tags: [ "keyword: hardware verification" "category: Computer Science/Architecture" ]
authors: [ "Laurent Arditi" ]
bug-reports: "https://github.com/coq-contribs/circuits/issues"
dev-repo: "git+https://github.com/coq-contribs/circuits.git"
synopsis: "Some proofs of hardware (adder, multiplier, memory block instruction)"
description: """
definition and proof of a combinatorial adder, a
sequential multiplier, a memory block instruction"""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/circuits/archive/v8.8.0.tar.gz"
checksum: "md5=d526366e525ef6398a7586ecbe231b80"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-circuits.8.8.0 coq.8.8.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-circuits.8.8.0 coq.8.8.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>8 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-circuits.8.8.0 coq.8.8.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>23 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 1017 K</p>
<ul>
<li>75 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/MULTIPLIER/MultSeq.glob</code></li>
<li>57 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/BLOCK/Fill_impl.vo</code></li>
<li>55 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Lists_field.glob</code></li>
<li>46 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Lists_field.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/BLOCK/Fill_impl.glob</code></li>
<li>36 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Lists_compl.vo</code></li>
<li>33 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/MULTIPLIER/MultSeq.vo</code></li>
<li>30 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/MULTIPLIER/Definitions.vo</code></li>
<li>29 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/BLOCK/Fill_spec.vo</code></li>
<li>28 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Arith_compl.vo</code></li>
<li>27 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/MULTIPLIER/Definitions.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/Adder.vo</code></li>
<li>25 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/AdderProof.glob</code></li>
<li>25 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Lists_compl.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Arith_compl.glob</code></li>
<li>23 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/AdderProof.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/MULTIPLIER/LemPrelim.glob</code></li>
<li>21 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/BV.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/IncrDecr.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Lists_replace.vo</code></li>
<li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/MULTIPLIER/LemPrelim.vo</code></li>
<li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/Adder.glob</code></li>
<li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/FullAdder.vo</code></li>
<li>19 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/BLOCK/Fill_proof.vo</code></li>
<li>19 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/BLOCK/Fill_spec.glob</code></li>
<li>17 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/BLOCK/Fill_defs.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/BLOCK/Fill_proof.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/HalfAdder.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Lists_field.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Memo.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/MULTIPLIER/MultSeq.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Lists_replace.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Bool_compl.vo</code></li>
<li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/FullAdder.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/BV.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/IncrDecr.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/BLOCK/Fill_impl.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Lists_compl.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Bool_compl.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/Adder.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Arith_compl.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/MULTIPLIER/Definitions.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/AdderProof.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/BLOCK/Fill_spec.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/BLOCK/Fill_defs.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Lists_replace.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/FullAdder.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/IncrDecr.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/MULTIPLIER/LemPrelim.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/BV.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/BLOCK/Fill_proof.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Bool_compl.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/HalfAdder.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Memo.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/BLOCK/Fill_defs.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/ADDER/HalfAdder.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Circuits/GENE/Memo.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-circuits.8.8.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.10.2-2.0.6/released/8.11.1/prfx/8.6.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>prfx: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.1 / prfx - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
prfx
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-26 16:52:27 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-26 16:52:27 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.10.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.2 Official release 4.10.2
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/prfx"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Prfx"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [
"keyword: first-order logic"
"keyword: natural deduction"
"keyword: reflection"
"keyword: proof terms"
"keyword: de Bruijn indices"
"keyword: permutative conversions"
"category: Mathematics/Logic/Foundations"
"date: 15 April 2005"
]
authors: [ "Dimitri Hendriks <hendriks@cs.ru.nl> [http://www.cs.ru.nl/~hendriks/]" ]
bug-reports: "https://github.com/coq-contribs/prfx/issues"
dev-repo: "git+https://github.com/coq-contribs/prfx.git"
synopsis: "Proof Reflection in Coq"
description: """
http://www.cs.ru.nl/~hendriks/coq/prfx/
A formalisation of natural deduction for first-order
logic with explicit proof terms. Read README."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/prfx/archive/v8.6.0.tar.gz"
checksum: "md5=79074f93e7f08b01bdf03e503e70f730"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-prfx.8.6.0 coq.8.11.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.1).
The following dependencies couldn't be met:
- coq-prfx -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-prfx.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
storage/browser/index.html | MattMS/web_tricks | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Matt McKellar-Spence">
<meta name="description" content="Example code with different libraries">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web tricks</title>
<link href="http://css.mattms.info/basic/light/index.css?t=2014-12-21T1300+10" rel="stylesheet" title="Basic light" type="text/css">
<link href="http://css.mattms.info/basic/dark/index.css?t=2014-12-21T1300+10" rel="alternate stylesheet" title="Basic dark" type="text/css">
<link href="http://css.mattms.info/solarized/dark/index.css?t=2014-12-21T1300+10" rel="alternate stylesheet" title="Solarized dark" type="text/css">
</head>
<body>
<article class="container"><h1 id="browser-storage">Browser storage</h1>
<p>Save a value in the browser so that it is maintained even when the
browser is closed and reopened.</p>
<ul>
<li><p><a href="./localStorage/">localStorage</a></p>
</li>
<li><p><a href="./PouchDB/">PouchDB</a></p>
</li>
</ul>
<p>Each example uses jQuery to simplify adding event handlers and selecting
the input and button.</p>
</article>
<footer class="container">
<hr>
<ul>
<li><a href="/">Home</a></li>
<li><a href="http://about.mattms.info">Read about me</a></li>
<li><a href="https://github.com/MattMS/web_tricks">View on GitHub</a></li>
</ul>
</footer>
</body>
</html> |
run/templates/set_params.m.html | open-macro/open-macro-io |
{% for param in parameters %}{{ param.name }} = {{param.value}};
{% endfor %}
save params.mat {% for param in parameters %}{{ param.name }} {% endfor %}; |
clean/Linux-x86_64-4.02.3-2.0.6/released/8.5.2/mathcomp-bigenough/1.0.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-bigenough: 17 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.2 / mathcomp-bigenough - 1.0.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-bigenough
<small>
1.0.0
<span class="label label-success">17 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-04 10:12:16 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-04 10:12:16 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-ocamlbuild base OCamlbuild binary and libraries distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.5.2 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.02.3 The OCaml compiler (virtual package)
ocaml-base-compiler 4.02.3 Official 4.02.3 release
ocaml-config 1 OCaml Switch Configuration
# opam file:
opam-version: "2.0"
name: "coq-mathcomp-bigenough"
version: "1.0.0"
maintainer: "Cyril Cohen <cyril.cohen@inria.fr>"
homepage: "https://github.com/math-comp/bigenough"
bug-reports: "https://github.com/math-comp/bigenough/issues"
license: "CeCILL-B"
dev-repo: "git+https://github.com/math-comp/bigenough"
build: [ make "-j" "%{jobs}%" "COQEXTRAFLAGS+=-native-compiler yes" {coq-native:installed & coq:version < "8.13~" } ]
install: [ make "install" ]
remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/mathcomp/bigenough'" ]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.15~"}
"coq-mathcomp-ssreflect" {>= "1.6"}
]
tags: [ "keyword:bigenough" "keyword:asymptotic reasonning" "keyword:small scale reflection" "keyword:mathematical components" ]
authors: [ "Cyril Cohen <cyril.cohen@inria.fr>" ]
synopsis: "A small library to do epsilon - N reasonning"
description: """
The package contains a package to reasoning with big enough objects
(mostly natural numbers). This package is essentially for backward
compatibility purposes as `bigenough` will be subsumed by the near
tactics. The formalization is based on the Mathematical Components
library."""
url {
src: "https://github.com/math-comp/bigenough/archive/1.0.0.tar.gz"
checksum: "md5=cf126ccb8a405eb2e94f68d57152b717"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-mathcomp-bigenough.1.0.0 coq.8.5.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-mathcomp-bigenough.1.0.0 coq.8.5.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>3 m 10 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-mathcomp-bigenough.1.0.0 coq.8.5.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>17 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 59 K</p>
<ul>
<li>43 K <code>../ocaml-base-compiler.4.02.3/lib/coq/user-contrib/mathcomp/bigenough/bigenough.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.02.3/lib/coq/user-contrib/mathcomp/bigenough/bigenough.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.02.3/lib/coq/user-contrib/mathcomp/bigenough/bigenough.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-mathcomp-bigenough.1.0.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.9.1/coqffi/1.0.0~beta7.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>coqffi: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.9.1 / coqffi - 1.0.0~beta7</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
coqffi
<small>
1.0.0~beta7
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-30 00:15:10 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-30 00:15:10 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.9.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "lthms@soap.coffee"
homepage: "https://github.com/coq-community/coqffi"
dev-repo: "git+https://github.com/coq-community/coqffi.git"
bug-reports: "https://github.com/coq-community/coqffi/issues"
license: "MIT"
synopsis: "Tool for generating Coq FFI bindings to OCaml libraries"
description: """
`coqffi` generates the necessary Coq boilerplate to use OCaml functions in a
Coq development, and configures the Coq extraction mechanism accordingly."""
build: [
["./src-prepare.sh"]
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.08" & < "4.13~" }
"dune" {>= "2.5"}
"coq" {(>= "8.12" & < "8.14~") | = "dev"}
"cmdliner" {>= "1.0.4"}
"sexplib" {>= "0.14"}
]
tags: [
"category:Miscellaneous/Coq Extensions"
"keyword:foreign function interface"
"keyword:extraction"
"keyword:OCaml"
"logpath:CoqFFI"
]
authors: [
"Thomas Letan"
"Li-yao Xia"
"Yann Régis-Gianas"
"Yannick Zakowski"
]
url {
src: "https://github.com/coq-community/coqffi/archive/1.0.0-beta7.tar.gz"
checksum: "sha512=0f9d2893f59f8d09caec83f8476a2e7a511a7044516d639e4283b4187a86cf1563e60f1647cd12ae06e7e395bbc5dfedf5d798af3eb6baf81c0c2e482e14507b"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-coqffi.1.0.0~beta7 coq.8.9.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.9.1).
The following dependencies couldn't be met:
- coq-coqffi -> ocaml >= 4.08
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-coqffi.1.0.0~beta7</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.07.1-2.0.6/released/8.7.1+2/bertrand/8.8.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>bertrand: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1+2 / bertrand - 8.8.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
bertrand
<small>
8.8.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-06 02:33:16 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-06 02:33:16 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.7.1+2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-community/bertrand"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Bertrand"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
]
tags: [ "keyword: Knuth's algorithm" "keyword: prime numbers" "keyword: Bertrand's postulate" "category: Mathematics/Arithmetic and Number Theory/Number theory" "category: Computer Science/Decision Procedures and Certified Algorithms/Correctness proofs based on external tools" "category: Miscellaneous/Extracted Programs/Arithmetic" "date: 2002" ]
authors: [ "Laurent Théry" ]
bug-reports: "https://github.com/coq-community/bertrand/issues"
dev-repo: "git+https://github.com/coq-community/bertrand.git"
synopsis: "Correctness of Knuth's algorithm for prime numbers"
description: """
A proof of correctness of the algorithm as described in
`The Art of Computer Programming: Fundamental Algorithms'
by Knuth, pages 147-149"""
flags: light-uninstall
url {
src: "https://github.com/coq-community/bertrand/archive/v8.8.0.tar.gz"
checksum: "md5=7abe286c4e4f394cfb9401cd28b7b209"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-bertrand.8.8.0 coq.8.7.1+2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1+2).
The following dependencies couldn't be met:
- coq-bertrand -> coq >= 8.8
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-bertrand.8.8.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
dist/css/oai.css | mowekabanas/oai | /* Mowe Block */
.Block {
min-height: 100vh;
width: 100%;
}
/* Cities Block */
.CitiesBlock {
min-height: 100vh;
padding: 4.5em 0;
width: 100%;
}
.CitiesBlock h2,
.CitiesBlock h3,
.CitiesBlock h4,
.CitiesBlock p {
text-align: center;
}
.CitiesBlock h3 {
/*font-size: 3em;*/
font-weight: 300;
}
/* Cities */
.Cities {
display: block;
position: relative;
height: 36em;
max-width: 72em;
width: 100%;
margin: 2.25em auto 3.75em;
}
.Cities-background,
.Cities-inner {
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
}
.Cities-inner {
width: 18em;
}
.CitiesList,
.CitiesMap {
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
}
/* Cities List */
.CitiesList {
background-color: rgba(245,245,245,1);
-webkit-transition: background .3s;
-moz-transition: background .3s;
-ms-transition: background .3s;
-o-transition: background .3s;
transition: background .3s;
}
.Cities:hover .CitiesList {
background-color: rgba(245,245,245,.48);
}
.CitiesList h1,
.CitiesList p {
display: none;
}
.CitiesList-menu {
height: 100%;
overflow-y: auto;
width: 100%;
}
/* Cities Map */
.CitiesMap {
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
}
/* Cities Map canvas */
.CitiesMap-canvas {
height: 100%;
width: 100%;
}
/* Cities Item */
.CitiesItem {
padding: .5em;
width: 100%;
}
.CitiesItem-select-area {
cursor: default;
-webkit-align-items: center;
align-items: center;
background-color: #f5f5f5;
border: solid 1px #039be5;
border-radius: 3px;
color: #039be5;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
height: 3em;
-webkit-justify-content: center;
justify-content: center;
}
.CitiesItem-select-area:hover {
background-color: #039be5;
color: #ffffff;
}
/* Offices */
.Offices {
margin: 0 auto;
max-width: 48em;
width: 100%;
}
.OfficesList {
-webkit-align-items: center;
align-items: center;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-justify-content: space-around;
justify-content: space-around;
}
.OfficeItem {
-webkit-align-items: stretch;
align-items: stretch;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: column;
flex-flow: column;
width: 16em;
min-height: 8em;
margin-bottom: 1.5em;
}
.OfficeItem h4 {
font-size: 1.5em;
font-weight: 400;
margin-bottom: .5em;
}
.OfficeItem p {
font-size: 1em;
line-height: 1.48;
margin-bottom: 1.125em;
}
.OfficeItem-icon {
color: #bdbdbd;
font-size: 2.25em;
line-height: 1.5;
}
.OfficeItem-button {
border: solid 1px #039be5;
border-radius: 3px;
color: #039be5;
line-height: 2.25;
margin-bottom: 1em;
padding: .5em 1.5em;
}
.OfficeItem-button:active,
.OfficeItem-button:focus,
.OfficeItem-button:hover {
background-color: #039be5;
-webkit-box-shadow: 0 0 .375em 1px rgba(3,155,229,.6);
-moz-box-shadow: 0 0 .375em 1px rgba(3,155,229,.6);
box-shadow: 0 0 .375em 1px rgba(3,155,229,.6);
color: #ffffff;
}
.OfficeItem-content,
.OfficeItem-header {
-webkit-align-items: center;
align-items: center;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
-webkit-flex-flow: column;
flex-flow: column;
}
.OfficeItemTimetable p {
color: #757575;
font-size: .875em;
line-height: 1.48;
margin: 0;
}
/* Contact Form */
.ContactForm {
max-width: 800px;
width: 100%;
padding: 1em 0 0;
}
/* Contact Form Block*/
.ConcatFormBlock {
padding: 4.5em 0;
}
/* Form Title */
.ContactForm-title {
font-size: 1em;
width: 100%;
padding: 0 3.75em;
margin: 1em 0 .5em;
}
.ContactForm-title span {
color: #4e342e;
font-size: 1.5em;
font-weight: 300;
}
/* Form Wrapper and Field */
.ContactForm-wrapper,
.ContactForm-field {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.ContactForm-wrapper {
padding: 0 1em;
width: 100%;
}
/* Form Field */
.ContactForm-field {
padding: 0 1.5em;
width: 100%;
}
.ContactFormFooter .ContactForm-field {
width: auto;
}
.ContactForm-field--submit {
padding: 0;
}
.ContactForm-field ::-webkit-input-placeholder {
color: #607d8b;
}
.ContactForm-field :-moz-placeholder {
color: #607d8b;
}
.ContactForm-field ::-moz-placeholder {
color: #607d8b;
}
.ContactForm-field :focus::-webkit-input-placeholder {
color: #b0bec5;
}
.ContactForm-field :focus:-moz-placeholder {
color: #b0bec5;
}
.ContactForm-field :focus::-moz-placeholder {
color: #b0bec5;
}
.ContactForm-field input,
.ContactForm-field label,
.ContactForm-field textarea {
color: #4e342e;
border: none;
background: none;
width: 100%;
}
.ContactForm-field input,
.ContactForm-field textarea {
border-bottom-style: solid;
border-bottom-width: 1px;
border-bottom-color: #e0e0e0;
margin: 1px 0 .5em;
order: 2;
-webkit-transition: background .3s;
-moz-transition: background .3s;
-ms-transition: background .3s;
-o-transition: background .3s;
transition: background .3s;
}
.ContactForm-field input:focus,
.ContactForm-field textarea:focus {
border-bottom-width: 2px;
border-bottom-color: #00b8d4;
margin-top: 0;
}
.ContactForm-field input:invalid,
.ContactForm-field textarea:invalid {
border-bottom-width: 2px;
border-bottom-color: red;
background: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.ContactForm-field input {
font-size: 1em;
line-height: 1;
padding: 1em 0 .5em;
}
.ContactForm-field--name input {
font-weight: 500;
}
.ContactForm-field label {
color: #00b8d4;
display: none;
font-size: .75em;
padding: 1.333333333em 0 0;
}
.ContactForm-field textarea + label {
order: 1;
display: block;
}
.ContactForm-field textarea:focus + label {
color: #00b8d4;
}
.ContactForm-field textarea {
font-size: 1em;
line-height: 1.5;
min-height: 4em;
min-width: 100%;
padding: .5em 0;
}
/* Contact Form Footer */
.ContactFormFooter {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-justify-content: flex-end;
justify-content: flex-end;
}
/* Contact Form Status */
.ContactFormStatus {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
height: 100%;
padding: 0 1em;
}
/* Contact Form Status text */
.ContactFormStatus-text {
display: none;
font-size: .875em;
font-weight: 900;
letter-spacing: -.5pt;
}
.ContactForm.is-success .ContactFormStatus-text--success,
.ContactForm.is-sending .ContactFormStatus-text--sending,
.ContactForm.is-error .ContactFormStatus-text--error,
.ContactForm.is-fail .ContactFormStatus-text--fail {
-webkit-align-items: center;
align-items: center;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
}
.ContactForm.is-sending .ContactFormStatus-text--sending {
-webkit-animation: sendAnimation infinite .6s ease;
-o-animation: sendAnimation infinite .6s ease;
animation: sendAnimation infinite .6s ease;
}
.ContactForm-field .ContactForm-submit {
color: #00b8d4;
cursor: pointer;
border: none;
padding: .625em .5em;
margin: .5em;
font-weight: 600;
text-transform: uppercase;
width: 6em;
}
.ContactForm-field .ContactForm-submit:hover,
.ContactForm-field .ContactForm-submit:focus {
background-color: #e0e0e0;
margin: .5em;
}
@media (min-width: 72em) {
.ContactForm-field textarea {
font-size: 1em;
line-height: 1.5;
min-height: 6em;
min-width: 100%;
padding: .5em 0;
}
}
@media (min-width: 36em) {
.ContactForm-wrapper {
padding: 0 2.25em;
width: 100%;
}
}
@-webkit-keyframes loadAnimation {
0% {
opacity: 1;
}
50% {
opacity: .48;
}
100% {
opacity: 1;
}
}
@-o-keyframes loadAnimation {
0% {
opacity: 1;
}
50% {
opacity: .48;
}
100% {
opacity: 1;
}
}
@-moz-keyframes sendAnimation {
0% {
opacity: 1;
}
50% {
opacity: .48;
}
100% {
opacity: 1;
}
}
@keyframes loadAnimation {
0% {
opacity: 1;
}
50% {
opacity: .48;
}
100% {
opacity: 1;
}
}
/* Contact Phone */
.ContactPhone {
-webkit-align-items: center;
align-items: center;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: column;
flex-flow: column;
width: 100%;
}
/* Contact Phone list */
/* Contact Phone Item */
.ContactPhoneItem {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
margin: 0 0 1em;
}
/* Contact Phone Item header */
.ContactPhoneItem-header {
-webkit-align-items: center;
align-items: center;
background-color: #1e88e5;
border-bottom-left-radius: 8px;
border-top-left-radius: 8px;
color: #ffffff;
cursor: default;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
height: 6em;
-webkit-justify-content: center;
justify-content: center;
width: 6em;
}
.ContactPhoneItem:hover .ContactPhoneItem-header {
background-color: #2196f3;
}
.ContactPhoneItem-header span {
font-size: 1.5em;
}
/* Contact Phone Item content */
.ContactPhoneItem-content {
color: #616161;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
-webkit-flex-flow: column;
flex-flow: column;
background-color: #eeeeee;
padding: 0 0 0 1.5em;
height: 6em;
width: 24em;
}
.ContactPhoneItem-number {
font-size: 1.5em;
font-weight: 600;
line-height: 1.48;
}
/* Contact */
.Contact {
padding: 4.5em 0;
}
/* Contact Methods */
.ContactMethods h3 {
color: #424242;
font-size: 3em;
margin: 0 0 .625em;
}
/* Contact Methods Nav */
.ContactMethodsNav {
display: block;
width: 100%;
max-width: 60em;
}
.ContactMethodsNav-list {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-justify-content: center;
justify-content: center;
}
/* Contact Methods Nav Item */
.ContactMethodsNavItem {
margin: 0 0 1em;
min-width: 12em;
}
/* Contact Nav Item select area */
.ContactMethodsNavItem-select-area {
-webkit-align-items: center;
align-items: center;
border-radius: 8px;
cursor: pointer;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: column;
flex-flow: column;
padding: 1.5em 0 1.3125em;
width: 100%;
}
.ContactMethodsNavItem-select-area:hover {
background-color: #eeeeee;
}
/* Contact Nav Item icon */
.ContactMethodsNavItem-icon {
-webkit-align-items: center;
align-items: center;
border: solid 2px #1e88e5;
border-radius: 50%;
color: #1e88e5;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
height: 3.75em;
margin: 0 0 1em;
width: 3.75em;
}
.ContactMethodsNavItem-icon span {
font-size: 1.5em;
font-weight: 600;
}
/* Contact Nav Item title */
.ContactMethodsNavItem-title {
color: #616161;
font-size: 1.125em;
font-weight: 600;
}
/* Contact Methods Content */
.ContactMethodsContent {
margin: 0 0 3em;
max-width: 60em;
position: relative;
width: 100%;
}
/* Contact Methods Item */
.ContactMethods-item {
display: none;
height: 100%;
left: 0;
overflow-y: auto;
position: relative;
top: 0;
width: 100%;
}
.ContactMethods-item.is-active {
display: block;
}
/* Contact Methods item themes */
.ContactMethods-item--phone,
.ContactMethods-item--mobile {
padding: 1em 0 0 0;
}
.ContactMethods-item--email.is-active {
-webkit-align-items: center;
align-items: center;
color: #1e88e5;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
font-size: 3em;
height: 100%;
-webkit-justify-content: center;
justify-content: center;
width: 100%;
}
/* Dev Footer */
.DevFooter {
-webkit-align-items: center;
align-items: center;
background-color: #1565c0;
color: #ffffff;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: flex-end;
justify-content: flex-end;
height: 4.5em;
padding: 0 2.25em;
width: 100%;
}
.DevFooter span {
font-size: .75em;
}
/* OAI Elements */
h1,
h2,
h3,
h4,
h5,
h6 {
display: block;
font-weight: 400;
margin-bottom: .75em;
line-height: 1.36;
}
h2 {
font-size: 4.5em;
}
h3 {
display: block;
font-size: 3.75em;
font-weight: 400;
margin-bottom: .75em;
line-height: 1.36;
}
p {
font-size: 1.3125em;
font-weight: 300;
line-height: 1.6;
margin-bottom: 2.25em;
}
/* Final Slogan */
.FinalSlogan {
margin: 1em 0;
}
.FinalSlogan-logo {
padding: 0 0 .5em;
}
.FinalSlogan span {
font-size: .75em;
font-weight: 900;
text-transform: uppercase;
}
/* OAI Footer */
.Footer {
-webkit-align-items: center;
align-items: center;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: column;
flex-flow: column;
-webkit-justify-content: space-around;
justify-content: space-around;
padding: 4.5em 0 1em;
}
.Footer a,
.Footer p {
font-size: .875em;
font-weight: 400;
line-height: 1.48;
}
/* Footer About */
.FooterAbout {
-webkit-align-items: flex-end;
align-items: flex-end;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-justify-content: space-between;
justify-content: space-between;
margin-bottom: 3em;
width: 100%;
max-width: 60em;
padding: 0 1em;
}
.FooterAbout > * {
flex: 1;
}
/* FooterText */
.FooterText {
text-align: right;
}
.FooterText p {
margin: 0 0 .75em;
}
.FooterText p:last-of-type {
margin: 0;
}
/*!
* Mowe Hero v2.0.0 (http://getvilla.org/)
* Copyright 2013-2015 Noibe Developers
* Licensed under MIT (https://github.com/noibe/villa/blob/master/LICENSE)
*/
.hero {
align-content: stretch;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
padding: 0 1em;
/*margin: -4.5em*/
}
.navbar-fixed .hero-inner > * {
margin: 1.5em auto 1em;
/* top: 3.5em to navbar + 1em to hero */
}
.hero h1 {
font-size: 2.25em;
font-weight: 300;
}
@media (min-width: 43.75em) {
.hero h1 {
font-size: 3em;
}
}
@media (min-width: 56.25em) {
.hero h1 {
font-size: 3em;
}
}
@media (min-width: 72em) {
.hero h1 {
font-size: 4.5em;
}
}
@media (min-width: 96em) {
.hero h1 {
font-size: 6em;
}
}
.hero .btn {
border: solid 2px #ffffff;
border-radius: 4px;
margin-top: 30px;
float: left;
padding: 10px 30px;
}
/*
Oai Hero
*/
.hero {
/*background-image: url("../img/wt01.jpg");*/
position: relative;
height: 100vh;
}
.hero-background,
.hero-inner,
.hero-overlay {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
}
.hero-inner {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
align-items: center;
}
.hero .container {
margin-bottom: 0;
/*align-items: center;*/
}
.hero .welcome {
/*align-self: flex-start;*/
text-align: center;
padding: 1em;
width: 100%;
}
.hero .promo {
background-color: rgba(255,255,255,.3);
/*background-color: rgba(255,255,255,.6);*/
border-radius: 2px;
min-width: 18em;
padding: 5em 1em;
text-shadow: 2px 2px 10px #424242;
}
.hero .promo #promo01 p {
font-size: .75em;
text-transform: uppercase;
max-width: 20em;
}
.hero .promo #promo01 p .small {
font-size: 2.25em;
}
.hero .promo #promo01 p .x-small {
font-size: 1.5em;
}
.hero .promo #promo01 p .price {
font-size: 6em;
}
.hero .promo #promo01 p .cents {
font-size: 1.5em;
}
.hero .scroll-container {
position: absolute;
bottom: 30px;
text-align: center;
width: 100%;
left: 0;
}
.hero .scroll:hover {
opacity: 1;
transition: opacity 1s ease;
}
.hero .scroll {
user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
outline: 0;
}
.hero .scroll:hover .scroll-btn {
background-color: rgba(255,255,255,0.2);
transition: all 1s ease;
}
.hero .scroll-text {
font-size: 14px;
text-shadow: 1px 1px 5px rgba(77,77,77,.6);
text-transform: uppercase;
}
.hero .scroll-btn {
align-items: center;
background-color: rgba(255,255,255,0.0);
border: solid 1px rgba(255,255,255,0.05);
border-radius: 50%;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
height: 52px;
justify-content: center;
margin: 8px auto 0;
width: 52px;
}
.hero .scroll-btn svg {
margin-top: -5px;
height: 44px;
opacity: .6;
transition: opacity 1s ease;
width: 44px;
}
.hero .scroll-btn svg:hover {
animation: scroll-animation .6s ease 0s infinite;
-webkit-animation: scroll-animation .6s ease 0s infinite;
opacity: 1;
transition: all 1s ease;
}
.hero .scroll-btn path {
fill: #ffffff;
}
@-webkit-keyframes scroll-animation {
0% {
padding-top: 0;
}
90% {
padding-top: 20px;
}
100% {
padding-top: 60px;
}
}
@keyframes scroll-animation {
0% {
padding-top: 0;
}
90% {
padding-top: 20px;
}
100% {
padding-top: 60px;
}
}
@media (min-width: 48em) {
.hero .welcome {
/*padding: 1em 2em ;*/
}
.hero .promo #promo01 p {
font-size: 0.875em;
}
#about .photo {
min-height: 24em;
}
}
@media (min-width: 60em) {
.welcome {
margin: 0 0 0 -2em;
}
.hero .promo #promo01 p {
font-size: 1em;
}
}
@font-face {
font-family: 'oai';
src: url("../font/oai.eot?33085432");
src: url("../font/oai.eot?33085432#iefix") format('embedded-opentype'),
url("../font/oai.woff?33085432") format('woff'),
url("../font/oai.ttf?33085432") format('truetype'),
url("../font/oai.svg?33085432#oai") format('svg');
font-weight: normal;
font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'oai';
src: url('../font/oai.svg?33085432#oai') format('svg');
}
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
font-family: "oai";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: .2em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.icon-mail:before {
content: '\e800';
}
/* '' */
.icon-search:before {
content: '\e801';
}
/* '' */
.icon-star:before {
content: '\e802';
}
/* '' */
.icon-user:before {
content: '\e803';
}
/* '' */
.icon-users:before {
content: '\e804';
}
/* '' */
.icon-user-add:before {
content: '\e805';
}
/* '' */
.icon-video:before {
content: '\e806';
}
/* '' */
.icon-camera:before {
content: '\e807';
}
/* '' */
.icon-check:before {
content: '\e808';
}
/* '' */
.icon-cancel:before {
content: '\e809';
}
/* '' */
.icon-menu:before {
content: '\e80a';
}
/* '' */
.icon-layout:before {
content: '\e80b';
}
/* '' */
.icon-info:before {
content: '\e80c';
}
/* '' */
.icon-home:before {
content: '\e80d';
}
/* '' */
.icon-attach:before {
content: '\e80e';
}
/* '' */
.icon-eye:before {
content: '\e80f';
}
/* '' */
.icon-tag:before {
content: '\e810';
}
/* '' */
.icon-flag:before {
content: '\e811';
}
/* '' */
.icon-thumbs-up:before {
content: '\e812';
}
/* '' */
.icon-comment:before {
content: '\e813';
}
/* '' */
.icon-chat:before {
content: '\e814';
}
/* '' */
.icon-location:before {
content: '\e815';
}
/* '' */
.icon-map:before {
content: '\e816';
}
/* '' */
.icon-direction:before {
content: '\e817';
}
/* '' */
.icon-doc-text:before {
content: '\e818';
}
/* '' */
.icon-doc-text-inv:before {
content: '\e819';
}
/* '' */
.icon-folder:before {
content: '\e81a';
}
/* '' */
.icon-phone:before {
content: '\e81b';
}
/* '' */
.icon-rss:before {
content: '\e81c';
}
/* '' */
.icon-login:before {
content: '\e81d';
}
/* '' */
.icon-logout:before {
content: '\e81e';
}
/* '' */
.icon-clock:before {
content: '\e81f';
}
/* '' */
.icon-hourglass:before {
content: '\e820';
}
/* '' */
.icon-lamp:before {
content: '\e821';
}
/* '' */
.icon-monitor:before {
content: '\e822';
}
/* '' */
.icon-mobile:before {
content: '\e823';
}
/* '' */
.icon-globe:before {
content: '\e824';
}
/* '' */
.icon-twitter:before {
content: '\e825';
}
/* '' */
.icon-facebook:before {
content: '\e826';
}
/* '' */
.icon-facebook-circled:before {
content: '\e827';
}
/* '' */
.icon-facebook-squared:before {
content: '\e828';
}
/* '' */
.icon-gplus:before {
content: '\e829';
}
/* '' */
.icon-gplus-circled:before {
content: '\e82a';
}
/* '' */
.icon-pinterest:before {
content: '\e82b';
}
/* '' */
.icon-pinterest-circled:before {
content: '\e82c';
}
/* '' */
.icon-tumblr:before {
content: '\e82d';
}
/* '' */
.icon-tumblr-circled:before {
content: '\e82e';
}
/* '' */
.icon-linkedin:before {
content: '\e82f';
}
/* '' */
.icon-linkedin-circled:before {
content: '\e830';
}
/* '' */
.icon-instagram:before {
content: '\e831';
}
/* '' */
.icon-dropbox:before {
content: '\e832';
}
/* '' */
.icon-skype:before {
content: '\e833';
}
/* '' */
.icon-skype-circled:before {
content: '\e834';
}
/* '' */
.icon-plus:before {
content: '\e835';
}
/* '' */
.icon-plus-circled:before {
content: '\e836';
}
/* '' */
.icon-plus-squared:before {
content: '\e837';
}
/* '' */
.icon-minus:before {
content: '\e838';
}
/* '' */
.icon-minus-circled:before {
content: '\e839';
}
/* '' */
.icon-minus-squared:before {
content: '\e83a';
}
/* '' */
.icon-help:before {
content: '\e83b';
}
/* '' */
.icon-help-circled:before {
content: '\e83c';
}
/* '' */
.icon-info-circled:before {
content: '\e83d';
}
/* '' */
.icon-back:before {
content: '\e83e';
}
/* '' */
.icon-pencil:before {
content: '\e83f';
}
/* '' */
.icon-code:before {
content: '\e840';
}
/* '' */
.icon-down-circled:before {
content: '\e841';
}
/* '' */
.icon-left-circled:before {
content: '\e842';
}
/* '' */
.icon-right-circled:before {
content: '\e843';
}
/* '' */
.icon-up-circled:before {
content: '\e844';
}
/* '' */
.icon-down-bold:before {
content: '\e845';
}
/* '' */
.icon-left-bold:before {
content: '\e846';
}
/* '' */
.icon-right-bold:before {
content: '\e847';
}
/* '' */
.icon-up-bold:before {
content: '\e848';
}
/* '' */
.icon-down-open:before {
content: '\e849';
}
/* '' */
.icon-left-open:before {
content: '\e84a';
}
/* '' */
.icon-right-open:before {
content: '\e84b';
}
/* '' */
.icon-up-open:before {
content: '\e84c';
}
/* '' */
.icon-floppy:before {
content: '\e84d';
}
/* '' */
.icon-credit-card:before {
content: '\e84e';
}
/* '' */
.icon-air:before {
content: '\e84f';
}
/* '' */
.icon-droplet:before {
content: '\e850';
}
/* '' */
.icon-water:before {
content: '\e851';
}
/* '' */
/* Footer Logo */
.FooterLogo svg {
margin-left: 3.2em;
max-width: 4.5em;
width: 100%;
}
.FooterLogo .OaiLogoSymbol-blue,
.FooterLogo .OaiLogoSymbol-green {
fill: #ffffff;
-webkit-transition: fill .3s;
-moz-transition: fill .3s;
-ms-transition: fill .3s;
-o-transition: fill .3s;
transition: fill .3s;
}
.FooterLogo .OaiLogoType {
display: none;
}
.FinalSlogan-select-area:hover .OaiLogoSymbol-green {
fill: #CDDC37;
}
/*!
* Mowe Nav v0.8.0 (http://getvilla.org/)
* Copyright 2013-2015 Noibe Developers
* Licensed under MIT (https://github.com/noibe/villa/blob/master/LICENSE)
*/
.navbar {
background-color: transparent;
min-height: 3.75em;
width: 100%;
}
button::-moz-focus-inner {
border: 0;
}
.navbar,
.navbar .container,
.navbar .item,
.navbar .item a,
.navbar .menu,
.navbar header,
.navbar footer {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
.navbar,
.navbar .container,
.navbar header {
flex-direction: row;
justify-content: space-between;
align-items: stretch;
}
.navbar .item {
align-items: center;
}
.navbar .item a {
align-items: center;
}
.navbar .item a {
padding: 0 .5em;
margin: 0 1em;
}
.navbar .menu {
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-end;
}
.navbar .item .link {
font-weight: 700;
}
.navbar header:hover .slogan {
padding-left: 0;
transition: all .1s linear;
}
.navbar .brand {
padding: 0 0 0 25px;
}
.navbar .brand-text {
font-weight: 600;
font-size: 23px;
letter-spacing: -0.07em;
}
.navbar .logo {
padding: 0;
}
.navbar header .item:hover #bg {
height: 48px;
transition: all .15s linear;
}
.navbar .toggle {
border: none;
font-size: 23px;
padding: 0 20px;
display: none;
}
@media (min-width: 48em) {
.fixed-sm {
position: fixed;
}
}
@media (max-width: 48em) {
.navbar .toggle {
display: block;
}
.navbar header {
height: 3.75em;
}
.navbar footer {
display: block;
}
.navbar .menu {
display: none;
}
.navbar .show.menu {
position: absolute;
right: 0;
border-top: solid 1px #bdbdbd;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
float: right;
flex-direction: column;
align-items: center;
justify-content: center;
}
.navbar .show.menu a {
padding: 10px 25px;
}
.navbar,
.navbar .container {
flex-direction: column;
align-content: flex-end;
}
}
.PriceListFrame .container {
max-width: 72em;
}
/* Pricelist Content */
.PricelistContent {
-webkit-align-items: flex-start;
align-items: flex-start;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-justify-content: center;
justify-content: center;
}
.PricelistContent {
display: none;
}
.Prices.slide-1 .Pricelist:nth-child(1) .PricelistContent,
.Prices.slide-2 .Pricelist:nth-child(2) .PricelistContent,
.Prices.slide-3 .Pricelist:nth-child(3) .PricelistContent {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
@media (min-width: 60em) {
.PricelistContent {
flex-wrap: nowrap;
}
}
/* Pricelist Item */
.PricelistItem {
-webkit-align-items: stretch;
align-items: stretch;
border-radius: 8px;
cursor: default;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: column;
flex-flow: column;
-webkit-justify-content: center;
justify-content: center;
max-width: 16em;
padding: 1.5em 1.5em 1em;
text-align: center;
}
.PricelistItem:hover {
background-color: #fafafa;
color: #424242;
-webkit-transition: background .3s;
-moz-transition: background .3s;
-ms-transition: background .3s;
-o-transition: background .3s;
transition: background .3s;
}
.Prices.slide-1 .Pricelist:nth-child(1),
.Prices.slide-2 .Pricelist:nth-child(2),
.Prices.slide-3 .Pricelist:nth-child(3) {
opacity: 1;
transition: all 1s ease;
}
/* Pricelist Item media */
@media (min-width: 48em) {
.PricelistItem {
padding: 1.125em 2.25em .875em;
max-width: 16em;
}
}
@media (min-width: 60em) {
.PricelistContent {
flex-wrap: nowrap;
}
.PricelistItem {
padding: 1.3125em 1.3125em 1em;
max-width: 16em;
}
}
@media (min-width: 72em) {
.PricelistItem {
padding: 1.5em 1.5em 1.125em;
}
}
/* Pricelist Item title */
.PricelistItem-title {
border-bottom: solid 2px #e0e0e0;
margin: 0 0 1.125em;
padding: 0 0 1em;
text-transform: uppercase;
}
.PricelistItem-title span {
font-size: 1.125em;
}
.Pricelist.hidden-price .PricelistItem-title span {
font-size: 2.25em;
}
.PricelistItem:hover .PricelistItem-title,
.PricelistItem.error .PricelistItem-title,
.PricelistItem.success .PricelistItem-title {
border-color: #fafafa;
}
/* Pricelist Item description */
.PricelistItem-description {
color: #e0e0e0;
font-size: .875em;
margin: 0 0 1em;
}
.PricelistItem:hover .PricelistItem-description,
.PricelistItem.error .PricelistItem-description,
.PricelistItem.success .PricelistItem-description {
color: #9e9e9e;
}
/* OLD CODE */
.PricelistItem .price {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: row;
justify-content: center;
min-width: 180px;
}
.PricelistItem .price .dollar {
font-size: 40px;
align-self: flex-start;
}
.PricelistItem .price .number {
font-size: 3.75em;
line-height: 1em;
align-self: center;
}
.PricelistItem .price .decimal {
align-self: flex-end;
}
.PricelistItem .action {
background-color: #00bfa5;
border: none;
border-radius: 25px;
font-size: 1em;
font-weight: 600;
color: #ffffff;
margin: 1em 0 .5em;
padding: 10px;
opacity: 0;
transition: none;
}
.PricelistItem input {
background-color: #eeeeee;
border: solid 2px #00bfa5;
border-radius: 2px;
color: #424242;
font-size: 1.125em;
font-weight: 300;
display: block;
margin-top: 1em;
padding: 8px 12px;
}
.PricelistItem:hover .action {
opacity: 1;
transition: none;
}
.PricelistItem .price {
display: flex;
flex-direction: row;
justify-content: center;
min-width: 180px;
}
.PricelistItem .price .dollar {
font-size: 40px;
align-self: flex-start;
}
.PricelistItem .price .number {
font-size: 3.75em;
line-height: 1em;
align-self: center;
}
.PricelistItem .price .decimal {
align-self: flex-end;
}
.PricelistItem .action {
background-color: #e0e0e0;
border: none;
border-radius: 25px;
font-size: 1em;
font-weight: 600;
color: #fff;
margin: 1em 0 .5em;
padding: 10px;
opacity: 0;
transition: none;
}
.PricelistItem input {
background-color: #eee;
border: 2px solid #00bfa5;
border-radius: 2px;
color: #424242;
font-size: 1.125em;
font-weight: 300;
display: block;
margin-top: 1em;
padding: 8px 12px;
}
.PricelistItem:hover .send {
opacity: 0;
}
.PricelistItem .contact {
display: flex;
flex-direction: column;
}
.PricelistItem input,
.PricelistItem .response-send {
display: none;
}
.PricelistItem.active input,
.PricelistItem.active .response-send {
display: block;
border-width: 2px;
margin-top: 1em;
padding: 8px 12px;
height: auto;
-webkit-transition: opacity .3s linear .15s;
-moz-transition: opacity .3s linear .15s;
-o-transition: opacity .3s linear .15s;
-ms-transition: opacity .43 linear .15s;
transition: opacity .3s linear .15s;
}
.PricelistItem.active .alert {
height: auto;
margin: 1em 0 .5em;
padding: 10px;
-webkit-transition: opacity .4s linear .35s;
-moz-transition: opacity .4s linear .35s;
-ms-transition: opacity .4s linear .35s;
-o-transition: opacity .4s linear .35s;
transition: opacity .4s linear .35s;
}
.PricelistItem .alert {
font-weight: 400;
height: 0;
padding: 0;
opacity: 0;
margin: 0;
}
.PricelistItem.success .alert,
.PricelistItem.error .alert {
opacity: 1;
height: auto;
margin: 1em 0 .5em;
padding: 10px;
}
.PricelistItem.active .contact-form {
opacity: 1;
}
.PricelistItem.active,
.PricelistItem.success,
.PricelistItem.error {
color: #424242;
transition: background .3s linear;
}
.PricelistItem.active-form .PricelistItem-title {
border-color: #ffffff;
}
.PricelistItem.active-form [data-toggle=contact-form] {
opacity: 1;
background-color: #757575;
transition: background .3s linear;
}
.PricelistItem.success [data-toggle=contact-form],
.PricelistItem.success .contact-form,
.PricelistItem.error [data-toggle=contact-form],
.PricelistItem.error .contact-form {
display: none;
}
.PricelistItem:hover .toggle-contact-form,
.PricelistItem.active .toggle-contact-form,
.PricelistItem.error .toggle-contact-form,
.PricelistItem.success .toggle-contact-form {
opacity: 1;
transition: none;
}
/* Toggle button */
.PricelistItem .toggle-contact-form:before {
content: 'Assine Já!';
}
.PricelistItem.request .toggle-contact-form:before {
content: 'Consulta!';
}
.PricelistItem.active .toggle-contact-form:before,
.PricelistItem.success .toggle-contact-form:before {
content: 'Voltar';
}
.PricelistItem.error .toggle-contact-form:before {
content: 'Tentar novamente';
}
/* Submit Button */
.PricelistItem .response-send:before {
content: 'Solicitar Contato';
}
.PricelistItem.active.sent .response-send:before {
content: 'Enviando...';
}
/* Submit Alert */
.PricelistItem.error .alert:before {
content: 'Houve algum erro, tente novamente mais tarde!';
}
.PricelistItem.success .alert:before {
content: 'Obrigado! Logo entraremos em contato com você!';
}
.PricelistItem.error .alert {
color: #d50000;
}
.PricelistItem.success .alert {
color: #00bfa5;
}
/* Priceslist Nav */
.PricelistNav {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-justify-content: center;
justify-content: center;
margin: 30px auto 60px;
}
.PricelistNavItem {
border-width: 1px;
cursor: pointer;
font-size: 1em;
margin-left: -1px;
min-width: 10em;
padding: 1em 1.5em;
text-align: center;
}
.PricelistNavItem {
border-radius: 5px;
}
/* temporary use */
.Prices.slide-1 .PricelistNavItem:nth-child(1),
.Prices.slide-2 .PricelistNavItem:nth-child(2),
.Prices.slide-3 .PricelistNavItem:nth-child(3) {
border-style: solid;
}
/*!
* Mowe Pricelist v1.0.0 (http://getvilla.org/)
* Copyright 2013-2015 Noibe Developers
* Licensed under MIT (https://github.com/noibe/villa/blob/master/LICENSE)
*/
.Pricelist {
opacity: 0;
transition: all 1s ease;
}
/* Prices More button */
.PricesMore {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
margin: 1em auto;
width: 100%;
}
.PricesMore-select-area {
border-radius: 4px;
border: solid 1px #ffffff;
cursor: pointer;
line-height: 3;
padding: 0 1.5em;
}
.PricesMore-select-area:active,
.PricesMore-select-area:focus,
.PricesMore-select-area:hover {
-webkit-box-shadow: 0 0 .625em 3px rgba(255,255,255,.6);
-moz-box-shadow: 0 0 .625em 3px rgba(255,255,255,.6);
box-shadow: 0 0 .625em 3px rgba(255,255,255,.6);
background-color: #ffffff;
color: #039be5;
}
@media (min-height: 48em) {
.PricesMore {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
margin: 3.75em auto 2.25em;
width: 100%;
}
}
.PricelistSlide {
/*background-color: green;*/
}
/* Prices */
.Prices {
padding: 1em 0;
}
@media (min-height: 36em) {
.Prices {
padding: 2.25em 0 1em;
}
}
@media (min-height: 48em) {
.Prices {
padding: 4.5em 0 1em;
}
}
@media (min-height: 60em) {
.Prices {
padding: 6em 0 1em;
}
}
/* Ratify */
.Ratify {
text-align: left;
}
.Ratify img {
margin: 0 0 .375em;
}
.Ratify p {
margin: 0;
}
/* Social */
.Social {
-webkit-align-items: flex-end;
align-items: flex-end;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: flex-end;
justify-content: flex-end;
margin: .75em 0 0;
}
.SocialItem {
position: relative;
}
.SocialItem:after {
content: "·";
margin: 0 .5em;
}
.SocialItem:last-of-type:after {
content: "";
margin: 0;
}
/* INITIAL TRANSITION */
html.is-loading body {
overflow-y: hidden;
}
body {
overflow-y: auto;
}
html.is-loading .hero,
html.is-loading .navbar {
opacity: 0;
}
.hero,
.navbar {
opacity: 1;
}
.hero {
-webkit-transition: opacity 1s;
-moz-transition: opacity 1s;
-ms-transition: opacity 1s;
-o-transition: opacity 1s;
transition: opacity 1s;
}
.navbar {
-webkit-transition: opacity 1s .4s;
-moz-transition: opacity 1s .4s;
-ms-transition: opacity 1s .4s;
-o-transition: opacity 1s .4s;
transition: opacity 1s .4s;
}
/* Webmail Screen */
.WebmailScreen {
display: none;
position: fixed;
height: 100%;
left: 0;
padding: 6em 0 0;
top: 0;
width: 100%;
}
.WebmailScreen.is-active {
display: block;
}
.WebmailScreen-inner {
position: absolute;
height: 100%;
width: 100%;
}
/*!
* Mowe Webtal Project v1.0.1 (http://gomowe.org/)
* Copyright 2013-2015 Noibe Developers
* Licensed under MIT (https://github.com/noibe/villa/blob/master/LICENSE)
*/
@-webkit-keyframes lightspeed {
0% {
opacity: .75;
}
25% {
opacity: .875;
}
50% {
opacity: 1;
}
75% {
opacity: .875;
}
100% {
opacity: .75;
}
}
@-moz-keyframes lightspeed {
0% {
opacity: .75;
}
25% {
opacity: .875;
}
50% {
opacity: 1;
}
75% {
opacity: .875;
}
100% {
opacity: .75;
}
}
@-o-keyframes lightspeed {
0% {
opacity: .75;
}
25% {
opacity: .875;
}
50% {
opacity: 1;
}
75% {
opacity: .875;
}
100% {
opacity: .75;
}
}
@keyframes lightspeed {
0% {
opacity: .75;
}
25% {
opacity: .875;
}
50% {
opacity: 1;
}
75% {
opacity: .875;
}
100% {
opacity: .75;
}
}
.container {
padding: 0 1.125em;
}
@media (min-width: 48em) {
.container {
padding: 0 2.25em;
}
}
@media (min-width: 72em) {
.container {
padding: 0;
}
}
.container {
width: 100%;
}
@media (min-width: 72em) {
.container {
max-width: 60em;
}
}
.navbar {
/*-webkit-animation: lightspeed 3s 16 linear;*/
/*-o-animation: lightspeed 3s 16 linear;*/
/*animation: lightspeed 3s 16 linear;*/
background: -webkit-linear-gradient(90deg, #558b2f 10%, #33691e 90%);
/* Chrome 10+, Saf5.1+ */
background: -moz-linear-gradient(90deg, #558b2f 10%, #33691e 90%);
/* FF3.6+ */
background: -ms-linear-gradient(90deg, #558b2f 10%, #33691e 90%);
/* IE10 */
background: -o-linear-gradient(90deg, #558b2f 10%, #33691e 90%);
/* Opera 11.10+ */
background: linear-gradient(90deg, #558b2f 10%, #33691e 90%);
/* W3C */
background: none;
/*box-shadow: 0 1px 1em 2.25em #ffffff;*/
background-color: #ffffff;
min-height: 6em;
padding: .875em 0 .625em;
/*padding: 1.5em 0 0;*/
}
.navbar .item a {
padding: 0 .5em;
margin: 0 .5em;
}
.navbar .item .link {
font-size: 1em;
font-weight: 500;
line-height: 3;
}
.navbar .item .link--button {
border-radius: 4px;
border-style: solid;
border-width: 1px;
border-color: #00b0ff;
padding: 0 1em;
}
.navbar .item .link--button:active,
.navbar .item .link--button:focus,
.navbar .item .link--button:hover {
color: #ffffff;
}
.navbar .item .link--button:active,
.navbar .item .link--button:focus {
background-color: #0091ea;
}
.navbar .item .link--button:hover {
background-color: #00b0ff;
}
.navbar .item .link strong {
font-weight: 600;
}
.navbar .item .brand {
padding: 0;
}
.navbar .item .brand {
-webkit-transition: transform .4s;
-moz-transition: transform .4s;
-ms-transition: transform .4s;
-o-transition: transform .4s;
transition: transform .4s;
}
.navbar .item .brand:hover,
.navbar .item .brand:focus {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.navbar .item .brand img,
.navbar .item .brand svg {
display: block;
height: 3em;
}
.brand .slogan {
font-size: .875em;
font-weight: 700;
letter-spacing: -.5pt;
white-space: nowrap;
margin: 0 0 0 .75em;
}
@media (max-width: 768px) {
.navbar .brand {
color: #558b2f;
}
#bg path {
stroke: #cddc39 !important;
}
}
#bars {
width: 25px;
height: 25px;
padding-top: 5px;
}
#bars line {
fill: none;
stroke: #ffffff;
stroke-width: 160;
stroke-miterlimit: 10;
}
#bg {
height: 40px;
transition: all .1s linear;
}
#bg path {
fill: none;
stroke: #c0ca33;
stroke-width: 60;
stroke-linecap: round;
stroke-miterlimit: 10;
}
.welcome {
display: -webkit-box;
-webkit-align-items: center;
align-items: center;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: column;
flex-flow: column;
}
.welcome h1,
.welcome strong {
font-weight: 300;
}
.welcome p {
letter-spacing: 1pt;
line-height: 1.6;
text-transform: uppercase;
}
.welcome h1 {
font-size: 3em;
line-height: 1.8;
text-align: center;
}
@media (min-width: 48em) {
.welcome h1 {
font-size: 3.75em;
margin: 0 auto;
}
.welcome .horizontal-bar {
border-style: solid;
border-width: 1px;
height: 0;
margin: 0 auto 1.125em;
left: 0;
top: 100%;
width: 14em;
}
.welcome p {
font-size: 1.3125em;
text-transform: uppercase;
letter-spacing: 1pt;
}
}
@media (min-width: 60em) {
.welcome h1 {
font-size: 3em;
}
}
@media (min-width: 72em) {
.welcome h1 {
font-size: 3.75em;
line-height: 1.6;
}
.welcome .horizontal-bar {
border-width: 1px;
margin: 0 auto 1.5em;
width: 18em;
}
.welcome p {
font-size: 1.5em;
}
}
@media (min-width: 96em) {
.welcome h1 {
font-size: 6em;
}
}
.fade-in {
animation: fade-in 1s ease-in-out 0s 1;
-webkit-animation: fade-in 1s ease-in-out 0s 1;
}
/* Text */
.text {
padding: 4.5em 0 3em;
/*float: left;*/
position: relative;
overflow-x: hidden;
text-align: left;
width: 100%;
}
.text-background {
position: absolute;
width: 100%;
height: 100%;
}
.text-background--intro {
-webkit-align-items: center;
align-items: center;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
bottom: 0;
}
.text-background-wrapper {
width: 100%;
}
.text-background--intro .text-background-wrapper {
-webkit-transform: translateX(60%);
-moz-transform: translateX(60%);
-ms-transform: translateX(60%);
-o-transform: translateX(60%);
transform: translateX(60%);
}
.text-background img {
display: block;
}
.text-background--intro img {
max-height: 16em;
margin: 0 0 6em;
}
@media (max-width: 60em) {
.text-background {
display: none;
}
}
.text .container {
position: relative;
}
.text-intro {
max-width: 36em;
}
/*
Footer
*/
body > footer {
width: 100%;
}
body > footer img {
max-height: 6em;
}
body > footer .divisor {
border-right: 1px solid;
}
@media (max-width: 48em) {
body > footer .divisor {
display: none;
}
}
/* Services */
.services h1 {
text-align: left;
font-size: 4.5em;
font-weight: 400;
margin: 1em 0 0.5em;
}
.services p {
font-size: 1.5em;
line-height: 1.45;
margin-bottom: 1.5em;
text-align: justify;
}
.block .about .lead,
.block .container>.lead,
.block>.lead {
font-weight: 300;
}
@media (max-width: 36em) {
.about h1,
.services h1 {
font-size: 3em;
}
.about p,
.services p,
#prices .config {
font-size: 1.125em;
}
}
@media (max-width: 60em) {
.about h1,
.services h1 {
margin: 0 16px .5em;
}
.about p,
.services p,
#prices .config {
margin: 0 16px 1em;
}
}
#about .photo {
display: block;
background-image: url("../dist/img/mac02.jpg");
background-position: center;
min-height: 18em;
}
@media (max-width: 48em) {
.navbar footer .show.menu {
border-color: #558b2f;
}
.navbar footer .menu {
background-color: #558b2f;
color: #FFF;
}
}
.wipe {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
overflow-x: visible;
-webkit-transition: margin .6s;
-moz-transition: margin .6s;
-ms-transition: margin .6s;
-o-transition: margin .6s;
transition: margin .6s;
}
.wipe .frame {
width: 100%;
}
.modal-container {
background-color: rgba(0,0,0,0);
display: none;
}
.modal-container.open {
align-items: center;
background-color: rgba(0,0,0,.4);
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
height: 100%;
justify-content: center;
left: 0;
position: fixed;
top: 0;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-ms-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
width: 100%;
z-index: 100000;
}
.modal-container.open .modal {
background-color: #ffffff;
color: #424242;
padding: 3em;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-ms-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
.modal .citylist {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
margin-top: 3em;
}
.modal h2 {
font-weight: 100;
}
#citylist .container {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
list-style: none;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
}
#citylist button {
border: solid 1px #757575;
cursor: pointer;
line-height: 2;
padding: .5em 1em;
text-transform: capitalize;
}
#citylist button:hover {
background-color: #757575;
color: #ffffff;
}
/*
[1] http://practicaltypography.com/line-spacing.html
[2] http://practicaltypography.com/space-between-paragraphs.html
*/ |
index.html | Neo-Hao/Comprehensive-Intro | <!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Home Page</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</head>
<body>
<!-- Navigation Starts -->
<div class="row">
<nav class="navbar navbar-default navbar-inverse navbar-fixed-top" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="collapse">
<ul class="nav navbar-nav">
<li class="active"><a>Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Software Interface for Teachers <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="http://home.tobeneo.com/Comprehensive-Problem-Statement/">Input for Problem Statement</a></li>
<li role="separator" class="divider"></li>
<li><a href="http://home.tobeneo.com/Comprehensive-Input-Code/">Input for Sub Tasks</a></li>
<li role="separator" class="divider"></li>
<li><a href="http://home.tobeneo.com/Comprehensive-Input-Code/">Input for Code Structure</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Software Interface for Students <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="http://home.tobeneo.com/Comprehensive-Sample1/">Sample Problem 1</a></li>
<li role="separator" class="divider"></li>
<li><a href="http://home.tobeneo.com/Comprehensive-Sample2/">Sample Problem 2</a></li>
<li role="separator" class="divider"></li>
<li><a href="http://home.tobeneo.com/Comprehensive-Sample3/">Sample Problem 3</a></li>
</ul>
</li>
</ul>
</div>
</nav>
</div>
<!-- Navigation Ends -->
<div class="container">
<h2>What we know about learning programming</h2>
<p>Tackling programming problems is like designing a building. Experts tend to use top-down and broad-first strategies, just like qualified architects start the building design with big structures. In contrast, novices tend to use bottom-up and narrow-first strategies, just like crazy architects somehow decide to work on the ventilation system first, regardless of the what the building structure will be. The failure to see the big picture and use top-down strategies makes it difficult to view problems out of the particular contexts, and impossible to single out universal solutions to certain problem patterns.</p>
<h2>What we know about online help seeking</h2>
<p>College students regularly meet problems or challenges that they can not conquer independently in learning and practicing. Effective help seeking can not only help solving problems, but also strengthening just-in-time learning. However, human helpers are not always accessible, and many students do not want to seek help from others due to self-esteem threat issues.</p>
<p>Internet is always accessible with abundant useful information and online experts from all over the world. A student can either search online to find the relevant information, or ask questions to a big professional community. However, not all students take full advantage of online help seeking. As we found in two preliminary survey studies on students taking programming courses at University of Georgia, novice students seek help online to a much lower extent than expert students.</p>
<h2>What I hypothesized about online help seeking</h2>
<p>To seek help online effectively, an individual needs to adapt to the working mechanism of search engines when forming his own queries, or make his or her problem descriptions easy to understand. Search engines are very unlikely to know the contexts of students' problems, while other experts online may not want to spend too much time on reading contextual information that means little to the core of a problem. Therefore, we hypothesized that the capability to decontextualize problems is very important for effective online help seeking, and facilitation on problem decontextualization can improve students' efficiency of online seeking, and thus increase their frequency of online help seeking.</p>
<h2>Prototype of the tool facilitating online help seeking</h2>
<p>This prototype aims at visualizing the top-down thinking process of experts in solving practical problems. Novices students can see how a big program is broken down to approachable pieces, and follow the provided links to queries targeting decontextualized small problems.</p>
<p>Three samples from <a href="http://cs.uga.edu/directory/brad-barnes" targe="_blank"><strong>Dr. Barnes</strong></a> are used to illustrate the idea of the tool. Complete problem description and answers to the three sample problems can be found <a href="https://github.com/Neo-Hao/Comprehensive-Exam" target="_blank"><strong>here</strong></a>.</p>
<h3>Interfaces for students</h3>
<p>The core of the interfaces for students is the presentation of problem breakdown. The interface composes of two sections: <i>problem breakdown</i> and <i>code structure</i>.</p>
<div class="row">
<div class="col-sm-6">
<img src="img/breakdown.jpg" alt="Responsive image" class="img-thumbnail">
</div>
</div>
<br>
<p><strong>Problem breakdown</strong> includes a list of tasks and their subtasks as the solution to the problem. There can be as many levels of subtasks for each task. Every task/subtask can have its own links to a search query and a code snippet</p>
<p><strong>Code structure</strong> corresponds to the tasks/subtasks of different levels. As different level of subtasks are requested to show up or hide, the code structure change accordingly.</p>
<p>This tool can be embedded in a learning managment system, or be used to facilitate instruction in large-scale classes.</p>
<p>The followings are the three sample problems:</p>
<div class="row">
<div class="col-sm-4">
<a href="http://home.tobeneo.com/Comprehensive-Sample1/"><img src="img/student1.jpg" alt="Responsive image" class="img-thumbnail"></a>
</div>
<div class="col-sm-4">
<a href="http://home.tobeneo.com/Comprehensive-Sample2/"><img src="img/student2.jpg" alt="Responsive image" class="img-thumbnail"></a>
</div>
<div class="col-sm-4">
<a href="http://home.tobeneo.com/Comprehensive-Sample3/"><img src="img/student3.jpg" alt="Responsive image" class="img-thumbnail"></a>
</div>
</div>
<h3>Interfaces for teachers</h3>
<p>The interfaces for teachers allow teachers to input all the information that will be presented to students, as are shown in the three samples.</p>
<p>The core interface is <a href="http://home.tobeneo.com/Comprehensive-List-Tasks/"></a>Input for Sub Tasks. This tool allows teachers to input tasks and related links to queries and code snippets, and give structure to tasks. This tool always mainstains accessibility to the database.</p>
<p>The followings are the three interfaces for teachers:</p>
<div class="row">
<div class="col-sm-4">
<a href="http://home.tobeneo.com/Comprehensive-Problem-Statement/"><img src="img/teacher1.jpg" alt="Responsive image" class="img-thumbnail"></a>
</div>
<div class="col-sm-4">
<a href="http://home.tobeneo.com/Comprehensive-Input-Code/"><img src="img/teacher2.jpg" alt="Responsive image" class="img-thumbnail"></a>
</div>
<div class="col-sm-4">
<a href="http://home.tobeneo.com/Comprehensive-Input-Code/"><img src="img/teacher3.jpg" alt="Responsive image" class="img-thumbnail"></a>
</div>
</div>
</div>
<div id="footer">
<hr>
<p>
Created by <a class="samples" href="http://tobeneo.com">Qiang Hao</a>; Powered by <a class="samples" href="http://getbootstrap.com/">© BootStrap</a>
</p>
</div>
<script src="js/bootstrap.min.js"></script>
</body>
</html> |
m6972593/prime-e.html | lcn2/mersenne-english-name | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- - DO NOT EDIT THIS FILE! The Contents is created from source file(s). -->
<!-- Start HTML-Above-1st.html -->
<HTML>
<HEAD>
<!-- Stop HTML-Above-1st.html -->
<!-- Start HTML-Above-2nd.html -->
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<LINK REL="icon" HREF="/favicon/bat.ico" TYPE="image/x-icon">
<LINK REL="shortcut icon" HREF="/favicon/bat.ico" TYPE="image/x-icon">
<!-- Stop HTML-Above-2nd.html -->
<!-- Start Digit-Mersenne-Title.html -->
<TITLE>2^6972593-1 is prime</TITLE>
<META name="description" content="2^6972593-1 is prime">
<META name="keywords" content="English name of a number, name of a number, prime, prime number, large prime number, Mersenne, Mersenne prime, m6972593, M(6972593)">
<!-- Stop Digit-Mersenne-Title.html -->
<!-- Start Head-CSS.html -->
<style type="text/css">
@import url(http://www.google.com/cse/api/branding.css);
</style>
<!-- Stop Head-CSS.html -->
<!-- Start Head-2-Body.html -->
</HEAD>
<BODY BGCOLOR="#98B8D8">
<!-- Stop Head-2-Body.html -->
<!-- Start Digit-Mersenne-Content-Above-Short.html -->
<!-- Start web content -->
<CENTER><H2>2<SUP>6972593</SUP>-1 is prime</H2>
<H3>English name European style</H3>
(<A HREF="http://www.isthe.com/chongo/index.html">chongo's home page</A>)
(<A HREF="http://www.isthe.com/chongo/tech/math/prime/mersenne.html#M6972593">return - more primes</A>)
(<A HREF="#useful">useful links below</A>)
<P>
The decimal value of this prime was computed with
<A HREF="http://www.isthe.com/chongo/tech/comp/calc/index.html">calc</A>
and the English name was computed with
<A HREF="http://www.isthe.com/chongo/tech/math/number/number.html">number</A>.
</CENTER>
<HR>
<P>
<B><FONT SIZE="4">NOTE</FONT>:</B> This is an abbreviated version of this really
<B><FONT SIZE="6">B</FONT><FONT SIZE="5">ig</FONT></B> prime number!
<P>
The complete number may be accessed by clicking on the links found in the
<A HREF="#middle">middle of this page</A>.
<!-- Stop Digit-Mersenne-Content-Above-Short.html -->
<HR><BLOCKQUOTE><PRE>
four trecennovemquadraginmilliaoctingensexvigintilliard,
three hundred seventy trecennovemquadraginmilliaoctingensexvigintillion,
seven hundred fifty seven trecennovemquadraginmilliaoctingenquinvigintilliard,
four hundred forty one trecennovemquadraginmilliaoctingenquinvigintillion,
two hundred seventy trecennovemquadraginmilliaoctingenquattuorvigintilliard,
eight hundred thirteen trecennovemquadraginmilliaoctingenquattuorvigintillion,
seven hundred eighty eight trecennovemquadraginmilliaoctingentrevigintilliard,
three hundred thirty three trecennovemquadraginmilliaoctingentrevigintillion,
two hundred thirty two trecennovemquadraginmilliaoctingendovigintilliard,
nine hundred twelve trecennovemquadraginmilliaoctingendovigintillion,
sixty nine trecennovemquadraginmilliaoctingenunvigintilliard,
four hundred sixty trecennovemquadraginmilliaoctingenunvigintillion,
seven hundred eight trecennovemquadraginmilliaoctingenvigintilliard,
six hundred seventy six trecennovemquadraginmilliaoctingenvigintillion,
two hundred forty seven trecennovemquadraginmilliaoctingennovemdecilliard,
seven hundred five trecennovemquadraginmilliaoctingennovemdecillion,
seven hundred forty eight trecennovemquadraginmilliaoctingenoctodecilliard,
five hundred sixteen trecennovemquadraginmilliaoctingenoctodecillion,
sixty six trecennovemquadraginmilliaoctingenseptendecilliard,
three hundred ten trecennovemquadraginmilliaoctingenseptendecillion,
one hundred eighty one trecennovemquadraginmilliaoctingensexdecilliard,
three hundred eighteen trecennovemquadraginmilliaoctingensexdecillion,
one hundred fifty one trecennovemquadraginmilliaoctingenquindecilliard,
nine hundred twenty three trecennovemquadraginmilliaoctingenquindecillion,
two hundred forty eight trecennovemquadraginmilliaoctingenquattuordecilliard,
two hundred twenty five trecennovemquadraginmilliaoctingenquattuordecillion,
seventy trecennovemquadraginmilliaoctingentredecilliard,
six hundred fifty three trecennovemquadraginmilliaoctingentredecillion,
eight hundred sixty five trecennovemquadraginmilliaoctingendodecilliard,
five hundred fifty five trecennovemquadraginmilliaoctingendodecillion,
eight hundred fifty six trecennovemquadraginmilliaoctingenundecilliard,
six hundred seventy two trecennovemquadraginmilliaoctingenundecillion,
four hundred eighty five trecennovemquadraginmilliaoctingendecilliard,
eight hundred thirty trecennovemquadraginmilliaoctingendecillion,
five hundred ninety trecennovemquadraginmilliaoctingennovemtilliard,
thirty trecennovemquadraginmilliaoctingennovemtillion,
two hundred seventy trecennovemquadraginmilliaoctingenoctotilliard,
eight hundred twenty six trecennovemquadraginmilliaoctingenoctotillion,
nine hundred ninety three trecennovemquadraginmilliaoctingenseptentilliard,
two hundred nine trecennovemquadraginmilliaoctingenseptentillion,
three hundred ninety trecennovemquadraginmilliaoctingensextilliard,
six hundred seventy two trecennovemquadraginmilliaoctingensextillion,
nine hundred nine trecennovemquadraginmilliaoctingenquintilliard,
sixty nine trecennovemquadraginmilliaoctingenquintillion,
seven hundred eighty four trecennovemquadraginmilliaoctingenquattuortilliard,
two hundred fifty six trecennovemquadraginmilliaoctingenquattuortillion,
three hundred ninety four trecennovemquadraginmilliaoctingentretilliard,
six hundred thirty one trecennovemquadraginmilliaoctingentretillion,
four hundred sixteen trecennovemquadraginmilliaoctingendotilliard,
two hundred sixty four trecennovemquadraginmilliaoctingendotillion,
five hundred seventy nine trecennovemquadraginmilliaoctingenuntilliard,
four hundred sixty three trecennovemquadraginmilliaoctingenuntillion,
seven hundred sixty one trecennovemquadraginmilliaoctingentilliard,
five hundred seventy trecennovemquadraginmilliaoctingentillion,
eight hundred forty four trecennovemquadraginmilliaseptingennovemnonagintilliard,
six hundred eighty nine trecennovemquadraginmilliaseptingennovemnonagintillion,
one hundred thirty nine trecennovemquadraginmilliaseptingenoctononagintilliard,
six hundred forty three trecennovemquadraginmilliaseptingenoctononagintillion,
three hundred sixty two trecennovemquadraginmilliaseptingenseptennonagintilliard,
three hundred nineteen trecennovemquadraginmilliaseptingenseptennonagintillion,
seven hundred fifty one trecennovemquadraginmilliaseptingensexnonagintilliard,
three hundred twelve trecennovemquadraginmilliaseptingensexnonagintillion,
three hundred sixty six trecennovemquadraginmilliaseptingenquinnonagintilliard,
seven hundred nine trecennovemquadraginmilliaseptingenquinnonagintillion,
nine hundred forty nine trecennovemquadraginmilliaseptingenquattuornonagintilliard,
one trecennovemquadraginmilliaseptingenquattuornonagintillion,
six hundred fifty six trecennovemquadraginmilliaseptingentrenonagintilliard,
two hundred ninety four trecennovemquadraginmilliaseptingentrenonagintillion,
five hundred seventy three trecennovemquadraginmilliaseptingendononagintilliard,
seven hundred thirty three trecennovemquadraginmilliaseptingendononagintillion,
eighty five trecennovemquadraginmilliaseptingenunnonagintilliard,
nine hundred eighteen trecennovemquadraginmilliaseptingenunnonagintillion,
one hundred eighty three trecennovemquadraginmilliaseptingennonagintilliard,
six hundred twenty trecennovemquadraginmilliaseptingennonagintillion,
eight hundred seventy six trecennovemquadraginmilliaseptingennovemoctogintilliard,
one hundred twenty six trecennovemquadraginmilliaseptingennovemoctogintillion,
five hundred eighty trecennovemquadraginmilliaseptingenoctooctogintilliard,
three hundred thirteen trecennovemquadraginmilliaseptingenoctooctogintillion,
seven hundred sixty six trecennovemquadraginmilliaseptingenseptenoctogintilliard,
two hundred forty two trecennovemquadraginmilliaseptingenseptenoctogintillion,
six hundred thirteen trecennovemquadraginmilliaseptingensexoctogintilliard,
seven hundred eight trecennovemquadraginmilliaseptingensexoctogintillion,
five hundred ninety one trecennovemquadraginmilliaseptingenquinoctogintilliard,
four hundred seventy three trecennovemquadraginmilliaseptingenquinoctogintillion,
eight hundred sixteen trecennovemquadraginmilliaseptingenquattuoroctogintilliard,
two hundred ninety seven trecennovemquadraginmilliaseptingenquattuoroctogintillion,
nine hundred thirty three trecennovemquadraginmilliaseptingentreoctogintilliard,
one hundred ninety nine trecennovemquadraginmilliaseptingentreoctogintillion,
two hundred seventy six trecennovemquadraginmilliaseptingendooctogintilliard,
seven hundred fifty one trecennovemquadraginmilliaseptingendooctogintillion,
seven hundred twenty three trecennovemquadraginmilliaseptingenunoctogintilliard,
six hundred fifty three trecennovemquadraginmilliaseptingenunoctogintillion,
three hundred three trecennovemquadraginmilliaseptingenoctogintilliard,
four hundred ninety three trecennovemquadraginmilliaseptingenoctogintillion,
six hundred ninety nine trecennovemquadraginmilliaseptingennovemseptuagintilliard,
three hundred thirteen trecennovemquadraginmilliaseptingennovemseptuagintillion,
five hundred nine trecennovemquadraginmilliaseptingenoctoseptuagintilliard,
seven hundred one trecennovemquadraginmilliaseptingenoctoseptuagintillion,
six hundred two trecennovemquadraginmilliaseptingenseptenseptuagintilliard,
nine hundred thirty one trecennovemquadraginmilliaseptingenseptenseptuagintillion,
nine hundred sixty three trecennovemquadraginmilliaseptingensexseptuagintilliard,
eight hundred eighty three trecennovemquadraginmilliaseptingensexseptuagintillion,
five hundred fifty six trecennovemquadraginmilliaseptingenquinseptuagintilliard,
four hundred eighty trecennovemquadraginmilliaseptingenquinseptuagintillion,
five hundred one trecennovemquadraginmilliaseptingenquattuorseptuagintilliard,
seven hundred seventy two trecennovemquadraginmilliaseptingenquattuorseptuagintillion,
seven hundred forty three trecennovemquadraginmilliaseptingentreseptuagintilliard,
eight hundred sixty two trecennovemquadraginmilliaseptingentreseptuagintillion,
one hundred three trecennovemquadraginmilliaseptingendoseptuagintilliard,
seven hundred eighty nine trecennovemquadraginmilliaseptingendoseptuagintillion,
seven hundred eighty nine trecennovemquadraginmilliaseptingenunseptuagintilliard,
eight hundred fifty eight trecennovemquadraginmilliaseptingenunseptuagintillion,
five hundred seventy trecennovemquadraginmilliaseptingenseptuagintilliard,
two hundred seventy eight trecennovemquadraginmilliaseptingenseptuagintillion,
eight hundred thirty three trecennovemquadraginmilliaseptingennovemsexagintilliard,
six hundred seventy trecennovemquadraginmilliaseptingennovemsexagintillion,
four hundred nine trecennovemquadraginmilliaseptingenoctosexagintilliard,
seven hundred twenty one trecennovemquadraginmilliaseptingenoctosexagintillion,
five hundred sixty two trecennovemquadraginmilliaseptingenseptensexagintilliard,
three hundred forty one trecennovemquadraginmilliaseptingenseptensexagintillion,
seven hundred eight trecennovemquadraginmilliaseptingensexsexagintilliard,
three hundred six trecennovemquadraginmilliaseptingensexsexagintillion,
seven hundred eighty eight trecennovemquadraginmilliaseptingenquinsexagintilliard,
seven hundred seventy four trecennovemquadraginmilliaseptingenquinsexagintillion,
one hundred fifty six trecennovemquadraginmilliaseptingenquattuorsexagintilliard,
four hundred fifty nine trecennovemquadraginmilliaseptingenquattuorsexagintillion,
eight hundred thirty two trecennovemquadraginmilliaseptingentresexagintilliard,
three hundred fifteen trecennovemquadraginmilliaseptingentresexagintillion,
nine hundred eighty eight trecennovemquadraginmilliaseptingendosexagintilliard,
seven hundred sixteen trecennovemquadraginmilliaseptingendosexagintillion,
eight hundred eight trecennovemquadraginmilliaseptingenunsexagintilliard,
two hundred two trecennovemquadraginmilliaseptingenunsexagintillion,
six hundred forty four trecennovemquadraginmilliaseptingensexagintilliard,
six hundred sixty one trecennovemquadraginmilliaseptingensexagintillion,
eight hundred ninety eight trecennovemquadraginmilliaseptingennovemquinquagintilliard,
seven trecennovemquadraginmilliaseptingennovemquinquagintillion,
six hundred thirty three trecennovemquadraginmilliaseptingenoctoquinquagintilliard,
seven hundred forty six trecennovemquadraginmilliaseptingenoctoquinquagintillion,
nine hundred five trecennovemquadraginmilliaseptingenseptenquinquagintilliard,
seven hundred fifty eight trecennovemquadraginmilliaseptingenseptenquinquagintillion,
five hundred thirty one trecennovemquadraginmilliaseptingensexquinquagintilliard,
five hundred seventeen trecennovemquadraginmilliaseptingensexquinquagintillion,
seven hundred sixty three trecennovemquadraginmilliaseptingenquinquinquagintilliard,
nine hundred twenty five trecennovemquadraginmilliaseptingenquinquinquagintillion,
seven hundred eighty nine trecennovemquadraginmilliaseptingenquattuorquinquagintilliard,
fifty five trecennovemquadraginmilliaseptingenquattuorquinquagintillion,
two hundred sixteen trecennovemquadraginmilliaseptingentrequinquagintilliard,
seven hundred ninety three trecennovemquadraginmilliaseptingentrequinquagintillion,
eight hundred seventy five trecennovemquadraginmilliaseptingendoquinquagintilliard,
seven hundred ninety one trecennovemquadraginmilliaseptingendoquinquagintillion,
four hundred eighty three trecennovemquadraginmilliaseptingenunquinquagintilliard,
six hundred three trecennovemquadraginmilliaseptingenunquinquagintillion,
nine hundred five trecennovemquadraginmilliaseptingenquinquagintilliard,
three hundred forty six trecennovemquadraginmilliaseptingenquinquagintillion,
three hundred twenty eight trecennovemquadraginmilliaseptingennovemquadragintilliard,
six hundred fifty six trecennovemquadraginmilliaseptingennovemquadragintillion,
four hundred forty two trecennovemquadraginmilliaseptingenoctoquadragintilliard,
eight hundred thirty seven trecennovemquadraginmilliaseptingenoctoquadragintillion,
fifty two trecennovemquadraginmilliaseptingenseptenquadragintilliard,
eight hundred thirty four trecennovemquadraginmilliaseptingenseptenquadragintillion,
nine hundred thirty five trecennovemquadraginmilliaseptingensexquadragintilliard,
one hundred ninety trecennovemquadraginmilliaseptingensexquadragintillion,
eight hundred sixty four trecennovemquadraginmilliaseptingenquinquadragintilliard,
seven hundred ninety three trecennovemquadraginmilliaseptingenquinquadragintillion,
seven hundred sixty one trecennovemquadraginmilliaseptingenquattuorquadragintilliard,
two trecennovemquadraginmilliaseptingenquattuorquadragintillion,
two hundred thirty two trecennovemquadraginmilliaseptingentrequadragintilliard,
two hundred nineteen trecennovemquadraginmilliaseptingentrequadragintillion,
seven hundred thirty six trecennovemquadraginmilliaseptingendoquadragintilliard,
nine hundred fifty two trecennovemquadraginmilliaseptingendoquadragintillion,
seven hundred eleven trecennovemquadraginmilliaseptingenunquadragintilliard,
six trecennovemquadraginmilliaseptingenunquadragintillion,
seventy three trecennovemquadraginmilliaseptingenquadragintilliard,
five hundred fifty one trecennovemquadraginmilliaseptingenquadragintillion,
seven hundred twenty nine trecennovemquadraginmilliaseptingennovemtrigintilliard,
eighty three trecennovemquadraginmilliaseptingennovemtrigintillion,
eighty two trecennovemquadraginmilliaseptingenoctotrigintilliard,
seven hundred three trecennovemquadraginmilliaseptingenoctotrigintillion,
eight hundred twenty trecennovemquadraginmilliaseptingenseptentrigintilliard,
three hundred thirty seven trecennovemquadraginmilliaseptingenseptentrigintillion,
three hundred sixty nine trecennovemquadraginmilliaseptingensextrigintilliard,
eighty six trecennovemquadraginmilliaseptingensextrigintillion,
three hundred thirteen trecennovemquadraginmilliaseptingenquintrigintilliard,
five hundred forty nine trecennovemquadraginmilliaseptingenquintrigintillion,
five hundred sixty trecennovemquadraginmilliaseptingenquattuortrigintilliard,
four hundred sixty one trecennovemquadraginmilliaseptingenquattuortrigintillion,
two hundred fifteen trecennovemquadraginmilliaseptingentretrigintilliard,
three hundred twenty eight trecennovemquadraginmilliaseptingentretrigintillion,
one hundred ninety four trecennovemquadraginmilliaseptingendotrigintilliard,
one hundred twenty two trecennovemquadraginmilliaseptingendotrigintillion,
four hundred nineteen trecennovemquadraginmilliaseptingenuntrigintilliard,
one hundred six trecennovemquadraginmilliaseptingenuntrigintillion,
thirty one trecennovemquadraginmilliaseptingentrigintilliard,
three hundred forty eight trecennovemquadraginmilliaseptingentrigintillion,
eight hundred fifty seven trecennovemquadraginmilliaseptingennovemvigintilliard,
seven hundred ninety four trecennovemquadraginmilliaseptingennovemvigintillion,
one hundred eighty trecennovemquadraginmilliaseptingenoctovigintilliard,
three hundred seventy one trecennovemquadraginmilliaseptingenoctovigintillion,
nine hundred twenty five trecennovemquadraginmilliaseptingenseptenvigintilliard,
four hundred fifty eight trecennovemquadraginmilliaseptingenseptenvigintillion,
fourteen trecennovemquadraginmilliaseptingensexvigintilliard,
two hundred thirty two trecennovemquadraginmilliaseptingensexvigintillion,
four hundred sixty eight trecennovemquadraginmilliaseptingenquinvigintilliard,
eight hundred fifty three trecennovemquadraginmilliaseptingenquinvigintillion,
seven hundred thirteen trecennovemquadraginmilliaseptingenquattuorvigintilliard,
five hundred seven trecennovemquadraginmilliaseptingenquattuorvigintillion,
three hundred forty three trecennovemquadraginmilliaseptingentrevigintilliard,
one hundred eighty two trecennovemquadraginmilliaseptingentrevigintillion,
eight hundred fifty three trecennovemquadraginmilliaseptingendovigintilliard,
five hundred twenty six trecennovemquadraginmilliaseptingendovigintillion,
seven hundred sixty four trecennovemquadraginmilliaseptingenunvigintilliard,
sixty three trecennovemquadraginmilliaseptingenunvigintillion,
three hundred ninety five trecennovemquadraginmilliaseptingenvigintilliard,
two hundred ninety three trecennovemquadraginmilliaseptingenvigintillion,
four hundred eighty trecennovemquadraginmilliaseptingennovemdecilliard,
seven hundred eleven trecennovemquadraginmilliaseptingennovemdecillion,
three hundred seventy one trecennovemquadraginmilliaseptingenoctodecilliard,
one hundred fifty two trecennovemquadraginmilliaseptingenoctodecillion,
seven hundred fifty trecennovemquadraginmilliaseptingenseptendecilliard,
four hundred thirteen trecennovemquadraginmilliaseptingenseptendecillion,
three hundred thirty four trecennovemquadraginmilliaseptingensexdecilliard,
four hundred eleven trecennovemquadraginmilliaseptingensexdecillion,
eight hundred fifty nine trecennovemquadraginmilliaseptingenquindecilliard,
eight hundred twenty eight trecennovemquadraginmilliaseptingenquindecillion,
three hundred ninety four trecennovemquadraginmilliaseptingenquattuordecilliard,
nine hundred fifty six trecennovemquadraginmilliaseptingenquattuordecillion,
two hundred three trecennovemquadraginmilliaseptingentredecilliard,
seven hundred sixty four trecennovemquadraginmilliaseptingentredecillion,
eight hundred twelve trecennovemquadraginmilliaseptingendodecilliard,
seven hundred eight trecennovemquadraginmilliaseptingendodecillion,
five hundred thirty trecennovemquadraginmilliaseptingenundecilliard,
nine hundred eighty nine trecennovemquadraginmilliaseptingenundecillion,
four hundred forty four trecennovemquadraginmilliaseptingendecilliard,
two hundred sixty seven trecennovemquadraginmilliaseptingendecillion,
five hundred eighty eight trecennovemquadraginmilliaseptingennovemtilliard,
five hundred seventy three trecennovemquadraginmilliaseptingennovemtillion,
five hundred sixty nine trecennovemquadraginmilliaseptingenoctotilliard,
seven hundred eighty five trecennovemquadraginmilliaseptingenoctotillion,
three hundred sixty seven trecennovemquadraginmilliaseptingenseptentilliard,
eight hundred ninety six trecennovemquadraginmilliaseptingenseptentillion,
six hundred sixty five trecennovemquadraginmilliaseptingensextilliard,
one hundred forty nine trecennovemquadraginmilliaseptingensextillion,
six hundred thirty seven trecennovemquadraginmilliaseptingenquintilliard,
one hundred seven trecennovemquadraginmilliaseptingenquintillion,
eight hundred forty seven trecennovemquadraginmilliaseptingenquattuortilliard,
eight hundred seventy four trecennovemquadraginmilliaseptingenquattuortillion,
five hundred twenty four trecennovemquadraginmilliaseptingentretilliard,
two hundred sixty one trecennovemquadraginmilliaseptingentretillion,
four hundred forty one trecennovemquadraginmilliaseptingendotilliard,
five hundred fifty seven trecennovemquadraginmilliaseptingendotillion,
one hundred forty two trecennovemquadraginmilliaseptingenuntilliard,
two hundred twenty two trecennovemquadraginmilliaseptingenuntillion,
two hundred thirty eight trecennovemquadraginmilliaseptingentilliard,
nine hundred fifty two trecennovemquadraginmilliaseptingentillion,
eight hundred forty one trecennovemquadraginmilliasescennovemnonagintilliard,
four hundred seventy six trecennovemquadraginmilliasescennovemnonagintillion,
two hundred ninety seven trecennovemquadraginmilliasescenoctononagintilliard,
seven hundred sixty four trecennovemquadraginmilliasescenoctononagintillion,
nine hundred sixty trecennovemquadraginmilliasescenseptennonagintilliard,
nine hundred thirty two trecennovemquadraginmilliasescenseptennonagintillion,
eight hundred forty three trecennovemquadraginmilliasescensexnonagintilliard,
eight hundred twenty eight trecennovemquadraginmilliasescensexnonagintillion,
three hundred forty six trecennovemquadraginmilliasescenquinnonagintilliard,
five hundred sixteen trecennovemquadraginmilliasescenquinnonagintillion,
nine hundred seventy one trecennovemquadraginmilliasescenquattuornonagintilliard,
eighteen trecennovemquadraginmilliasescenquattuornonagintillion,
seven hundred fifty four trecennovemquadraginmilliasescentrenonagintilliard,
five hundred seventy eight trecennovemquadraginmilliasescentrenonagintillion,
six hundred five trecennovemquadraginmilliasescendononagintilliard,
two hundred sixty nine trecennovemquadraginmilliasescendononagintillion,
one hundred trecennovemquadraginmilliasescenunnonagintilliard,
nine hundred ten trecennovemquadraginmilliasescenunnonagintillion,
nine hundred twelve trecennovemquadraginmilliasescennonagintilliard,
three hundred seven trecennovemquadraginmilliasescennonagintillion,
three hundred twenty four trecennovemquadraginmilliasescennovemoctogintilliard,
two hundred eighty five trecennovemquadraginmilliasescennovemoctogintillion,
one hundred seventy four trecennovemquadraginmilliasescenoctooctogintilliard,
twenty seven trecennovemquadraginmilliasescenoctooctogintillion,
forty one trecennovemquadraginmilliasescenseptenoctogintilliard,
seven hundred fourteen trecennovemquadraginmilliasescenseptenoctogintillion,
seven hundred sixty seven trecennovemquadraginmilliasescensexoctogintilliard,
eight hundred eighty five trecennovemquadraginmilliasescensexoctogintillion,
six hundred ninety six trecennovemquadraginmilliasescenquinoctogintilliard,
four hundred thirteen trecennovemquadraginmilliasescenquinoctogintillion,
six hundred fifty four trecennovemquadraginmilliasescenquattuoroctogintilliard,
five hundred eleven trecennovemquadraginmilliasescenquattuoroctogintillion,
two hundred thirty four trecennovemquadraginmilliasescentreoctogintilliard,
one hundred ninety nine trecennovemquadraginmilliasescentreoctogintillion,
seventy four trecennovemquadraginmilliasescendooctogintilliard,
eight hundred sixty one trecennovemquadraginmilliasescendooctogintillion,
nine hundred six trecennovemquadraginmilliasescenunoctogintilliard,
three hundred forty four trecennovemquadraginmilliasescenunoctogintillion,
nine hundred eighty one trecennovemquadraginmilliasescenoctogintilliard,
eighty eight trecennovemquadraginmilliasescenoctogintillion,
three hundred eighteen trecennovemquadraginmilliasescennovemseptuagintilliard,
seven hundred forty trecennovemquadraginmilliasescennovemseptuagintillion,
two hundred ninety seven trecennovemquadraginmilliasescenoctoseptuagintilliard,
seven hundred forty trecennovemquadraginmilliasescenoctoseptuagintillion,
four hundred sixteen trecennovemquadraginmilliasescenseptenseptuagintilliard,
one hundred fifty six trecennovemquadraginmilliasescenseptenseptuagintillion,
seven hundred fifty seven trecennovemquadraginmilliasescensexseptuagintilliard,
two hundred eighty two trecennovemquadraginmilliasescensexseptuagintillion,
nine hundred four trecennovemquadraginmilliasescenquinseptuagintilliard,
eight hundred forty nine trecennovemquadraginmilliasescenquinseptuagintillion,
nine trecennovemquadraginmilliasescenquattuorseptuagintilliard,
six hundred four trecennovemquadraginmilliasescenquattuorseptuagintillion,
nine hundred seventy four trecennovemquadraginmilliasescentreseptuagintilliard,
two hundred eighty three trecennovemquadraginmilliasescentreseptuagintillion,
nine hundred twenty four trecennovemquadraginmilliasescendoseptuagintilliard,
two hundred seventeen trecennovemquadraginmilliasescendoseptuagintillion,
one hundred thirty one trecennovemquadraginmilliasescenunseptuagintilliard,
seven hundred forty seven trecennovemquadraginmilliasescenunseptuagintillion,
one hundred eighty five trecennovemquadraginmilliasescenseptuagintilliard,
eight hundred sixty four trecennovemquadraginmilliasescenseptuagintillion,
seven hundred eighty eight trecennovemquadraginmilliasescennovemsexagintilliard,
seven hundred twelve trecennovemquadraginmilliasescennovemsexagintillion,
eight hundred twenty four trecennovemquadraginmilliasescenoctosexagintilliard,
two hundred forty six trecennovemquadraginmilliasescenoctosexagintillion,
five hundred sixteen trecennovemquadraginmilliasescenseptensexagintilliard,
five hundred four trecennovemquadraginmilliasescenseptensexagintillion,
one hundred thirty four trecennovemquadraginmilliasescensexsexagintilliard,
twenty eight trecennovemquadraginmilliasescensexsexagintillion,
six hundred thirteen trecennovemquadraginmilliasescenquinsexagintilliard,
eight hundred sixty seven trecennovemquadraginmilliasescenquinsexagintillion,
six hundred twenty four trecennovemquadraginmilliasescenquattuorsexagintilliard,
two hundred seventy six trecennovemquadraginmilliasescenquattuorsexagintillion,
two hundred thirty six trecennovemquadraginmilliasescentresexagintilliard,
four hundred eighty three trecennovemquadraginmilliasescentresexagintillion,
three hundred eighty eight trecennovemquadraginmilliasescendosexagintilliard,
four hundred ninety trecennovemquadraginmilliasescendosexagintillion,
nine hundred three trecennovemquadraginmilliasescenunsexagintilliard,
six hundred twenty four trecennovemquadraginmilliasescenunsexagintillion,
eight hundred forty three trecennovemquadraginmilliasescensexagintilliard,
fifty three trecennovemquadraginmilliasescensexagintillion,
eight hundred trecennovemquadraginmilliasescennovemquinquagintilliard,
twenty one trecennovemquadraginmilliasescennovemquinquagintillion,
nine hundred eighty nine trecennovemquadraginmilliasescenoctoquinquagintilliard,
nine hundred seventy three trecennovemquadraginmilliasescenoctoquinquagintillion,
five hundred forty trecennovemquadraginmilliasescenseptenquinquagintilliard,
three hundred seventy two trecennovemquadraginmilliasescenseptenquinquagintillion,
three hundred sixty trecennovemquadraginmilliasescensexquinquagintilliard,
five hundred seven trecennovemquadraginmilliasescensexquinquagintillion,
eight hundred fifty nine trecennovemquadraginmilliasescenquinquinquagintilliard,
one hundred eighty four trecennovemquadraginmilliasescenquinquinquagintillion,
five hundred eighty trecennovemquadraginmilliasescenquattuorquinquagintilliard,
nine hundred fourteen trecennovemquadraginmilliasescenquattuorquinquagintillion,
two hundred seventy eight trecennovemquadraginmilliasescentrequinquagintilliard,
seven hundred thirty one trecennovemquadraginmilliasescentrequinquagintillion,
nine hundred fifty three trecennovemquadraginmilliasescendoquinquagintilliard,
nine hundred three trecennovemquadraginmilliasescendoquinquagintillion,
nine hundred twenty three trecennovemquadraginmilliasescenunquinquagintilliard,
fifty seven trecennovemquadraginmilliasescenunquinquagintillion,
one hundred trecennovemquadraginmilliasescenquinquagintilliard,
two hundred ninety six trecennovemquadraginmilliasescenquinquagintillion,
nine hundred twenty one trecennovemquadraginmilliasescennovemquadragintilliard,
six hundred sixty six trecennovemquadraginmilliasescennovemquadragintillion,
ninety one trecennovemquadraginmilliasescenoctoquadragintilliard,
eight hundred ninety five trecennovemquadraginmilliasescenoctoquadragintillion,
seven hundred thirty one trecennovemquadraginmilliasescenseptenquadragintilliard,
three hundred twenty seven trecennovemquadraginmilliasescenseptenquadragintillion,
one hundred thirty seven trecennovemquadraginmilliasescensexquadragintilliard,
fifty six trecennovemquadraginmilliasescensexquadragintillion,
nine hundred sixty eight trecennovemquadraginmilliasescenquinquadragintilliard,
two hundred seventy nine trecennovemquadraginmilliasescenquinquadragintillion,
eight hundred thirty nine trecennovemquadraginmilliasescenquattuorquadragintilliard,
four hundred fifty eight trecennovemquadraginmilliasescenquattuorquadragintillion,
four hundred eighty eight trecennovemquadraginmilliasescentrequadragintilliard,
eight hundred thirteen trecennovemquadraginmilliasescentrequadragintillion,
two hundred eighteen trecennovemquadraginmilliasescendoquadragintilliard,
five trecennovemquadraginmilliasescendoquadragintillion,
nine hundred thirty four trecennovemquadraginmilliasescenunquadragintilliard,
thirty trecennovemquadraginmilliasescenunquadragintillion,
six hundred sixty three trecennovemquadraginmilliasescenquadragintilliard,
two hundred sixty one trecennovemquadraginmilliasescenquadragintillion,
seven hundred sixty six trecennovemquadraginmilliasescennovemtrigintilliard,
one hundred seventy two trecennovemquadraginmilliasescennovemtrigintillion,
six hundred eighty three trecennovemquadraginmilliasescenoctotrigintilliard,
three hundred sixty eight trecennovemquadraginmilliasescenoctotrigintillion,
two hundred twenty trecennovemquadraginmilliasescenseptentrigintilliard,
nine hundred eighty two trecennovemquadraginmilliasescenseptentrigintillion,
seven hundred ninety nine trecennovemquadraginmilliasescensextrigintilliard,
forty three trecennovemquadraginmilliasescensextrigintillion,
ninety three trecennovemquadraginmilliasescenquintrigintilliard,
eight hundred two trecennovemquadraginmilliasescenquintrigintillion,
nine hundred twenty five trecennovemquadraginmilliasescenquattuortrigintilliard,
four hundred sixty three trecennovemquadraginmilliasescenquattuortrigintillion,
eighty three trecennovemquadraginmilliasescentretrigintilliard,
nine hundred trecennovemquadraginmilliasescentretrigintillion,
nine hundred seventy two trecennovemquadraginmilliasescendotrigintilliard,
one hundred eighty nine trecennovemquadraginmilliasescendotrigintillion,
nine hundred ninety two trecennovemquadraginmilliasescenuntrigintilliard,
three hundred one trecennovemquadraginmilliasescenuntrigintillion,
three hundred twenty six trecennovemquadraginmilliasescentrigintilliard,
three hundred thirty six trecennovemquadraginmilliasescentrigintillion,
two hundred seventy four trecennovemquadraginmilliasescennovemvigintilliard,
eight hundred thirty nine trecennovemquadraginmilliasescennovemvigintillion,
one hundred nine trecennovemquadraginmilliasescenoctovigintilliard,
two hundred forty five trecennovemquadraginmilliasescenoctovigintillion,
three trecennovemquadraginmilliasescenseptenvigintilliard,
two hundred forty six trecennovemquadraginmilliasescenseptenvigintillion,
eight hundred fifteen trecennovemquadraginmilliasescensexvigintilliard,
three hundred fifty six trecennovemquadraginmilliasescensexvigintillion,
four hundred fifty nine trecennovemquadraginmilliasescenquinvigintilliard,
forty five trecennovemquadraginmilliasescenquinvigintillion,
three hundred eighty four trecennovemquadraginmilliasescenquattuorvigintilliard,
three hundred thirty five trecennovemquadraginmilliasescenquattuorvigintillion,
three hundred fifty eight trecennovemquadraginmilliasescentrevigintilliard,
seven hundred two trecennovemquadraginmilliasescentrevigintillion,
seven hundred ten trecennovemquadraginmilliasescendovigintilliard,
nine hundred thirty trecennovemquadraginmilliasescendovigintillion,
nine hundred four trecennovemquadraginmilliasescenunvigintilliard,
four hundred seventy five trecennovemquadraginmilliasescenunvigintillion,
three hundred seventy trecennovemquadraginmilliasescenvigintilliard,
five hundred ninety five trecennovemquadraginmilliasescenvigintillion,
four hundred five trecennovemquadraginmilliasescennovemdecilliard,
seven hundred sixty three trecennovemquadraginmilliasescennovemdecillion,
two hundred six trecennovemquadraginmilliasescenoctodecilliard,
five hundred ninety four trecennovemquadraginmilliasescenoctodecillion,
two hundred fifty one trecennovemquadraginmilliasescenseptendecilliard,
four hundred twenty one trecennovemquadraginmilliasescenseptendecillion,
six hundred seven trecennovemquadraginmilliasescensexdecilliard,
eighty two trecennovemquadraginmilliasescensexdecillion,
seven hundred seventy eight trecennovemquadraginmilliasescenquindecilliard,
seven hundred ten trecennovemquadraginmilliasescenquindecillion,
eighty seven trecennovemquadraginmilliasescenquattuordecilliard,
eight hundred forty five trecennovemquadraginmilliasescenquattuordecillion,
fifty four trecennovemquadraginmilliasescentredecilliard,
six hundred fifty eight trecennovemquadraginmilliasescentredecillion,
five hundred one trecennovemquadraginmilliasescendodecilliard,
four hundred fifty two trecennovemquadraginmilliasescendodecillion,
one hundred forty six trecennovemquadraginmilliasescenundecilliard,
ninety three trecennovemquadraginmilliasescenundecillion,
fifty six trecennovemquadraginmilliasescendecilliard,
five hundred seventy three trecennovemquadraginmilliasescendecillion,
two hundred seventy five trecennovemquadraginmilliasescennovemtilliard,
three hundred seven trecennovemquadraginmilliasescennovemtillion,
five hundred eighty six trecennovemquadraginmilliasescenoctotilliard,
two hundred sixty four trecennovemquadraginmilliasescenoctotillion,
four hundred fifty two trecennovemquadraginmilliasescenseptentilliard,
five hundred eighty five trecennovemquadraginmilliasescenseptentillion,
six hundred fifty eight trecennovemquadraginmilliasescensextilliard,
forty six trecennovemquadraginmilliasescensextillion,
six hundred forty three trecennovemquadraginmilliasescenquintilliard,
three hundred four trecennovemquadraginmilliasescenquintillion,
four hundred eighty nine trecennovemquadraginmilliasescenquattuortilliard,
six hundred eleven trecennovemquadraginmilliasescenquattuortillion,
one hundred twenty nine trecennovemquadraginmilliasescentretilliard,
eight hundred thirty nine trecennovemquadraginmilliasescentretillion,
two hundred forty four trecennovemquadraginmilliasescendotilliard,
seven hundred fifty two trecennovemquadraginmilliasescendotillion,
one hundred thirty eight trecennovemquadraginmilliasescenuntilliard,
eight hundred seventy six trecennovemquadraginmilliasescenuntillion,
three hundred fifty four trecennovemquadraginmilliasescentilliard,
seven hundred fifty eight trecennovemquadraginmilliasescentillion,
six hundred thirty four trecennovemquadraginmilliaquingennovemnonagintilliard,
five hundred twenty seven trecennovemquadraginmilliaquingennovemnonagintillion,
one hundred forty five trecennovemquadraginmilliaquingenoctononagintilliard,
five hundred fifty six trecennovemquadraginmilliaquingenoctononagintillion,
five hundred sixty four trecennovemquadraginmilliaquingenseptennonagintilliard,
seven hundred fifty one trecennovemquadraginmilliaquingenseptennonagintillion,
five hundred eleven trecennovemquadraginmilliaquingensexnonagintilliard,
five hundred thirty eight trecennovemquadraginmilliaquingensexnonagintillion,
one hundred forty nine trecennovemquadraginmilliaquingenquinnonagintilliard,
eight hundred twenty three trecennovemquadraginmilliaquingenquinnonagintillion,
seven hundred sixty nine trecennovemquadraginmilliaquingenquattuornonagintilliard,
four hundred sixty trecennovemquadraginmilliaquingenquattuornonagintillion,
seven hundred eighty six trecennovemquadraginmilliaquingentrenonagintilliard,
nine hundred eighty five trecennovemquadraginmilliaquingentrenonagintillion,
five hundred twenty trecennovemquadraginmilliaquingendononagintilliard,
nine hundred twenty five trecennovemquadraginmilliaquingendononagintillion,
six hundred thirty four trecennovemquadraginmilliaquingenunnonagintilliard,
nine hundred sixty one trecennovemquadraginmilliaquingenunnonagintillion,
four hundred ten trecennovemquadraginmilliaquingennonagintilliard,
one hundred fifty seven trecennovemquadraginmilliaquingennonagintillion,
six trecennovemquadraginmilliaquingennovemoctogintilliard,
six hundred fifteen trecennovemquadraginmilliaquingennovemoctogintillion,
eight hundred two trecennovemquadraginmilliaquingenoctooctogintilliard,
nine hundred twenty five trecennovemquadraginmilliaquingenoctooctogintillion,
nine hundred eighty six trecennovemquadraginmilliaquingenseptenoctogintilliard,
seventy nine trecennovemquadraginmilliaquingenseptenoctogintillion,
five hundred sixty two trecennovemquadraginmilliaquingensexoctogintilliard,
four hundred fifteen trecennovemquadraginmilliaquingensexoctogintillion,
two hundred eight trecennovemquadraginmilliaquingenquinoctogintilliard,
one hundred eighty nine trecennovemquadraginmilliaquingenquinoctogintillion,
nine hundred ninety nine trecennovemquadraginmilliaquingenquattuoroctogintilliard,
six hundred eighty three trecennovemquadraginmilliaquingenquattuoroctogintillion,
seven hundred eighty seven trecennovemquadraginmilliaquingentreoctogintilliard,
one hundred forty three trecennovemquadraginmilliaquingentreoctogintillion,
four hundred forty eight trecennovemquadraginmilliaquingendooctogintilliard,
three hundred fifty four trecennovemquadraginmilliaquingendooctogintillion,
six hundred eighteen trecennovemquadraginmilliaquingenunoctogintilliard,
six hundred seventy trecennovemquadraginmilliaquingenunoctogintillion,
nine hundred thirty five trecennovemquadraginmilliaquingenoctogintilliard,
three hundred thirty eight trecennovemquadraginmilliaquingenoctogintillion,
nine hundred thirty seven trecennovemquadraginmilliaquingennovemseptuagintilliard,
nine hundred forty one trecennovemquadraginmilliaquingennovemseptuagintillion,
seventy seven trecennovemquadraginmilliaquingenoctoseptuagintilliard,
four hundred seventy seven trecennovemquadraginmilliaquingenoctoseptuagintillion,
one hundred fourteen trecennovemquadraginmilliaquingenseptenseptuagintilliard,
nine hundred thirty six trecennovemquadraginmilliaquingenseptenseptuagintillion,
</PRE></BLOCKQUOTE>
<CENTER><B><A NAME="middle">...
697923 lines omitted
...</A></B></CENTER>
<P>
<CENTER>For all of the digits in gzip form (
3,83 Megabytes
):<BR>
<A HREF="http://lcn2.github.io/mersenne-english-name/m6972593/huge-prime-e.html.gz">http://lcn2.github.io/mersenne-english-name/m6972593/huge-prime-e.html.gz</A>
</CENTER>
<BLOCKQUOTE><PRE>
two hundred twenty eight ducenquinquagintilliard,
one hundred thirty nine ducenquinquagintillion,
two hundred forty three ducennovemquadragintilliard,
two hundred seventy ducennovemquadragintillion,
sixty two ducenoctoquadragintilliard,
two hundred eighty four ducenoctoquadragintillion,
five hundred sixty eight ducenseptenquadragintilliard,
twenty five ducenseptenquadragintillion,
one hundred eighty eight ducensexquadragintilliard,
four hundred one ducensexquadragintillion,
nine hundred eighty three ducenquinquadragintilliard,
eight hundred sixteen ducenquinquadragintillion,
seventy two ducenquattuorquadragintilliard,
four hundred seventy five ducenquattuorquadragintillion,
nine hundred eighty six ducentrequadragintilliard,
eight hundred eighty eight ducentrequadragintillion,
one hundred thirty one ducendoquadragintilliard,
six hundred fifty six ducendoquadragintillion,
seven hundred twenty four ducenunquadragintilliard,
five hundred eighty one ducenunquadragintillion,
two hundred ninety seven ducenquadragintilliard,
seven hundred ninety six ducenquadragintillion,
four hundred forty seven ducennovemtrigintilliard,
three hundred eighty ducennovemtrigintillion,
ninety three ducenoctotrigintilliard,
four hundred one ducenoctotrigintillion,
three hundred seventy four ducenseptentrigintilliard,
nine hundred twenty seven ducenseptentrigintillion,
two hundred thirty three ducensextrigintilliard,
one hundred five ducensextrigintillion,
two hundred two ducenquintrigintilliard,
seventy ducenquintrigintillion,
nine hundred sixty five ducenquattuortrigintilliard,
fourteen ducenquattuortrigintillion,
seven hundred ninety one ducentretrigintilliard,
two hundred ninety three ducentretrigintillion,
four hundred twenty three ducendotrigintilliard,
five hundred fifty two ducendotrigintillion,
nine hundred eighty two ducenuntrigintilliard,
seventy one ducenuntrigintillion,
four hundred forty six ducentrigintilliard,
five hundred ninety five ducentrigintillion,
one hundred seventy five ducennovemvigintilliard,
six hundred ninety ducennovemvigintillion,
seven hundred thirty nine ducenoctovigintilliard,
five hundred ninety nine ducenoctovigintillion,
five hundred ninety one ducenseptenvigintilliard,
three hundred fifteen ducensexvigintilliard,
one hundred ninety one ducensexvigintillion,
five hundred two ducenquinvigintilliard,
two hundred sixty seven ducenquinvigintillion,
eight hundred thirty three ducenquattuorvigintilliard,
two hundred thirty eight ducenquattuorvigintillion,
one hundred sixty four ducentrevigintilliard,
six hundred ninety seven ducentrevigintillion,
one hundred sixteen ducendovigintilliard,
nine hundred sixty one ducendovigintillion,
six hundred eighty two ducenunvigintilliard,
two hundred forty six ducenunvigintillion,
one hundred forty six ducenvigintilliard,
two hundred eighty two ducenvigintillion,
two hundred twenty five ducennovemdecilliard,
eight hundred eighty one ducennovemdecillion,
nine hundred fifty three ducenoctodecilliard,
seven hundred twenty ducenoctodecillion,
nine hundred twenty two ducenseptendecilliard,
nine hundred eighty ducenseptendecillion,
four hundred eleven ducensexdecilliard,
three hundred sixty two ducensexdecillion,
seven hundred twenty two ducenquindecilliard,
five hundred ninety two ducenquindecillion,
three hundred thirty seven ducenquattuordecilliard,
three hundred twenty one ducenquattuordecillion,
thirty seven ducentredecilliard,
nine hundred fifty six ducentredecillion,
six hundred fifty three ducendodecilliard,
one hundred forty three ducendodecillion,
nine hundred sixty seven ducenundecilliard,
five hundred seven ducenundecillion,
eight hundred eighty seven ducendecilliard,
one hundred three ducendecillion,
seven hundred eight ducennovemtilliard,
six hundred thirty one ducennovemtillion,
eight hundred three ducenoctotilliard,
seventeen ducenoctotillion,
two hundred six ducenseptentilliard,
four hundred fifty nine ducenseptentillion,
ninety three ducensextilliard,
two hundred seventy four ducensextillion,
five hundred seventy three ducenquintilliard,
three hundred seventy seven ducenquintillion,
four hundred ninety four ducenquattuortilliard,
seven hundred ninety one ducenquattuortillion,
one hundred forty nine ducentretilliard,
sixty six ducentretillion,
four hundred fourteen ducendotilliard,
nine hundred twenty seven ducendotillion,
thirteen ducenuntilliard,
six hundred twenty one ducenuntillion,
eight hundred thirty four ducentilliard,
eight hundred sixty two ducentillion,
forty one cennovemnonagintilliard,
three hundred twenty seven cennovemnonagintillion,
three hundred fifty one cenoctononagintilliard,
three hundred twenty nine cenoctononagintillion,
nine hundred forty one censeptennonagintilliard,
seven hundred ninety nine censeptennonagintillion,
four hundred twenty seven censexnonagintilliard,
nine hundred ninety seven censexnonagintillion,
nine hundred cenquinnonagintilliard,
four hundred fifty eight cenquinnonagintillion,
five hundred seventy five cenquattuornonagintilliard,
five hundred seventy five cenquattuornonagintillion,
three hundred fifty three centrenonagintilliard,
seven hundred seventy four centrenonagintillion,
one hundred sixty two cendononagintilliard,
one hundred sixty four cendononagintillion,
eight hundred ninety two cenunnonagintilliard,
four hundred twenty eight cenunnonagintillion,
one hundred sixty one cennonagintilliard,
one hundred twenty eight cennonagintillion,
four hundred twenty seven cennovemoctogintilliard,
nine hundred cennovemoctogintillion,
five hundred eighty nine cenoctooctogintilliard,
eight hundred eleven cenoctooctogintillion,
one hundred ninety four censeptenoctogintilliard,
five hundred seven censeptenoctogintillion,
three hundred thirteen censexoctogintilliard,
three hundred ninety seven censexoctogintillion,
four hundred sixty six cenquinoctogintilliard,
sixty three cenquinoctogintillion,
nine hundred seventy one cenquattuoroctogintilliard,
four hundred ninety three cenquattuoroctogintillion,
two hundred forty two centreoctogintilliard,
six hundred sixty two centreoctogintillion,
five hundred twenty seven cendooctogintilliard,
one hundred thirty eight cendooctogintillion,
eight hundred sixty two cenunoctogintilliard,
three hundred fifty nine cenunoctogintillion,
seven hundred sixty three cenoctogintilliard,
two hundred ten cenoctogintillion,
eight hundred forty nine cennovemseptuagintilliard,
two hundred eighty five cennovemseptuagintillion,
two hundred twenty six cenoctoseptuagintilliard,
four hundred eighty eight cenoctoseptuagintillion,
seven hundred fifty censeptenseptuagintilliard,
three hundred eighty censeptenseptuagintillion,
one hundred thirty three censexseptuagintilliard,
three hundred seventy four censexseptuagintillion,
four hundred ninety nine cenquinseptuagintilliard,
seven hundred eighty four cenquinseptuagintillion,
five hundred forty nine cenquattuorseptuagintilliard,
three hundred thirty four cenquattuorseptuagintillion,
seven hundred fifty one centreseptuagintilliard,
five hundred three centreseptuagintillion,
twenty one cendoseptuagintilliard,
eight hundred sixty three cendoseptuagintillion,
five hundred fifty five cenunseptuagintilliard,
three hundred twenty two cenunseptuagintillion,
nine hundred ninety five censeptuagintilliard,
one hundred fifteen censeptuagintillion,
two hundred ninety six cennovemsexagintilliard,
seven hundred thirty cennovemsexagintillion,
nineteen cenoctosexagintilliard,
two hundred thirty four cenoctosexagintillion,
four hundred thirty five censeptensexagintilliard,
one hundred ninety four censeptensexagintillion,
five hundred eighty eight censexsexagintilliard,
sixty five censexsexagintillion,
five hundred sixteen cenquinsexagintilliard,
nine hundred seventy three cenquinsexagintillion,
three hundred forty one cenquattuorsexagintilliard,
two hundred six cenquattuorsexagintillion,
three hundred one centresexagintilliard,
eight hundred sixty seven centresexagintillion,
twenty five cendosexagintilliard,
eight hundred fifty six cendosexagintillion,
three cenunsexagintilliard,
eight hundred eighty four cenunsexagintillion,
seven hundred forty three censexagintilliard,
three censexagintillion,
six hundred ninety nine cennovemquinquagintilliard,
nine hundred thirty one cennovemquinquagintillion,
eight hundred eighty eight cenoctoquinquagintilliard,
three hundred eighty two cenoctoquinquagintillion,
six hundred thirty eight censeptenquinquagintilliard,
eight hundred forty two censeptenquinquagintillion,
two hundred forty nine censexquinquagintilliard,
fifty seven censexquinquagintillion,
eight hundred seven cenquinquinquagintilliard,
six hundred thirty six cenquinquinquagintillion,
three hundred cenquattuorquinquagintilliard,
thirty three cenquattuorquinquagintillion,
three hundred sixty seven centrequinquagintilliard,
two hundred thirty nine centrequinquagintillion,
nine hundred eighty six cendoquinquagintilliard,
one hundred seven cendoquinquagintillion,
two hundred eleven cenunquinquagintilliard,
eight hundred twenty nine cenunquinquagintillion,
three hundred sixty seven cenquinquagintilliard,
six hundred eighty six cenquinquagintillion,
twenty six cennovemquadragintilliard,
three hundred sixty eight cennovemquadragintillion,
ninety two cenoctoquadragintilliard,
two hundred forty one cenoctoquadragintillion,
four hundred eighty three censeptenquadragintilliard,
eight hundred four censeptenquadragintillion,
one hundred twenty censexquadragintilliard,
four hundred eighty one censexquadragintillion,
two hundred forty six cenquinquadragintilliard,
three hundred twenty cenquinquadragintillion,
three hundred sixty two cenquattuorquadragintilliard,
six hundred fifty two cenquattuorquadragintillion,
two hundred twenty three centrequadragintilliard,
four hundred sixty seven centrequadragintillion,
two hundred ninety one cendoquadragintilliard,
four hundred thirty five cendoquadragintillion,
one hundred twelve cenunquadragintilliard,
one hundred ninety four cenunquadragintillion,
two hundred seventy cenquadragintilliard,
four hundred eighty two cenquadragintillion,
two hundred nineteen cennovemtrigintilliard,
three hundred fifty nine cennovemtrigintillion,
four hundred ninety two cenoctotrigintilliard,
four hundred seventy cenoctotrigintillion,
seven hundred forty two censeptentrigintilliard,
seven hundred ninety nine censeptentrigintillion,
five hundred thirty three censextrigintilliard,
four hundred seventy nine censextrigintillion,
one hundred eighty one cenquintrigintilliard,
nine hundred thirty three cenquintrigintillion,
eight hundred forty cenquattuortrigintilliard,
five hundred twenty cenquattuortrigintillion,
six hundred sixty two centretrigintilliard,
two hundred eighteen centretrigintillion,
five hundred sixty nine cendotrigintilliard,
five hundred seventy seven cendotrigintillion,
six hundred thirty four cenuntrigintilliard,
six hundred thirty six cenuntrigintillion,
two hundred ninety one centrigintilliard,
sixty six centrigintillion,
eight hundred seventy five cennovemvigintilliard,
one hundred fifty nine cennovemvigintillion,
three hundred thirty three cenoctovigintilliard,
eight hundred ninety five cenoctovigintillion,
five hundred sixteen censeptenvigintilliard,
six hundred ninety one censeptenvigintillion,
eight hundred thirty eight censexvigintilliard,
eight hundred four censexvigintillion,
four hundred ninety one cenquinvigintilliard,
nine hundred thirty four cenquinvigintillion,
one hundred seventy six cenquattuorvigintilliard,
one hundred eighty eight cenquattuorvigintillion,
three hundred forty seven centrevigintilliard,
eight hundred ninety five centrevigintillion,
two hundred fifty one cendovigintilliard,
four hundred twenty six cendovigintillion,
four hundred sixty two cenunvigintilliard,
two hundred twenty cenunvigintillion,
four hundred sixty seven cenvigintilliard,
seven hundred four cenvigintillion,
five hundred thirty seven cennovemdecilliard,
one hundred eighteen cennovemdecillion,
one hundred forty eight cenoctodecilliard,
four hundred seventy three cenoctodecillion,
four hundred sixty three censeptendecilliard,
three censeptendecillion,
seven hundred sixteen censexdecilliard,
twenty two censexdecillion,
one hundred thirteen cenquindecilliard,
seven hundred eighty three cenquindecillion,
eight hundred forty nine cenquattuordecilliard,
three hundred sixty two cenquattuordecillion,
six hundred three centredecilliard,
two hundred sixty four centredecillion,
five hundred fourteen cendodecilliard,
two hundred eighty three cendodecillion,
two hundred thirty seven cenundecilliard,
five hundred forty three cenundecillion,
two hundred thirty four cendecilliard,
six hundred thirty three cendecillion,
four hundred forty seven cennovemtilliard,
ninety three cennovemtillion,
two hundred eight cenoctotilliard,
nine hundred twenty five cenoctotillion,
seven hundred ninety three censeptentilliard,
fifty four censeptentillion,
nine hundred forty three censextilliard,
seven hundred fifteen censextillion,
one hundred thirteen cenquintilliard,
seven hundred twenty two cenquintillion,
eighty three cenquattuortilliard,
one hundred ninety cenquattuortillion,
six hundred sixty two centretilliard,
three hundred thirteen centretillion,
seven hundred twelve cendotilliard,
four hundred eighty nine cendotillion,
five hundred ninety five cenuntilliard,
three hundred thirty one cenuntillion,
nine hundred ninety centilliard,
four hundred eighty two centillion,
six hundred seventy five novemnonagintilliard,
nine hundred ninety novemnonagintillion,
eight hundred ninety nine octononagintilliard,
six hundred fifty octononagintillion,
two hundred forty five septennonagintilliard,
two hundred thirteen septennonagintillion,
six hundred eighty sexnonagintilliard,
five hundred seventeen sexnonagintillion,
four hundred eighty seven quinnonagintilliard,
six hundred ninety seven quinnonagintillion,
thirty nine quattuornonagintilliard,
nine hundred seventy eight quattuornonagintillion,
nine hundred seventy six trenonagintilliard,
four hundred fifty four trenonagintillion,
six hundred forty two dononagintilliard,
one hundred ten dononagintillion,
four hundred eighty five unnonagintilliard,
nine hundred fifty nine unnonagintillion,
two hundred twenty four nonagintilliard,
four hundred forty four nonagintillion,
one hundred eighty novemoctogintilliard,
eight hundred forty nine novemoctogintillion,
two hundred sixty two octooctogintilliard,
four hundred sixteen octooctogintillion,
one hundred eighty one septenoctogintilliard,
seventy five septenoctogintillion,
one hundred sexoctogintilliard,
one hundred eleven sexoctogintillion,
nine hundred nineteen quinoctogintilliard,
five hundred ninety eight quinoctogintillion,
four hundred forty one quattuoroctogintilliard,
three hundred eighty three quattuoroctogintillion,
four hundred eight treoctogintilliard,
two hundred twenty treoctogintillion,
three hundred thirty three dooctogintilliard,
five hundred fifty five dooctogintillion,
four hundred twenty five unoctogintilliard,
five hundred thirty eight unoctogintillion,
five hundred six octogintilliard,
one hundred seven novemseptuagintilliard,
nine hundred nine novemseptuagintillion,
five hundred two octoseptuagintilliard,
one hundred twenty one octoseptuagintillion,
one hundred forty five septenseptuagintilliard,
six hundred twenty one septenseptuagintillion,
five hundred nine sexseptuagintilliard,
six hundred eighty three sexseptuagintillion,
fifty six quinseptuagintilliard,
ninety seven quinseptuagintillion,
forty two quattuorseptuagintilliard,
ninety nine quattuorseptuagintillion,
nine hundred twenty nine treseptuagintilliard,
eight hundred nine treseptuagintillion,
eight hundred sixty four doseptuagintilliard,
three hundred eighty four doseptuagintillion,
three hundred sixty three unseptuagintilliard,
two hundred seven unseptuagintillion,
two hundred seventy one septuagintilliard,
six hundred twenty septuagintillion,
thirty six novemsexagintilliard,
six hundred forty three novemsexagintillion,
three hundred fifty eight octosexagintilliard,
eight hundred eight octosexagintillion,
three hundred sixteen septensexagintilliard,
seven hundred fifty eight septensexagintillion,
seventy nine sexsexagintilliard,
eight hundred five sexsexagintillion,
three hundred ninety three quinsexagintilliard,
two hundred ninety six quinsexagintillion,
five hundred eighty six quattuorsexagintilliard,
six hundred fourteen quattuorsexagintillion,
eight hundred sixteen tresexagintilliard,
six hundred fifty two tresexagintillion,
eight hundred eighty five dosexagintilliard,
six hundred sixty nine dosexagintillion,
five hundred thirty eight unsexagintilliard,
seven hundred sixty six unsexagintillion,
one hundred forty five sexagintilliard,
four hundred seventy sexagintillion,
seven hundred fifty four novemquinquagintilliard,
five hundred sixty two novemquinquagintillion,
four hundred thirty six octoquinquagintilliard,
three hundred forty eight octoquinquagintillion,
one hundred ninety three septenquinquagintilliard,
two hundred thirty three septenquinquagintillion,
seven hundred forty one sexquinquagintilliard,
four hundred six sexquinquagintillion,
seven hundred sixty nine quinquinquagintilliard,
four hundred thirty two quinquinquagintillion,
seven hundred seventy six quattuorquinquagintilliard,
seventy five quattuorquinquagintillion,
seven hundred forty three trequinquagintilliard,
one hundred thirty trequinquagintillion,
five hundred eight doquinquagintilliard,
one hundred twenty seven doquinquagintillion,
eight hundred two unquinquagintilliard,
nine hundred fourteen unquinquagintillion,
four hundred seventy three quinquagintilliard,
five hundred seventy eight quinquagintillion,
seven hundred eighty seven novemquadragintilliard,
fifty nine novemquadragintillion,
two hundred sixty six octoquadragintilliard,
two hundred forty eight octoquadragintillion,
three hundred thirty two septenquadragintilliard,
two hundred eighty three septenquadragintillion,
two hundred seventy nine sexquadragintilliard,
six hundred five sexquadragintillion,
seven hundred twenty eight quinquadragintilliard,
five hundred seventy quinquadragintillion,
two hundred eighty quattuorquadragintilliard,
eight hundred ninety three quattuorquadragintillion,
two hundred twenty nine trequadragintilliard,
one hundred forty seven trequadragintillion,
two hundred seventy six doquadragintilliard,
nine hundred thirty six doquadragintillion,
two hundred twenty four unquadragintilliard,
nineteen unquadragintillion,
ninety three quadragintilliard,
one hundred eighty eight quadragintillion,
seven hundred thirty five novemtrigintilliard,
seventy seven novemtrigintillion,
seven hundred eighty four octotrigintilliard,
four hundred fifty five octotrigintillion,
eight hundred seventy eight septentrigintilliard,
forty seven septentrigintillion,
nine hundred seventy sextrigintilliard,
seven hundred eighty eight sextrigintillion,
six hundred thirty one quintrigintilliard,
sixty seven quintrigintillion,
two hundred two quattuortrigintilliard,
six hundred thirty two quattuortrigintillion,
three hundred eighty one tretrigintilliard,
eight hundred thirty four tretrigintillion,
four hundred forty three dotrigintilliard,
six hundred thirty three dotrigintillion,
one hundred twenty untrigintilliard,
nine hundred sixty four untrigintillion,
one hundred thirty four trigintilliard,
one hundred twenty eight trigintillion,
seven hundred ninety novemvigintilliard,
one hundred sixty two novemvigintillion,
two hundred five octovigintilliard,
six hundred three octovigintillion,
one hundred sixty three septenvigintilliard,
five hundred seventy nine septenvigintillion,
seven hundred seven sexvigintilliard,
four hundred ninety sexvigintillion,
nine hundred sixty three quinvigintilliard,
forty quinvigintillion,
seven hundred eighty three quattuorvigintilliard,
six hundred thirty three quattuorvigintillion,
eight hundred sixty two trevigintilliard,
five hundred sixty four trevigintillion,
four hundred thirty two dovigintilliard,
one hundred forty two dovigintillion,
eight hundred sixty six unvigintilliard,
nine hundred twenty three unvigintillion,
seven hundred sixty seven vigintilliard,
four hundred twenty two vigintillion,
seven hundred thirty six novemdecilliard,
seven hundred fifty three novemdecillion,
eight hundred ninety octodecilliard,
eight hundred six octodecillion,
three hundred ten septendecilliard,
forty septendecillion,
eight hundred fifty sexdecilliard,
eight hundred fifty four sexdecillion,
three hundred twenty three quindecilliard,
five hundred seventy quindecillion,
four hundred ninety one quattuordecilliard,
three hundred thirty one quattuordecillion,
seven hundred forty seven tredecilliard,
six hundred eighty seven tredecillion,
seven hundred eighteen dodecilliard,
two hundred seventy six dodecillion,
three hundred fifty nine undecilliard,
eight hundred fifty three undecillion,
five hundred sixty two decilliard,
five hundred fifty three decillion,
four hundred eighteen nonilliard,
one hundred fifty five nonillion,
nine hundred twenty four octilliard,
five hundred ninety three octillion,
one hundred twenty septilliard,
eight hundred twenty seven septillion,
six hundred twenty four sextilliard,
five hundred five sextillion,
seventeen quintilliard,
four hundred ninety eight quintillion,
eight hundred forty quadrilliard,
thirty four quadrillion,
six hundred fifteen trilliard,
one hundred thirty five trillion,
three hundred sixty six billiard,
five hundred twenty six billion,
one hundred forty two milliard,
nine hundred twenty four million,
one hundred ninety three thousand,
seven hundred ninety one
</PRE></BLOCKQUOTE>
<HR>
<!-- Start Digit-Mersenne-Content-Below.html -->
<H3><A NAME="useful">Some useful links</A></H3>
<H4>Large prime numbers</H4>
<UL>
<LI> The
<A HREF="http://www.isthe.com/chongo/tech/math/prime/mersenne.html#largest">Largest
known prime</A>
<LI>
Known Mersenne Prime
<A HREF="http://www.isthe.com/chongo/tech/math/prime/mersenne.html">Digits and their English names</A>
<LI>
Lists of
<A HREF="http://primes.utm.edu/largest.html">large
prime numbers</A>
</UL>
<P>
<H4>Definitions and theory</H4>
<UL>
<LI>
General
<A HREF="http://primes.utm.edu/mersenne/">Mersenne prime</A>
information
<LI> Definition of a
<A HREF="http://primes.utm.edu/glossary/page.php?sort=Prime">Prime</A>
<LI> Definition of a
<A HREF="http://primes.utm.edu/glossary/page.php?sort=MersenneNumber">Mersenne
number</A>
<LI> Definition of a
<A HREF="http://primes.utm.edu/glossary/page.php?sort=Mersennes">Mersenne
prime</A>
<LI>
<A HREF="http://primes.utm.edu/glossary/page.php?sort=MersennesConjecture">Mersenne's
conjecture</A>
<LI>
Methods to
<A HREF="http://primes.utm.edu/prove/">find primes or to
prove a large numbers primality</A>
<BR><BR>
<LI> <A HREF="http://www.isthe.com/chongo/tech/math/prime/prime-tutorial/index.html">How
to find a new largest known prime</A> - A
<A HREF="http://www.eurobsdcon.org">EuroBSDcon</A> 2013 tutorial
</UL>
<H4>Searching for Mersenne primes</H4>
<UL>
<LI> Mersenne prime
<A HREF="http://primes.utm.edu/mersenne/index.html#known">discovery history</A>
<LI>
<A HREF="http://www.mersenne.org/">Great Internet Mersenne Prime Search</A>
<LI>
GIMPS
<A HREF="http://www.mersenne.org/status.htm">search status</A>
</UL>
<P>
<H4>EFF Cooperative Computing Awards</H4>
<UL>
<LI> <A HREF="https://www.eff.org/awards/coop">Cooperative Computing Awards</A> home page
<LI> <A HREF="https://www.eff.org/awards/coop/rules">Rules</A> of the Cooperative Computing Awards
<LI> <A HREF="https://www.eff.org/awards/coop/rules#4F">Rule 4F</A>, a very <B>importart part</B> of the rules
<LI> <A HREF="https://www.eff.org/awards/coop/news">Recent News</A> from the Cooperative Computing Awards
<LI> <A HREF="https://www.eff.org/awards/coop/faq">Frequently Asked Questions</A> (FAQ) of the Cooperative Computing Awards
</UL>
<P>
<H4>Source code</H4>
<UL>
<LI>
<A HREF="http://www.isthe.com/chongo/tech/comp/calc/index.html">Calc</A>:
Computed the decimal value of this prime
<LI>
<A HREF="http://www.isthe.com/chongo/tech/math/number/number.html">Number</A>:
Computed the English name of this prime
<LI>
<A HREF="http://www.mersenne.org/freesoft.htm">GIMPS code</A>:
May be used to prove that this number was prime
</UL>
<P>
<H4>Other prime links</H4>
<UL>
<LI>
Dr. Caldwell's
<A HREF="http://primes.utm.edu/index.html">The Prime Pages</A>
<LI>
<A
HREF="http://primes.utm.edu/notes/13466917/index.html">Caldwell's
article on the discovery of</A> 2<SUP>13466917</SUP>-1
<LI>
Landon Curt
<A HREF="http://www.isthe.com/chongo/tech/math/prime/index.html">Noll's prime number</A> work
<LI>
The <A HREF="http://www.isthe.com/chongo/tech/math/prime/amdahl6.html">Amdahl 6</A> group
<LI>
<A HREF="http://primes.utm.edu/curios/home.php">Prime Curios!</A> (a fun site!)
<LI>
Landon Curt Noll's table of
<A HREF="http://www.isthe.com/chongo/tech/math/prime/curios.html">curious numbers related to primes</A>
<LI> English names of large numbers -
<A HREF="http://www.isthe.com/chongo/tech/math/number/howhigh.html">How high
can you count?</A>
</UL>
<!-- Stop Digit-Mersenne-Content-Below.html -->
<!-- Stop web content -->
<!-- Start MainTable-Bottom.html -->
<BR>
<!-- Stop MainTable-Bottom.html -->
<HR>
<!-- Start google/728x15Link-Digit.html -->
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4724738361590294";
/* 728x15Link Digit v1 */
google_ad_slot = "4493870966";
google_ad_width = 728;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- Stop google/728x15Link-Digit.html -->
<!-- Start AdTrailer-Above.html -->
<BR>
<TABLE BORDER="1">
<TR>
<!-- Stop AdTrailer-Above.html -->
<!-- Start Ad-BL-Above.html -->
<TD>
<!-- Stop Ad-BL-Above.html -->
<!-- Start google/336x280-Digit.html -->
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4724738361590294";
/* 336x280 Digit v1 */
google_ad_slot = "7409239049";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- Stop google/336x280-Digit.html -->
<!-- Start Ad-BL-Below.html -->
</TD>
<!-- Stop Ad-BL-Below.html -->
<!-- Start Ad-BC-Above.html -->
<TD>
<!-- Stop Ad-BC-Above.html -->
<!-- Start google/336x280-Digit.html -->
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4724738361590294";
/* 336x280 Digit v1 */
google_ad_slot = "7409239049";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- Stop google/336x280-Digit.html -->
<!-- Start Ad-BC-Below.html -->
</TD>
<!-- Stop Ad-BC-Below.html -->
<!-- Start AdTrailer-Below.html -->
</TR>
</TABLE>
<!-- Stop AdTrailer-Below.html -->
<!-- Start Footer-Above.html -->
<TABLE CELLPADDING="5">
<TR>
<!-- Stop Footer-Above.html -->
<!-- Start Digit-WWW-validator.html -->
<TD>
<!-- Start Digit-HTML-4.01-Transitional.html -->
<p>
<a href="http://validator.w3.org/check/referer"><img border="0"
src="/png/valid-html401.png"
alt="Valid HTML 4.01!" height="31" width="88"></a>
</p>
<!-- Stop Digit-HTML-4.01-Transitional.html -->
</TD>
<!-- Stop Digit-WWW-validator.html -->
<!-- Start Digit-Footer-Author-Above.html -->
<TD>
<A HREF="http://www.isthe.com/copyright.html">© 1994-2013</A>
<I>Landon Curt Noll</I><BR>
<A HREF="http://www.isthe.com/chongo/index.html">chongo</A> (was here)
<A HREF="http://www.isthe.com/chongo/odd/bat.html"><B>/\oo/\</B></A><BR>
<!-- Stop Digit-Footer-Author-Above.html -->
<!-- Start Footer-Author-Below.html -->
</TD>
<!-- Stop Footer-Author-Below.html -->
<!-- Start Footer-Below.html -->
</TR>
</TABLE>
<!-- Stop Footer-Below.html -->
<!-- Start HTML-Below.html -->
</BODY>
</HTML>
<!-- Stop HTML-Below.html -->
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.11.2/lemma-overloading/8.8.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>lemma-overloading: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.2 / lemma-overloading - 8.8.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
lemma-overloading
<small>
8.8.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-14 05:33:53 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-14 05:33:53 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.2 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/coq-community/lemma-overloading"
dev-repo: "git+https://github.com/coq-community/lemma-overloading.git"
bug-reports: "https://github.com/coq-community/lemma-overloading/issues"
license: "GPL 3"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/LemmaOverloading"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
"coq-mathcomp-ssreflect" {>= "1.6.2" & < "1.8~"}
]
tags: [
"keyword:canonical structures"
"keyword:proof automation"
"keyword:Hoare type theory"
"keyword:lemma overloading"
"category:Computer Science/Data Types and Data Structures"
"date:2018-07-24"
"logpath:LemmaOverloading"
]
authors: [
"Georges Gonthier"
"Beta Ziliani"
"Aleksandar Nanevski"
"Derek Dreyer"
]
synopsis:
"Hoare Type Theory libraries showcasing design patterns for programming with canonical structures"
flags: light-uninstall
url {
src:
"https://github.com/coq-community/lemma-overloading/archive/v8.8.0.tar.gz"
checksum: "md5=a7056f6477fc274d2c0ef30dab492bde"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-lemma-overloading.8.8.0 coq.8.11.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.2).
The following dependencies couldn't be met:
- coq-lemma-overloading -> coq < 8.9~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-lemma-overloading.8.8.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
site/water.html | gto76/photos |
<!DOCTYPE html>
<html>
<head>
<style>
* {
padding: 0;
margin: 0;
}
.fit {
max-width: 100%;
max-height: 100%;
}
.centered {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
img {
padding: 0;
margin: 0;
max-width: 100%;
max-height: 100%;
}
</style>
</head>
<body>
<img class="centered fit" src="images/water.png" usemap="#mymap">
<map name="mymap">
<area shape="rect" coords="0,0,800,1200" href="http://gto76.github.io/photos/site/group3.html">
<area shape="rect" coords="800,0,1600,1200" href="http://gto76.github.io/photos/site/anish3.html">
</map>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="lib/jquery.rwdImageMaps.min.js"></script>
<script type="text/javascript" language="JavaScript">
function set_body_height() { // set body height = window height
$('body').height($(window).height());
}
$(document).ready(function(e) {
$(window).bind('resize', set_body_height);
set_body_height();
$('img[usemap]').rwdImageMaps();
});
function leftArrowPressed() {
window.location.href = "http://gto76.github.io/photos/site/group3.html";
}
function rightArrowPressed() {
window.location.href = "http://gto76.github.io/photos/site/anish3.html";
}
function escapeOrUpArrowPressed() {
window.location.href = "http://gto76.github.io/photos";
}
document.onkeydown = function(evt) {
evt = evt || window.event;
switch (evt.keyCode) {
case 37:
leftArrowPressed();
break;
case 39:
rightArrowPressed();
break;
case 27: // esc
escapeOrUpArrowPressed();
break;
case 38: // upArrow
escapeOrUpArrowPressed();
break;
}
};
</script>
</body>
</html>
|
templates/test-blobby.html | LivelyKernel/lively4-core | <template id="test-blobby" >
<style data-src="/src/external/font-awesome/css/font-awesome.css"></style>
<style data-src="/templates/livelystyle.css"></style>
<style>
/*
* gracefully stolen from Lucas Bebber: https://css-tricks.com/gooey-effect/
*/
:host {
background: #009688;
color: white;
text-align: center;
}
a {
color: inherit;
}
h1, h2, h3, h4 {
margin: 0;
margin-bottom: 10px;
margin-top: 10px;
}
h1 {
font-size: 3em;
}
.menu {
-webkit-filter: url("#shadowed-goo");
filter: url("#shadowed-goo");
}
.menu-item, .menu-open-button {
background: #ffc107;
border-radius: 100%;
width: 80px;
height: 80px;
margin-left: -40px;
position: absolute;
top: 20px;
color: white;
text-align: center;
line-height: 80px;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: -webkit-transform ease-out 200ms;
transition: -webkit-transform ease-out 200ms;
transition: transform ease-out 200ms;
transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
}
.menu-open {
display: none;
}
.hamburger {
width: 25px;
height: 3px;
background: white;
display: block;
position: absolute;
top: 50%;
left: 50%;
margin-left: -12.5px;
margin-top: -1.5px;
-webkit-transition: -webkit-transform 200ms;
transition: -webkit-transform 200ms;
transition: transform 200ms;
transition: transform 200ms, -webkit-transform 200ms;
}
.hamburger-1 {
-webkit-transform: translate3d(0, -8px, 0);
transform: translate3d(0, -8px, 0);
}
.hamburger-2 {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.hamburger-3 {
-webkit-transform: translate3d(0, 8px, 0);
transform: translate3d(0, 8px, 0);
}
.menu-open:checked + .menu-open-button .hamburger-1 {
-webkit-transform: translate3d(0, 0, 0) rotate(45deg);
transform: translate3d(0, 0, 0) rotate(45deg);
}
.menu-open:checked + .menu-open-button .hamburger-2 {
-webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
transform: translate3d(0, 0, 0) scale(0.1, 1);
}
.menu-open:checked + .menu-open-button .hamburger-3 {
-webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
transform: translate3d(0, 0, 0) rotate(-45deg);
}
.menu {
position: absolute;
left: 50%;
margin-left: -80px;
padding-top: 20px;
padding-left: 80px;
width: 650px;
height: 150px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-size: 20px;
text-align: left;
}
.menu-item:hover {
background: white;
color: #ffc107;
}
.menu-item:nth-child(3) {
-webkit-transition-duration: 180ms;
transition-duration: 180ms;
}
.menu-item:nth-child(4) {
-webkit-transition-duration: 180ms;
transition-duration: 180ms;
}
.menu-item:nth-child(5) {
-webkit-transition-duration: 180ms;
transition-duration: 180ms;
}
.menu-item:nth-child(6) {
-webkit-transition-duration: 180ms;
transition-duration: 180ms;
}
.menu-open-button {
z-index: 2;
-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
-webkit-transition-duration: 400ms;
transition-duration: 400ms;
-webkit-transform: scale(1.1, 1.1) translate3d(0, 0, 0);
transform: scale(1.1, 1.1) translate3d(0, 0, 0);
cursor: pointer;
}
.menu-open-button:hover {
-webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
transform: scale(1.2, 1.2) translate3d(0, 0, 0);
}
.menu-open:checked + .menu-open-button {
-webkit-transition-timing-function: linear;
transition-timing-function: linear;
-webkit-transition-duration: 200ms;
transition-duration: 200ms;
-webkit-transform: scale(0.8, 0.8) translate3d(0, 0, 0);
transform: scale(0.8, 0.8) translate3d(0, 0, 0);
}
.menu-open:checked ~ .menu-item {
-webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.menu-open:checked ~ .menu-item:nth-child(3) {
-webkit-transition-duration: 170ms;
transition-duration: 170ms;
-webkit-transform: translate3d(80px, 0, 0);
transform: translate3d(80px, 0, 0);
}
.menu-open:checked ~ .menu-item:nth-child(4) {
-webkit-transition-duration: 250ms;
transition-duration: 250ms;
-webkit-transform: translate3d(160px, 0, 0);
transform: translate3d(160px, 0, 0);
}
.menu-open:checked ~ .menu-item:nth-child(5) {
-webkit-transition-duration: 330ms;
transition-duration: 330ms;
-webkit-transform: translate3d(240px, 0, 0);
transform: translate3d(240px, 0, 0);
}
.menu-open:checked ~ .menu-item:nth-child(6) {
-webkit-transition-duration: 410ms;
transition-duration: 410ms;
-webkit-transform: translate3d(320px, 0, 0);
transform: translate3d(320px, 0, 0);
}
/* ========================================================= */
@-webkit-keyframes demonstration {
0% {
-webkit-filter: blur(0) contrast(1);
filter: blur(0) contrast(1);
}
25% {
-webkit-filter: blur(0) contrast(1);
filter: blur(0) contrast(1);
}
30% {
-webkit-filter: blur(20px) contrast(1);
filter: blur(20px) contrast(1);
}
55% {
-webkit-filter: blur(20px) contrast(1);
filter: blur(20px) contrast(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-filter: blur(20px) contrast(30);
filter: blur(20px) contrast(30);
}
100% {
-webkit-filter: blur(20px) contrast(30);
filter: blur(20px) contrast(30);
}
}
@keyframes demonstration {
0% {
-webkit-filter: blur(0) contrast(1);
filter: blur(0) contrast(1);
}
25% {
-webkit-filter: blur(0) contrast(1);
filter: blur(0) contrast(1);
}
30% {
-webkit-filter: blur(20px) contrast(1);
filter: blur(20px) contrast(1);
}
55% {
-webkit-filter: blur(20px) contrast(1);
filter: blur(20px) contrast(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-filter: blur(20px) contrast(30);
filter: blur(20px) contrast(30);
}
100% {
-webkit-filter: blur(20px) contrast(30);
filter: blur(20px) contrast(30);
}
}
.blobs {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: white;
width: 400px;
height: 200px;
margin: auto;
-webkit-filter: blur(20px) contrast(30);
filter: blur(20px) contrast(30);
-webkit-animation: demonstration 10s linear infinite;
animation: demonstration 10s linear infinite;
}
.blob {
background: black;
width: 100px;
height: 100px;
position: absolute;
left: 50%;
top: 50%;
margin-top: -50px;
margin-left: -50px;
border-radius: 100%;
}
@-webkit-keyframes blob-anim-left {
0% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(-55px);
transform: translateX(-55px);
}
}
@keyframes blob-anim-left {
0% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(-55px);
transform: translateX(-55px);
}
}
.blob:first-child {
-webkit-animation: blob-anim-left ease-in-out 0.8s infinite alternate;
animation: blob-anim-left ease-in-out 0.8s infinite alternate;
}
@-webkit-keyframes blob-anim-right {
0% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
100% {
-webkit-transform: translateX(55px);
transform: translateX(55px);
}
}
@keyframes blob-anim-right {
0% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
100% {
-webkit-transform: translateX(55px);
transform: translateX(55px);
}
}
.blob:last-child {
-webkit-animation: blob-anim-right ease-in-out 0.8s infinite alternate;
animation: blob-anim-right ease-in-out 0.8s infinite alternate;
}
.group {
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
-webkit-filter: url("#old-goo");
filter: url("#old-goo");
}
.group-new {
left: 50%;
-webkit-filter: url("#fancy-goo");
filter: url("#fancy-goo");
}
.rect {
width: 100px;
height: 100px;
background: black;
position: absolute;
left: 50%;
top: 50%;
margin-top: -50px;
margin-left: -50px;
}
@-webkit-keyframes rect-anim-left {
0% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(-60px);
transform: translateX(-60px);
}
}
@keyframes rect-anim-left {
0% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(-60px);
transform: translateX(-60px);
}
}
.rect {
-webkit-animation: rect-anim-left ease-in-out 2s infinite alternate;
animation: rect-anim-left ease-in-out 2s infinite alternate;
}
@-webkit-keyframes rect-anim-right {
0% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
100% {
-webkit-transform: translateX(60px);
transform: translateX(60px);
}
}
@keyframes rect-anim-right {
0% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
100% {
-webkit-transform: translateX(60px);
transform: translateX(60px);
}
}
.rect + .rect {
height: 150px;
margin-top: -75px;
-webkit-animation: rect-anim-right ease-in-out 2s infinite alternate;
animation: rect-anim-right ease-in-out 2s infinite alternate;
}
.label {
position: absolute;
top: 30px;
left: 0;
width: 50%;
text-align: center;
}
.label-new {
left: 50%;
}
</style>
<h2>Gooey Menu Using CSS and SVG Filters</h2>
<nav class="menu">
<input type="checkbox" href="#" class="menu-open" name="menu-open" id="menu-open"/>
<label class="menu-open-button" for="menu-open">
<span class="hamburger hamburger-1"></span>
<span class="hamburger hamburger-2"></span>
<span class="hamburger hamburger-3"></span>
</label>
<a href="#" class="menu-item"> <i class="fa fa-bar-chart"></i> </a>
<a href="#" class="menu-item"> <i class="fa fa-plus"></i> </a>
<a href="#" class="menu-item"> <i class="fa fa-heart"></i> </a>
<a href="#" class="menu-item"> <i class="fa fa-envelope"></i> </a>
</nav>
<!-- filters -->
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter id="shadowed-goo">
<feGaussianBlur in="SourceGraphic" result="blur" stdDeviation="10" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="goo" />
<feGaussianBlur in="goo" stdDeviation="3" result="shadow" />
<feColorMatrix in="shadow" mode="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -0.2" result="shadow" />
<feOffset in="shadow" dx="1" dy="1" result="shadow" />
<feComposite in2="shadow" in="goo" result="goo" />
<feComposite in2="goo" in="SourceGraphic" result="mix" />
</filter>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" result="blur" stdDeviation="10" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="goo" />
<feComposite in2="goo" in="SourceGraphic" result="mix" />
</filter>
</defs>
</svg>
<h2>Basic Animation</h2>
<div class="blobs"> <div class="blob"></div> <div class="blob"></div></div>
<h2>Rect Goo</h2>
<div class="group group-old">
<div class="rect"></div>
<div class="rect"></div>
</div>
<div class="label label-old">Regular</div>
<div class="group group-new">
<div class="rect"></div>
<div class="rect"></div>
</div>
<div class="label label-new">Masked (with feComposite operator="atop")</div>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter id="old-goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="goo" />
<feBlend in="SourceGraphic" in2="goo" />
</filter>
<filter id="fancy-goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 19 -9" result="goo" />
<feComposite in="SourceGraphic" in2="goo" operator="atop"/>
</filter>
</defs>
</svg>
</template>
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.8.0/compcert/3.3.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>compcert: 36 m 31 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.0 / compcert - 3.3.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
compcert
<small>
3.3.0
<span class="label label-success">36 m 31 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-14 17:31:32 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-14 17:31:32 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.8.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Jacques-Henri Jourdan <jacques-Henri.jourdan@normalesup.org>"
homepage: "http://compcert.inria.fr/"
dev-repo: "git+https://github.com/AbsInt/CompCert.git"
bug-reports: "https://github.com/AbsInt/CompCert/issues"
license: "INRIA Non-Commercial License Agreement"
build: [
[
"./configure"
"ia32-linux" {os = "linux"}
"ia32-macosx" {os = "macos"}
"ia32-cygwin" {os = "cygwin"}
"-bindir"
"%{bin}%"
"-libdir"
"%{lib}%/compcert"
"-install-coqdev"
"-clightgen"
"-coqdevdir"
"%{lib}%/coq/user-contrib/compcert"
"-ignore-coq-version"
]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
["install" "-m" "0644" "VERSION" "%{lib}%/coq/user-contrib/compcert/"]
]
remove: [
["rm" "%{bin}%/ccomp"]
["rm" "%{bin}%/clightgen"]
["rm" "-R" "%{lib}%/compcert"]
["rm" "-R" "%{lib}%/coq/user-contrib/compcert"]
["rm" "%{share}%/compcert.ini"]
["rm" "%{share}%/man/man1/ccomp.1"]
["sh" "-c" "rmdir -p %{share}%/man/man1 || true"]
]
depends: [
"ocaml" {< "4.07.0"}
"coq" {> "8.6.0" & < "8.8.1"}
"menhir" {>= "20161201" & < "20180530"}
]
synopsis: "The CompCert C compiler"
authors: "Xavier Leroy <xavier.leroy@inria.fr>"
url {
src: "https://github.com/AbsInt/CompCert/archive/v3.3.tar.gz"
checksum: "md5=89c62f13cea4c2be7917aa04590e8c7d"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-compcert.3.3.0 coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-compcert.3.3.0 coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>2 m 1 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 8h opam install -y -v coq-compcert.3.3.0 coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>36 m 31 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 103 M</p>
<ul>
<li>10 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cparser/Parser.vo</code></li>
<li>9 M <code>../ocaml-base-compiler.4.05.0/bin/ccomp</code></li>
<li>6 M <code>../ocaml-base-compiler.4.05.0/bin/clightgen</code></li>
<li>4 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/SelectOp.vo</code></li>
<li>4 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/SelectLong.vo</code></li>
<li>4 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/SimplExprproof.vo</code></li>
<li>3 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/ValueDomain.vo</code></li>
<li>3 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/Op.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Integers.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Cminorgenproof.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Appli/Fappli_double_round.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cparser/validator/Interpreter_complete.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cparser/validator/Main.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/SimplLocalsproof.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Allocproof.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Cexec.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Ctyping.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Allocation.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Cstrategy.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/Machregs.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/Asmgenproof1.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cparser/validator/Validator_complete.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/RTLgenproof.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/Memory.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/Events.vo</code></li>
<li>1013 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/CombineOp.vo</code></li>
<li>958 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/SplitLong.vo</code></li>
<li>915 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Cshmgenproof.vo</code></li>
<li>832 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/SelectOpproof.vo</code></li>
<li>820 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Selectionproof.vo</code></li>
<li>819 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Inliningproof.vo</code></li>
<li>730 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/ConstpropOp.vo</code></li>
<li>719 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/FSetAVLplus.vo</code></li>
<li>711 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Fappli_IEEE_extra.vo</code></li>
<li>706 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/Values.vo</code></li>
<li>703 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Cop.vo</code></li>
<li>660 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/Asmgenproof.vo</code></li>
<li>659 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Ctypes.vo</code></li>
<li>656 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/Asm.vo</code></li>
<li>612 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Stackingproof.vo</code></li>
<li>592 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/SplitLongproof.vo</code></li>
<li>582 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Initializersproof.vo</code></li>
<li>535 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/SimplExprspec.vo</code></li>
<li>532 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/ValueAnalysis.vo</code></li>
<li>513 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Deadcodeproof.vo</code></li>
<li>489 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/Linking.vo</code></li>
<li>478 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/CSEproof.vo</code></li>
<li>474 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Unusedglobproof.vo</code></li>
<li>473 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/SelectLongproof.vo</code></li>
<li>458 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/Smallstep.vo</code></li>
<li>458 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Bounds.vo</code></li>
<li>448 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/Globalenvs.vo</code></li>
<li>435 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/RTLgenspec.vo</code></li>
<li>431 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Linearize.vo</code></li>
<li>431 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Appli/Fappli_IEEE.vo</code></li>
<li>427 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/SimplLocals.vo</code></li>
<li>422 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Inliningspec.vo</code></li>
<li>416 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Unusedglob.vo</code></li>
<li>410 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Heaps.vo</code></li>
<li>402 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Registers.vo</code></li>
<li>401 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/CleanupLabels.vo</code></li>
<li>393 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/SelectDivproof.vo</code></li>
<li>390 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/ConstpropOpproof.vo</code></li>
<li>386 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/ValueAOp.vo</code></li>
<li>375 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Constpropproof.vo</code></li>
<li>357 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/RTLtyping.vo</code></li>
<li>357 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/AST.vo</code></li>
<li>351 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Parmov.vo</code></li>
<li>347 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/NeedDomain.vo</code></li>
<li>347 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Floats.vo</code></li>
<li>341 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Maps.vo</code></li>
<li>313 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/Memdata.vo</code></li>
<li>311 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Cminor.vo</code></li>
<li>310 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Asmgenproof0.vo</code></li>
<li>309 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Coqlib.vo</code></li>
<li>304 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Tailcallproof.vo</code></li>
<li>296 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Linearizeproof.vo</code></li>
<li>289 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/Separation.vo</code></li>
<li>275 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Kildall.vo</code></li>
<li>262 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Tunnelingproof.vo</code></li>
<li>259 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/NeedOp.vo</code></li>
<li>242 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/ClightBigstep.vo</code></li>
<li>240 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Debugvarproof.vo</code></li>
<li>225 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Debugvar.vo</code></li>
<li>222 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Core/Fcore_ulp.vo</code></li>
<li>221 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/Asmgen.vo</code></li>
<li>210 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/IntvSets.vo</code></li>
<li>209 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Clight.vo</code></li>
<li>208 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/driver/Compiler.vo</code></li>
<li>208 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Csem.vo</code></li>
<li>207 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Core/Fcore_generic_fmt.vo</code></li>
<li>206 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cparser/validator/Interpreter_safe.vo</code></li>
<li>201 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/CleanupLabelsproof.vo</code></li>
<li>198 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Selection.vo</code></li>
<li>197 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/Behaviors.vo</code></li>
<li>193 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/Determinism.vo</code></li>
<li>190 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/RTL.vo</code></li>
<li>189 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Core/Fcore_Raux.vo</code></li>
<li>188 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cparser/validator/Interpreter_correct.vo</code></li>
<li>184 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Appli/Fappli_IEEE_bits.vo</code></li>
<li>181 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Locations.vo</code></li>
<li>179 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Mach.vo</code></li>
<li>175 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/Unityping.vo</code></li>
<li>175 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/SimplExpr.vo</code></li>
<li>173 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/CminorSel.vo</code></li>
<li>170 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Deadcode.vo</code></li>
<li>169 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cparser/validator/Interpreter.vo</code></li>
<li>155 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Lineartyping.vo</code></li>
<li>154 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/Switch.vo</code></li>
<li>153 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Lattice.vo</code></li>
<li>151 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Core/Fcore_digits.vo</code></li>
<li>149 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/RTLgen.vo</code></li>
<li>144 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/CombineOpproof.vo</code></li>
<li>144 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Calc/Fcalc_round.vo</code></li>
<li>142 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Cshmgen.vo</code></li>
<li>137 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Intv.vo</code></li>
<li>136 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Appli/Fappli_rnd_odd.vo</code></li>
<li>134 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/driver/Complements.vo</code></li>
<li>133 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Renumberproof.vo</code></li>
<li>129 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/Stacklayout.vo</code></li>
<li>128 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cparser/validator/Validator_safe.vo</code></li>
<li>127 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Inlining.vo</code></li>
<li>126 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/Memtype.vo</code></li>
<li>123 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86/Conventions1.vo</code></li>
<li>120 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Initializers.vo</code></li>
<li>120 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Core/Fcore_FLT.vo</code></li>
<li>118 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Postorder.vo</code></li>
<li>118 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Csharpminor.vo</code></li>
<li>116 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Calc/Fcalc_bracket.vo</code></li>
<li>112 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cparser/validator/Alphabet.vo</code></li>
<li>112 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/UnionFind.vo</code></li>
<li>110 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Core/Fcore_rnd.vo</code></li>
<li>108 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Core/Fcore_Zaux.vo</code></li>
<li>108 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/CSE.vo</code></li>
<li>103 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/SelectDiv.vo</code></li>
<li>102 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Prop/Fprop_relative.vo</code></li>
<li>101 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Core/Fcore_rnd_ne.vo</code></li>
<li>96 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cparser/validator/Automaton.vo</code></li>
<li>95 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Linear.vo</code></li>
<li>93 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/LTL.vo</code></li>
<li>93 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/CSEdomain.vo</code></li>
<li>93 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Cminorgen.vo</code></li>
<li>92 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Prop/Fprop_plus_error.vo</code></li>
<li>90 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Ordered.vo</code></li>
<li>89 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Core/Fcore_FTZ.vo</code></li>
<li>85 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Constprop.vo</code></li>
<li>83 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Liveness.vo</code></li>
<li>82 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Prop/Fprop_div_sqrt_error.vo</code></li>
<li>80 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Calc/Fcalc_sqrt.vo</code></li>
<li>78 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Stacking.vo</code></li>
<li>74 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cfrontend/Csyntax.vo</code></li>
<li>74 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Calc/Fcalc_div.vo</code></li>
<li>74 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cparser/Cabs.vo</code></li>
<li>73 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cparser/validator/Grammar.vo</code></li>
<li>72 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Prop/Fprop_mult_error.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Core/Fcore_FLX.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Core/Fcore_float_prop.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Conventions.vo</code></li>
<li>68 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Tailcall.vo</code></li>
<li>67 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Tunneling.vo</code></li>
<li>66 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/backend/Renumber.vo</code></li>
<li>64 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Decidableplus.vo</code></li>
<li>60 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/exportclight/Clightdefs.vo</code></li>
<li>58 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Iteration.vo</code></li>
<li>56 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Calc/Fcalc_ops.vo</code></li>
<li>56 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/common/Errors.vo</code></li>
<li>52 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Prop/Fprop_Sterbenz.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Core/Fcore_defs.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/x86_32/Archi.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Core/Fcore_FIX.vo</code></li>
<li>47 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Calc/Fcalc_digits.vo</code></li>
<li>44 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/BoolEqual.vo</code></li>
<li>43 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/flocq/Core/Fcore.vo</code></li>
<li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/cparser/validator/Tuples.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Wfsimpl.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.05.0/share/man/man1/ccomp.1</code></li>
<li>12 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/lib/Axioms.vo</code></li>
<li>11 K <code>../ocaml-base-compiler.4.05.0/lib/compcert/libcompcert.a</code></li>
<li>4 K <code>../ocaml-base-compiler.4.05.0/lib/compcert/include/stddef.h</code></li>
<li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/driver/Compopts.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.05.0/lib/compcert/include/float.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/compcert/include/stdarg.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/compcert/include/stdalign.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/compcert/include/varargs.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/compcert/include/stdbool.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/compcert/include/stdnoreturn.h</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/share/compcert.ini</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/README</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/compcert/VERSION</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-compcert.3.3.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
css/post-normalize.css | collab-uniba/eConference-3P-mobile | /*
* Media queries for responsive design github.com/h5bp/mobile-boilerplate/wiki/The-Style
*/
/* Styles for desktop and large screen ----------- */
/*styles for 800px and up!*/
@media only screen and (min-width: 800px) {
/* Styles */
}/*/mediaquery*/
/* iPhone 4, Opera Mobile 11 and other high pixel ratio devices ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
/* Styles */
}
/* ==|== non-semantic helper classes ========================================
Please define your styles before this section.
========================================================================== */
/* prevent callout */
.nocallout {-webkit-touch-callout: none;}
/* A hack for HTML5 contenteditable attribute on mobile */
textarea[contenteditable] {-webkit-appearance: none;}
/* A workaround for S60 3.x and 5.0 devices which do not animated gif images if they have been set as display: none */
.gifhidden {position: absolute; left: -100%;}
/* For image replacement */
.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; }
.ir br { display: none; }
/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden { display: none !important; visibility: hidden; }
/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }
/* Contain floats: h5bp.com/q */
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }
/* ==|== print styles =======================================================
Print styles.
Inlined to avoid required HTTP connection: h5bp.com/r
========================================================================== */
@media print {
* { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
a, a:visited { text-decoration: underline; }
a[href]:after { content: " (" attr(href) ")"; }
abbr[title]:after { content: " (" attr(title) ")"; }
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Don't show links for images, or javascript/internal links */
pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
thead { display: table-header-group; } /* h5bp.com/t */
tr, img { page-break-inside: avoid; }
img { max-width: 100% !important; }
@page { margin: 0.5cm; }
p, h2, h3 { orphans: 3; widows: 3; }
h2, h3 { page-break-after: avoid; }
}
|
clean/Linux-x86_64-4.09.0-2.0.5/extra-dev/dev/extensible-records/1.2.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>extensible-records: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">dev / extensible-records - 1.2.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
extensible-records
<small>
1.2.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2019-11-30 21:22:11 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2019-11-30 21:22:11 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq dev Formal proof management system
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.09.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.09.0 Official release 4.09.0
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "gmalecha@gmail.com"
homepage: "https://github.com/gmalecha/coq-extensible-records"
dev-repo: "git+https://github.com/gmalecha/coq-extensible-records.git"
bug-reports: "https://github.com/gmalecha/coq-extensible-records/issues"
authors: ["Gregory Malecha"]
license: "MIT"
build: [
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
depends: [
"ocaml"
"coq" {>= "8.5.0" & < "8.9"}
]
synopsis: "Definitional (canonical) extensible records in Coq with string keys and arbitrary (non-dependent) types"
url {
src:
"https://github.com/gmalecha/coq-extensible-records/archive/1.2.0.tar.gz"
checksum: "md5=3794e13edcfde118d1cc61bc0858ac6d"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-extensible-records.1.2.0 coq.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is dev).
The following dependencies couldn't be met:
- coq-extensible-records -> coq < 8.9 -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-extensible-records.1.2.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.6/extra-dev/8.10.0/lambda/8.8.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>lambda: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">8.10.0 / lambda - 8.8.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
lambda
<small>
8.8.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-07-14 04:23:34 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-14 04:23:34 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.10.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/lambda"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Lambda"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
]
tags: [ "keyword: pure lambda-calculus" "keyword: confluence" "keyword: parallel-moves lemma" "keyword: Lévy's Cube Lemma" "keyword: Church-Rosser" "keyword: residual" "keyword: Prism theorem" "category: Computer Science/Lambda Calculi" ]
authors: [ "Gérard Huet" ]
bug-reports: "https://github.com/coq-contribs/lambda/issues"
dev-repo: "git+https://github.com/coq-contribs/lambda.git"
synopsis: "Residual Theory in Lambda-Calculus"
description: """
We present the complete development in Gallina of the
residual theory of beta-reduction in pure lambda-calculus. The main
result is the Prism Theorem, and its corollary Lévy's Cube Lemma, a
strong form of the parallel-moves lemma, itself a key step towards the
confluence theorem and its usual corollaries (Church-Rosser,
uniqueness of normal forms)."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/lambda/archive/v8.8.0.tar.gz"
checksum: "md5=9cbb08a47760ac8ea78e2b16c501d594"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-lambda.8.8.0 coq.8.10.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.0).
The following dependencies couldn't be met:
- coq-lambda -> coq < 8.9~ -> ocaml < 4.05.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-lambda.8.8.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.04.2-2.0.5/released/8.7.1+1/ceramist/1.0.1.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ceramist: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1+1 / ceramist - 1.0.1</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
ceramist
<small>
1.0.1
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-06 11:16:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-06 11:16:41 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.7.1+1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
synopsis: "Coq library for reasoning about probabilistic algorithms"
description: """
Ceramist extends coq-infotheo to support reasoning about probabilistic algorithms,
and includes a collection of lemmas on random oracle based hash functions.
Provides an example implementation of a bloom filter and uses the library to prove
the probability of a false positive.
"""
homepage: "https://github.com/certichain/ceramist"
dev-repo: "git+https://github.com/certichain/ceramist.git"
bug-reports: "https://github.com/certichain/ceramist/issues"
maintainer: "kirang@comp.nus.edu.sg"
authors: [
"Kiran Gopinathan"
"Ilya Sergey"
]
license: "GPL-3.0-or-later"
depends: [
"coq" {>= "8.11.0"}
"coq-mathcomp-ssreflect" {>= "1.10" & < "1.11~"}
"coq-mathcomp-analysis" { >= "0.2.3" & < "0.3~" }
"coq-infotheo" { >= "0.1" & < "0.2~" }
]
build: [
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
tags: [
"category:Computer Science/Data Types and Data Structures"
"keyword: bloomfilter"
"keyword: probability"
"keyword: amq"
"date:2020-04-06"
]
url {
src: "https://github.com/certichain/ceramist/archive/1.0.1.tar.gz"
checksum: "sha512=0b5a9a7fa1a68bbe90806a9cf0f603dd8f00ad9e37c86e1c8cf70d05886d11e754937838ab0f335c04c0eb0b622c49f1f6c46509880d3f9c47769d9c159defaa"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-ceramist.1.0.1 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1+1).
The following dependencies couldn't be met:
- coq-ceramist -> coq >= 8.11.0 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-ceramist.1.0.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.13.1-2.0.10/released/8.13.1/square-matrices/8.7.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>square-matrices: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.13.1 / square-matrices - 8.7.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
square-matrices
<small>
8.7.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-10 01:39:32 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-10 01:39:32 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.13.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.13.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.13.1 Official release 4.13.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/square-matrices"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/SquareMatrices"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [ "keyword: exponentiation" "keyword: vectors" "keyword: matrices" "keyword: polymorphic recursion" "keyword: nested datatypes" "category: Mathematics/Algebra" ]
authors: [ "Jean-Christophe Filliâtre" ]
bug-reports: "https://github.com/coq-contribs/square-matrices/issues"
dev-repo: "git+https://github.com/coq-contribs/square-matrices.git"
synopsis: "From Fast Exponentiation to Square Matrices"
description: """
This development is a formalization of Chris Okasaki's article
``From Fast Exponentiation to Square Matrices: An Adventure in Types''"""
flags: light-uninstall
url {
src:
"https://github.com/coq-contribs/square-matrices/archive/v8.7.0.tar.gz"
checksum: "md5=a4e002b89a7fca5a8cbdc3bdb2729c22"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-square-matrices.8.7.0 coq.8.13.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.13.1).
The following dependencies couldn't be met:
- coq-square-matrices -> coq < 8.8~ -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-square-matrices.8.7.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.06.1-2.0.5/released/8.10.0/cantor/8.7.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>cantor: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.10.0 / cantor - 8.7.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
cantor
<small>
8.7.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-09 07:56:05 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-09 07:56:05 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.10.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/cantor"
license: "LGPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Cantor"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [
"keyword: ordinal numbers"
"keyword: well-foundedness"
"keyword: termination"
"keyword: rpo"
"keyword: Goodstein sequences"
"category: Mathematics/Logic"
"category: Mathematics/Arithmetic and Number Theory/Number theory"
"date: 2006-05-22"
]
authors: [ "Pierre Castéran <pierre.casteran@labri.fr> [http://www.labri.fr/~casteran/]" "Évelyne Contejean <contejea@lri.fr> [http://www.lri.fr/~contejea]" ]
bug-reports: "https://github.com/coq-contribs/cantor/issues"
dev-repo: "git+https://github.com/coq-contribs/cantor.git"
synopsis: "On Ordinal Notations"
description: """
This contribution contains data structures for ordinals
less than Gamma0 under Cantor and Veblen normal
forms. Well-foundedness is established thanks to RPO with status for
generic terms. This contribution also includes termination proofs of
Hydra battles and Goodstein sequences as well as a computation of the
length of the Goodstein sequence starting from 4 in base 2.
This work is supported by INRIA-Futurs (Logical project-team), CNRS
and the French ANR via the A3PAT project (http://www3.iie.cnam.fr/~urbain/a3pat/)."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/cantor/archive/v8.7.0.tar.gz"
checksum: "md5=06d84560777ad83488f3446815841a8d"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-cantor.8.7.0 coq.8.10.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.0).
The following dependencies couldn't be met:
- coq-cantor -> coq < 8.8~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-cantor.8.7.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.