code stringlengths 3 1.01M | repo_name stringlengths 5 116 | path stringlengths 3 311 | language stringclasses 30 values | license stringclasses 15 values | size int64 3 1.01M |
|---|---|---|---|---|---|
Symbol.class_eval do
def to_underscored_s
word = self.to_s
word.gsub!(/::/, '/')
word.gsub!(/([A-Z]+)([A-Z][a-z])/,'\1_\2')
word.gsub!(/([a-z\d])([A-Z])/,'\1_\2')
word.tr!("-", "_")
word.downcase!
word
end
end | chapmanu/series25 | lib/ext/symbol.rb | Ruby | mit | 225 |
<div *ngIf="breadcrumbs || pagination" class="Polaris-Page__Navigation">
<plrsBreadcrumbs *ngIf="breadcrumbs && breadcrumbs.length > 0" [breadcrumbs]="breadcrumbs"></plrsBreadcrumbs>
<plrsPagination *ngIf="pagination"
[plain]="pagination.plain === true"
[nextUrl]="pagination.nextUrl"
[nextRouterLink]="pagination.nextRouterLink"
[hasNext]="pagination.hasNext === true"
[previousUrl]="pagination.previousUrl"
[previousRouterLink]="pagination.previousRouterLink"
[hasPrevious]="pagination.hasPrevious === true"></plrsPagination>
</div>
<h1 class="Polaris-DisplayText Polaris-DisplayText--sizeLarge">{{ title }}</h1>
<div *ngIf="primaryAction || (secondaryActions)" class="Polaris-Page__Actions">
<plrsButton class="Polaris-Page__PrimaryAction" *ngIf="primaryAction" [fromAction]="primaryAction" primary></plrsButton>
<div class="Polaris-Page__SecondaryActions" *ngIf="secondaryActions">
<ng-container *ngFor="let action of secondaryActions">
<a *ngIf="action.routerLink"
class="Polaris-Page__Action"
[routerLink]="action.routerLink"
data-polaris-unstyled="true"
[attr.aria-label]="action.accessibilityLabel">
<span *ngIf="action.icon" class="Polaris-Page__ActionContent">
<span class="Polaris-Page__ActionIcon">
<plrsIcon [source]="action.icon"></plrsIcon>
</span>
{{ action.content }}
</span>
<ng-container *ngIf="!action.icon">{{ action.content }}</ng-container>
</a>
<a *ngIf="action.url"
class="Polaris-Page__Action"
[href]="url"
[attr.aria-label]="accessibilityLabel"
[target]="external !== false ? _blank : ''">
<span *ngIf="action.icon" class="Polaris-Page__ActionContent">
<span class="Polaris-Page__ActionIcon">
<plrsIcon [source]="action.icon"></plrsIcon>
</span>
{{ action.content }}
</span>
<ng-container *ngIf="!action.icon">{{ action.content }}</ng-container>
</a>
<button *ngIf="!action.url && !action.routerLink"
type="button"
class="Polaris-Page__Action"
(click)="onAction($event)"
[attr.aria-label]="accessibilityLabel">
<span *ngIf="action.icon" class="Polaris-Page__ActionContent">
<span class="Polaris-Page__ActionIcon">
<plrsIcon [source]="action.icon"></plrsIcon>
</span>
{{ action.content }}
</span>
<ng-container *ngIf="!action.icon">{{ action.content }}</ng-container>
</button>
</ng-container>
</div>
</div>
| syrp-nz/angular-polaris | src/app/library/page/page.header.component.html | HTML | mit | 2,989 |
package edu.clemson.cs;
import java.awt.*;
public abstract class MovablePiece extends ArcadeGamePiece {
protected Velocity _currentVelocity;
protected BricklesView _theView;
protected Point _leadingPoint;
public MovablePiece(PlayingField fieldPtr, Point initialLocation, Velocity initialVelocity) {
super(fieldPtr, initialLocation);
_currentVelocity = initialVelocity;
}
public Point getPosition() {
// return _currentPosition;
return _leadingPoint;
}
public Velocity getVelocity() {
return _currentVelocity;
}
public void setVelocity(Velocity newVelocity) {
_currentVelocity = newVelocity;
}
public void tick() {
this.move();
try {
//System.out.println("In try/moved\n");
_fieldPtr.moved(this);
}
catch (Collision aCollision) {
aCollision.occur();
}
}
public abstract void move();
public void collideWith(ArcadeGamePiece aPiece, Point aPoint) { }
public abstract void collideWithPaddle(Paddle aPaddle, Point aPoint);
public abstract void collideWithPuck(Puck aPuck, Point aPoint);
public void reverseY() {
_currentVelocity.reverseY();
}
public void reverseX() {
_currentVelocity.reverseX();
}
}
| bulletshot60/brickles | edu/clemson/cs/MovablePiece.java | Java | mit | 1,385 |
For report an issue and know how to report, click here !
# [How to Report an Issue](https://github.com/Sxcret/FrenchRP/wiki/How-To-Report-Issues)
Do not ask for help on the GitHub page !
The GitHub is for bugs and feature requests !
Just use the forum !
# [Forum of FrenchRP](http://forum.frenchrp.com/)
For modifying FrenchRP, read this wiki please !
# [Wiki of FrenchRP](http://wiki.frenchrp.com/index.php/Main_Page)
Download the FrenchRP !
# [Download FrenchRP](https://github.com/Sxcret/FrenchRP-Modifications) | Sxcret/FrenchRP | README.md | Markdown | mit | 519 |
# datetimepicker
一个轻量级、符合中国人审美和习惯的日期时间选择控件
# 简介
之前很想找一款“合适的”开源日期时间选择控件,发现没有合适的。要不就是样式太丑,要不就是操作不习惯。狠了狠心,花了两天的时间,自己搞出一个日期时间选择的控件。
样式上“借鉴”了下amazeui的日历控件,控件的js完全按照自己的习惯手写(控件定位上“借鉴”了下bootstrap的日历控件)。控件的最大特点是支持快速的时间选择。
# demo在线预览
* http://cdn.ouchuanyu.com/datetimepicker/example/index.html
* 
# 使用方式
* 依赖Zepto或者jquery库
* 依赖momentjs库
* 在html中引入 xdatetimepicker.css和xdatetimepicker.js
* $('your input element').xdatetimepicker({....your config options}) 来使用
* Html结构参考example/index.html
# 配置参数及默认值
```
{
format: 'YYYY-MM-DD HH:mm', // 时间日期格式, 如果包含小时/分钟/秒就自动出现时间选择
autoClose: true, // 是否自动关闭
minSetp : 1, // 分钟的增长计数, minSetp >= 30 的情况下自动启用快速时间选择模式
i18n : { // 国际化,默认就是中文了
unit : { // 时间单位
hours : '小时',
minutes : '分钟',
seconds : '秒'
},
btns : { // 按钮名称
clear : '清除',
now : '现在时间',
close : '关闭'
},
year : 'YYYY年', // 年份的格式化
week : ['一', '二', '三', '四', '五', '六', '日'], // 星期一~天
months : ['一月','二月','三月','四月','五月','六月','七月','八月','九月','十月','十一月','十二月'] // 月份
},
zIndexOffset : 10, // zIndex的递增偏移
btns : ['clear', 'now', 'close'], // 需要哪些按钮,目前支持3中,后续可以扩展
minTime : null, // 最小时间
maxTime : null, // 最大时间
disabledDates : null, // 禁用日期
isDisabled : null, // 通过函数判断日期是否禁用
onClose : null, // 关闭回调
onTimeChange : null, // 修改了时间的回调
onDateChange : null, // 修改了日期的回调
onChange : null // 修改了时间或者日期的回调
}
```
| ouch1985/datetimepicker | README.md | Markdown | mit | 2,479 |
[](https://pypi.python.org/pypi/netmiko)
Netmiko
=======
Multi-vendor library to simplify Paramiko SSH connections to network devices
Python 2.7, 3.4, 3.5
#### Requires:
Paramiko >= 1.13+
scp >= 0.10.0
pyyaml
pytest (for unit tests)
#### Supports:
###### Regularly tested
Arista vEOS
Cisco ASA
Cisco IOS
Cisco IOS-XE
Cisco IOS-XR
Cisco NX-OS
Cisco SG300
HP Comware7
HP ProCurve
Juniper Junos
Linux
###### Limited testing
Alcatel AOS6/AOS8
Avaya ERS
Avaya VSP
Brocade VDX
Brocade ICX/FastIron
Brocade MLX/NetIron
Cisco WLC
Dell-Force10 DNOS9
Dell PowerConnect
Huawei
Mellanox
Palo Alto PAN-OS
Pluribus
Ubiquiti EdgeSwitch
Vyatta VyOS
###### Experimental
A10
Accedian
Alcatel-Lucent SR-OS
Aruba
Ciena SAOS
Cisco Telepresence
CheckPoint Gaia
Enterasys
Extreme EXOS
Extreme Wing
F5 LTM
Fortinet
MRV Communications OptiSwitch
## Tutorials:
##### Standard Tutorial:
https://pynet.twb-tech.com/blog/automation/netmiko.html
##### SSH Proxy:
https://pynet.twb-tech.com/blog/automation/netmiko-proxy.html
##### Documentation (Stable)
http://netmiko.readthedocs.io/en/stable/index.html
## Examples:
#### Create a dictionary representing the device.
Supported device_types can be found [here](https://github.com/ktbyers/netmiko/blob/master/netmiko/ssh_dispatcher.py), see CLASS_MAPPER keys.
```py
from netmiko import ConnectHandler
cisco_881 = {
'device_type': 'cisco_ios',
'ip': '10.10.10.10',
'username': 'test',
'password': 'password',
'port' : 8022, # optional, defaults to 22
'secret': 'secret', # optional, defaults to ''
'verbose': False, # optional, defaults to False
}
```
#### Establish an SSH connection to the device by passing in the device dictionary.
```py
net_connect = ConnectHandler(**cisco_881)
```
#### Execute show commands.
```py
output = net_connect.send_command('show ip int brief')
print(output)
```
```
Interface IP-Address OK? Method Status Protocol
FastEthernet0 unassigned YES unset down down
FastEthernet1 unassigned YES unset down down
FastEthernet2 unassigned YES unset down down
FastEthernet3 unassigned YES unset down down
FastEthernet4 10.10.10.10 YES manual up up
Vlan1 unassigned YES unset down down
```
#### For long-running commands, use `send_command_expect()`
`send_command_expect` waits for the trailing prompt (or for an optional pattern)
```py
net_connect.send_command_expect('write memory')
```
```
Building configuration...
[OK]
```
#### Enter and exit enable mode.
```py
net_connect.enable()
net_connect.exit_enable_mode()
```
#### Execute configuration change commands (will automatically enter into config mode)
```py
config_commands = [ 'logging buffered 20000',
'logging buffered 20010',
'no logging console' ]
output = net_connect.send_config_set(config_commands)
print(output)
```
```
pynet-rtr1#config term
Enter configuration commands, one per line. End with CNTL/Z.
pynet-rtr1(config)#logging buffered 20000
pynet-rtr1(config)#logging buffered 20010
pynet-rtr1(config)#no logging console
pynet-rtr1(config)#end
pynet-rtr1#
```
## Questions/Discussion
If you find an issue with Netmiko, then you can open an issue on this projects issue page here: [https://github.com/ktbyers/netmiko/issues](https://github.com/ktbyers/netmiko/issues)
If you have questions or would like to discuss Netmiko, a Netmiko channel exists on [this Slack](https://networktocode.slack.com) team. To join, visit [this url](http://slack.networktocode.com/) and request access to the Slack team. Once access is granted you can join the [#netmiko](https://networktocode.slack.com/messages/netmiko/) channel.
---
Kirk Byers
Python for Network Engineers
https://pynet.twb-tech.com
| fooelisa/netmiko | README.md | Markdown | mit | 4,167 |
module Volter
VERSION = "0.0.2"
end
| kressh/volter | lib/volter/version.rb | Ruby | mit | 38 |
<?php
/**
* Created by PhpStorm.
* User: Ekstazi
* Date: 02.11.2014
* Time: 14:01
*/
namespace ekstazi\crud\actions;
use ekstazi\crud\Constants;
use ekstazi\crud\params\Finder;
use yii\web\NotFoundHttpException;
/**
* View model action
* @package ekstazi\crud\actions
*/
class ViewAction extends Action
{
/**
* @var string View file name
*/
public $viewName = 'view';
/**
* @throws \yii\web\BadRequestHttpException
* @throws \yii\web\NotFoundHttpException
*/
public function run()
{
$model = $this->loadModel(\Yii::$app->request->get());
$this->ensureAccess(['model' => $model]);
return $this->controller->render($this->viewName, [
'model' => $model
]);
}
} | Ekstazi/yii2-crud-actions | src/actions/ViewAction.php | PHP | mit | 770 |
<?php
return array (
'id' => 'philips_xenium99_ver1',
'fallback' => 'uptext_generic',
'capabilities' =>
array (
'mobile_browser' => 'Openwave Mobile Browser',
'mobile_browser_version' => '4.1',
'can_skip_aligned_link_row' => 'true',
'model_name' => 'Xenium 9@9',
'brand_name' => 'Philips',
'rows' => '7',
'max_image_width' => '120',
'resolution_width' => '128',
'resolution_height' => '160',
'max_image_height' => '130',
'max_data_rate' => '40',
'sp_midi' => 'true',
'midi_polyphonic' => 'true',
'j2me_midp_2_0' => 'true',
'j2me_midp_1_0' => 'true',
),
);
| cuckata23/wurfl-data | data/philips_xenium99_ver1.php | PHP | mit | 627 |
import {observable} from 'mobx';
export default class SessionDocumentModel {
@observable id;
@observable sessionID;
@observable studentID;
@observable filename;
@observable CreatorId;
@observable archived;
constructor(value) {
this.id = id;
this.sessionID = sessionID;
this.studentID = studentID;
this.filename = filename;
this.CreatorId = CreatorId;
this.archived = archived;
}
}
| JasonShin/HELP-yo | public/js/models/SessionDocumentModel.js | JavaScript | mit | 445 |
# -*- coding: utf-8 -*-
# Resource object code
#
# Created by: The Resource Compiler for PyQt5 (Qt v5.8.0)
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore
qt_resource_data = b"\
\x00\x00\x04\x31\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\
\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\
\x00\x00\x09\x70\x48\x59\x73\x00\x00\x00\xdd\x00\x00\x00\xdd\x01\
\x70\x53\xa2\x07\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\
\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\
\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xdd\x50\x4c\x54\
\x45\xff\xff\xff\xff\xff\x00\xff\xff\x80\xff\xff\xff\xff\xcc\x66\
\xff\xdb\x49\xff\xbf\x60\xff\xb3\x4d\xff\xd1\x5d\xff\xc4\x4e\xed\
\xed\xed\xff\xb6\x49\xff\xc8\x5b\xdf\xef\xef\xff\xcf\x50\xff\xd2\
\x5a\xf2\xbf\x40\xf4\xbf\x40\xe2\xeb\xeb\xff\xd0\x55\xe4\xed\xed\
\xe5\xe5\xed\xff\xca\x58\xff\xcc\x55\xf8\xb8\x40\xff\xcd\x55\xff\
\xcc\x53\xe7\xe7\xed\xff\xcc\x55\xe3\xe9\xee\xf4\xb8\x41\xff\xce\
\x51\xff\xcc\x53\xf6\xbc\x43\xf6\xba\x41\xff\xce\x55\xf7\xbb\x44\
\xf7\xbc\x43\xf8\xbc\x43\xff\xcd\x55\xe7\xea\xee\xf5\xbd\x42\xe7\
\xea\xee\xf5\xb9\x42\xf6\xbb\x41\xf6\xbb\x41\xf6\xbb\x41\xe5\xea\
\xed\xe6\xe8\xed\xf5\xbc\x41\xf5\xba\x42\xf6\xbb\x42\xff\xce\x54\
\xe7\xe9\xed\xf5\xbb\x42\xff\xce\x54\xf6\xbb\x42\xf6\xbc\x42\xe8\
\xe9\xed\xf6\xbc\x42\xff\xcd\x53\xe5\xe9\xec\xf5\xba\x41\xe6\xe9\
\xec\xff\xce\x54\xe7\xea\xed\xff\xce\x53\xe7\xea\xef\xf6\xbc\x42\
\xff\xce\x54\xf7\xbc\x43\xf7\xbb\x43\xe7\xe9\xed\xe6\xe8\xec\xff\
\xcd\x55\xf7\xbd\x42\xff\xcf\x54\xe7\xe9\xee\xf6\xbb\x43\xff\xce\
\x55\xff\xcd\x55\xe6\xe9\xed\xf6\xbc\x42\xe7\xe9\xee\xe6\xe9\xed\
\xe7\xea\xed\xff\xce\x54\xe7\xe9\xed\xf6\xbc\x42\xe6\xe9\xed\xf6\
\xbb\x42\xf6\xbb\x42\xff\xce\x54\xf7\xbb\x43\xe7\xe9\xed\xe6\xe9\
\xed\xf6\xbb\x42\xf6\xbb\x42\xe8\xeb\xf0\xe8\xea\xee\xe8\xeb\xef\
\xe7\xea\xee\xeb\xed\xf1\xf8\xbe\x45\xf7\xbd\x44\xe7\xea\xee\xeb\
\xee\xf1\xf6\xbb\x43\xe6\xe9\xed\xea\xed\xf0\xf6\xbb\x42\xf7\xbe\
\x44\xf8\xc0\x46\xc6\xca\xce\xd3\xd6\xdb\xda\x44\x53\xdb\x46\x55\
\xdb\x4b\x5a\xdb\x4e\x5c\xdc\x48\x57\xdf\x65\x72\xe6\x93\x9d\xe6\
\x95\x9e\xe6\xe9\xed\xe7\x4f\x5e\xeb\xed\xf1\xeb\xee\xf1\xec\xb9\
\xc0\xec\xbd\xc4\xec\xef\xf2\xed\xc4\xcb\xed\xf0\xf3\xee\xf0\xf3\
\xee\xf1\xf4\xef\xce\xd4\xef\xf1\xf5\xf0\xd6\xdb\xf0\xf2\xf5\xf0\
\xf2\xf6\xf1\xf3\xf7\xf1\xf4\xf7\xf2\xe3\xe7\xf4\xef\xf2\xf4\xf6\
\xf9\xf5\xf5\xf8\xf5\xf6\xf9\xf5\xf7\xfa\xf6\xbb\x42\xf9\xc0\x47\
\xf9\xc1\x48\xf9\xc2\x49\xfa\xc3\x49\xfb\xc5\x4b\xfb\xc6\x4d\xfc\
\xc8\x4e\xfd\xc9\x4f\xfd\xca\x50\xfd\xca\x51\xff\xce\x54\x04\x23\
\x9d\x11\x00\x00\x00\x71\x74\x52\x4e\x53\x00\x01\x02\x02\x05\x07\
\x08\x0a\x0b\x0d\x0e\x0e\x0e\x10\x10\x11\x14\x18\x1a\x1b\x1c\x1d\
\x1d\x1e\x24\x24\x28\x2b\x2d\x2e\x2f\x2f\x37\x39\x3b\x3f\x40\x41\
\x45\x48\x49\x49\x4a\x4d\x52\x53\x56\x62\x64\x66\x68\x6d\x7d\x7e\
\x80\x83\x8b\x8c\x8e\x90\x90\x95\xa0\xa5\xa6\xa8\xa8\xaa\xae\xb1\
\xb6\xb8\xbd\xbe\xbe\xc0\xc3\xc8\xcb\xcd\xd3\xd8\xd8\xdb\xde\xe6\
\xe7\xe8\xe8\xe9\xea\xed\xf0\xf1\xf2\xf5\xf5\xf7\xf8\xfa\xfa\xfb\
\xfb\xfb\xfc\xfd\xfd\xfd\xfe\xfe\xfe\xfe\xfe\x22\xeb\xe2\xf5\x00\
\x00\x01\x49\x49\x44\x41\x54\x38\xcb\x63\x60\x00\x03\x59\x8f\xf8\
\x40\x03\x06\xdc\x40\x24\x2e\xa9\x35\x2d\x13\x8f\x0a\xd3\xd4\xfe\
\x49\x93\xd2\x02\x71\x2b\xb0\xcf\x9a\x34\x69\x52\x67\x0e\x6e\x05\
\x8e\x75\x40\x05\x5d\xd5\x94\x29\xe8\x25\xa4\xa0\xac\x89\x80\x82\
\xe2\x7a\x84\x02\x01\x42\x0a\xa2\xd5\x70\x2b\xe0\xe7\x03\x12\x09\
\xda\x0c\x0c\x2c\xc2\xd8\x15\x98\x87\x49\x32\x30\x48\x30\x30\x30\
\xba\x06\x60\x57\xc0\xe3\xa4\xae\xe8\x16\xe1\x67\xcc\xe6\xa5\x80\
\xa2\xa0\xa8\xa5\xb8\xbe\x10\xe2\x06\xbd\xbc\xfc\x19\x53\x26\xbb\
\xa0\xb9\x01\xa1\x80\x3d\x76\xea\xbc\x79\xf3\x66\x4d\xd6\xc4\xea\
\x48\x39\x3b\x43\xa5\xc9\x73\x80\x0a\xe6\x65\x58\x00\xd9\x98\x0a\
\x54\xdd\xcd\x54\x26\xcf\x05\x29\x48\xb7\x06\xb2\xb1\x86\x03\x77\
\xe2\x74\xa0\xfc\xec\xc9\xba\x38\x03\xca\x68\x72\xc1\xcc\x69\xd9\
\xde\x8c\x38\x14\xb0\xda\x28\xeb\x04\x65\x47\x59\x72\x3a\x48\x61\
\x57\x60\x12\x23\xc3\xc0\x20\xc8\xc0\xc0\xe4\xe3\x8f\x5d\x81\x98\
\x38\x34\x2e\x38\xe4\xf1\x44\x16\x28\x2e\xf0\xc6\xa6\x04\xba\x3c\
\x6f\x64\x23\x50\x41\x77\xb5\x16\xae\xf4\x62\x9b\xd3\xdf\x51\x5c\
\x39\x21\x37\x9c\x19\x87\x82\x90\xda\xbe\xd2\x92\xe2\x86\xae\x6a\
\x69\x1c\x0a\xe2\xdb\xdb\x8a\x6b\xca\xab\xfa\xab\x35\x70\x28\xf0\
\x6d\x9c\x58\x51\x5c\xda\xd1\x5d\x2d\x84\x43\x81\x7e\x66\xcf\xc4\
\xb6\xbe\xfe\x14\x4f\x9c\xa9\xda\x39\xb3\xb1\xbd\x39\x39\x54\x14\
\x77\xba\xd7\xf7\x8d\x0f\xb6\xe2\xc2\x26\x03\x00\x8f\xb4\x8c\xb5\
\x70\xac\xb2\xb2\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\
\x00\x00\x02\x24\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\
\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\
\x00\x00\x09\x70\x48\x59\x73\x00\x00\x07\xa3\x00\x00\x07\xa3\x01\
\x30\x2f\xb2\xc5\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\
\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\
\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\xa2\x50\x4c\x54\
\x45\xff\xff\xff\x28\x38\x4d\x28\x37\x4d\x87\x39\x4f\x6b\x39\x4e\
\xfc\x38\x52\xef\xd5\xc9\x78\x38\x4e\x8a\x39\x4f\x94\x39\x4e\xfc\
\x39\x52\xef\xd8\xcd\xcd\x39\x51\xd6\x39\x51\xed\xea\xda\xfc\x39\
\x52\x26\xb9\x9a\x28\x38\x4c\x4f\xc2\xa6\x8c\xca\xb0\x91\xca\xb1\
\x9c\xcb\xb1\x9f\xcb\xb1\xc5\xca\xb0\xca\xca\xae\xcb\xca\xaf\xce\
\xc9\xae\xce\xc9\xaf\xcf\xca\xaf\xcf\xca\xb0\xd0\xcb\xb1\xd1\xcc\
\xb2\xd2\xcd\xb3\xd7\xd2\xba\xd7\xd3\xbb\xd8\xd3\xbc\xd8\xd4\xbc\
\xd9\xd4\xbd\xd9\xd5\xbd\xd9\xd5\xbe\xda\xd5\xbe\xda\xd6\xbf\xdb\
\xd6\xc0\xdb\xd7\xc1\xdc\xd8\xc3\xde\xda\xc5\xe0\xdc\xc8\xe5\xe2\
\xcf\xe6\xe3\xd0\xe7\xe4\xd2\xe9\xe6\xd4\xeb\xe8\xd7\xed\xea\xda\
\xfc\x39\x52\x19\x34\xb7\x9d\x00\x00\x00\x10\x74\x52\x4e\x53\x00\
\x60\x78\xae\xb0\xb5\xbd\xc0\xc2\xc4\xc8\xcc\xd8\xdf\xe8\xe8\x79\
\xe2\xaf\xf9\x00\x00\x00\xd8\x49\x44\x41\x54\x38\x4f\xad\x90\xc9\
\x0e\x82\x40\x10\x05\x01\x51\x16\x95\xcd\x05\x97\x01\x14\x11\x50\
\x76\x95\xff\xff\x35\x9f\xc6\x43\x93\x00\x26\x84\x3a\xd4\xcc\x74\
\x2a\xa1\x03\xc7\x7d\x10\x4c\xd3\xe4\x39\x02\x8f\x81\x40\xde\xbd\
\xc1\x54\x55\x55\x11\xef\x89\x4a\x98\x60\x20\xe2\x9c\x22\xd0\xeb\
\xba\x96\xf0\x56\x6a\x82\x82\x81\x84\x53\xff\x05\x0b\x59\x96\x97\
\x34\x58\x62\xb0\x20\x41\x27\xe3\x04\xb3\x79\x0f\x33\x04\xda\xab\
\x07\x6d\xb4\x20\x3f\xb5\x90\x93\x20\x3b\x17\x45\x11\xfa\x50\x10\
\x40\x7e\x08\x9d\x33\x1a\xc4\x50\x7a\x87\x92\x04\xba\xa7\x50\x3c\
\x72\xc0\x3c\xcf\x73\x9c\x86\x58\x23\xf0\xcb\xb2\x8c\x2e\xd0\x75\
\x63\x59\xd6\x36\xc2\xcd\xef\xf8\xc4\xca\x30\x8c\x75\xdf\x0e\x43\
\x03\xe6\xba\x2e\xfb\x6a\x67\xdb\xf6\xfe\x7b\x6b\x2e\x59\x55\xd5\
\x2d\x80\xa2\x08\x0a\x6e\x50\xd7\x92\x43\x7f\xd4\xdf\xe0\xc0\x18\
\x3b\x1e\x1b\x3a\xd0\xe0\xf9\x68\xe1\x49\x82\x4e\xc6\x08\xde\xa7\
\x27\x93\xce\xcf\x54\x3a\x2a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\
\x42\x60\x82\
\x00\x00\x02\xb4\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\
\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\
\x00\x00\x09\x70\x48\x59\x73\x00\x00\x00\xdd\x00\x00\x00\xdd\x01\
\x70\x53\xa2\x07\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\
\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\
\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\xd8\x50\x4c\x54\
\x45\xff\xff\xff\xff\xff\x00\xff\xbf\x80\xff\xdb\x6d\xff\xdf\x80\
\xff\xd1\x74\xff\xd8\x76\xff\xd9\x73\xff\xd5\x75\xff\xd5\x77\xff\
\xd7\x78\xff\xd7\x79\xff\xd5\x79\xfa\xd5\x75\xfa\xd5\x78\xfa\xd6\
\x76\xfb\xd7\x79\xfb\xd3\x78\xfb\xd5\x78\xed\xc4\x6f\xed\xc5\x6d\
\xfc\xd6\x79\xeb\xc2\x6d\xec\xc6\x70\xfc\xd5\x76\xfc\xd6\x78\xfd\
\xd6\x77\xfd\xd4\x77\xfd\xd6\x77\xfd\xd5\x76\xfb\xd5\x78\xfb\xd4\
\x77\xfc\xd5\x78\xfc\xd5\x77\xfc\xd5\x77\xfc\xd5\x77\xfc\xd5\x78\
\xfc\xd5\x77\xfc\xd5\x77\xfb\xd5\x77\xfc\xd5\x77\xed\xc5\x6f\xfc\
\xd5\x77\xed\xc6\x6f\xfc\xd5\x77\xfc\xd5\x77\xfc\xd5\x77\xfc\xd5\
\x77\xfc\xd5\x77\xfc\xd5\x77\xf2\xcc\x72\xfc\xd5\x77\xf3\xcc\x72\
\xf3\xcc\x73\xfc\xd5\x77\xf3\xcd\x72\xfc\xd5\x77\xf3\xcb\x72\xfc\
\xd5\x77\xfc\xd5\x77\xfc\xd5\x77\xfc\xd5\x77\xfc\xd5\x77\xea\xc3\
\x6e\xf2\xcb\x72\xf3\xcc\x72\xf4\xcd\x73\xf9\xd2\x76\xfa\xd3\x76\
\xfb\xd4\x76\xfb\xd4\x77\xfc\xd5\x77\xec\x0a\x60\x8f\x00\x00\x00\
\x3f\x74\x52\x4e\x53\x00\x01\x04\x07\x08\x0b\x0d\x14\x18\x1e\x20\
\x26\x2a\x30\x31\x38\x39\x40\x42\x45\x46\x4a\x4b\x50\x5b\x64\x69\
\x6b\x7c\x7f\x80\x89\x93\x9f\xaa\xb0\xb1\xbd\xc7\xd6\xdb\xdd\xdd\
\xdf\xe4\xe5\xe7\xe8\xec\xee\xf0\xf0\xf1\xf2\xf2\xf3\xf4\xf5\xf5\
\xf6\xf9\xfa\xfc\x92\x18\x52\x21\x00\x00\x01\x03\x49\x44\x41\x54\
\x38\x4f\x8d\xce\xd7\x5a\xc2\x40\x14\x45\xe1\x03\x58\x00\x05\x44\
\x90\x26\x52\x34\x88\x88\x28\x22\xc5\x12\x08\x84\xc9\xac\xf7\x7f\
\x23\x2f\xb0\xf0\x4d\x12\xc7\x7d\xbb\xfe\x8b\x2d\xb2\xb7\x7c\xd3\
\x19\x8d\x9c\x66\x5e\xa2\x97\x6a\xaf\x00\x60\xd5\x4e\x45\xf5\x4c\
\x9f\x9f\xf5\x33\xe1\x9e\xe8\x01\xa8\xc9\x44\x01\xf4\x12\x21\xd0\
\x00\x08\x06\xe5\xf2\x20\x00\x68\x98\x3d\x39\x07\x98\x96\x44\x4a\
\x53\x80\x79\xd2\x00\x39\x00\x16\x15\x91\xca\x02\x80\x9c\x01\xea\
\x00\x04\xc3\x6a\x75\x18\x00\x50\x37\x40\x67\x77\x3f\x98\xcd\x76\
\x9d\x8e\x01\x5a\x18\x6b\x19\xa0\x06\xa0\x95\x52\x4a\x29\x0d\x50\
\x33\x40\xda\x05\xd6\x9e\xe7\x79\x9e\xb7\x06\xdc\xb4\x01\xa4\x0b\
\xa0\xb5\xd6\x5a\x03\x74\xcd\x2e\xd9\xf1\xfe\x83\x71\x36\x04\xa4\
\xb8\xfc\xed\xcb\x62\xb8\x8b\x9c\xdd\x7f\xf7\xbb\x42\x54\x17\x39\
\x7a\x65\xbb\x05\x9e\x0f\xa3\xbb\xc8\x0b\x1b\x1f\x78\x8a\xeb\xff\
\x06\xb7\x16\xf0\x71\x6a\x01\x97\xb1\xfd\x0b\x5c\xd8\xc0\xe3\xb1\
\x05\x70\x6d\x03\x57\x16\xf0\x70\x60\x01\xee\x89\x05\xe0\x58\xc0\
\xfb\x79\x2c\xb8\x61\xe3\xff\xd5\x45\x6a\x6f\xbe\xd9\x3f\x01\xf5\
\xde\x54\x7e\xca\xf7\x18\x1d\x00\x00\x00\x00\x49\x45\x4e\x44\xae\
\x42\x60\x82\
\x00\x00\x03\x2c\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\
\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\
\x00\x00\x09\x70\x48\x59\x73\x00\x00\x00\xe7\x00\x00\x00\xe7\x01\
\xf0\x1b\x58\xb5\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\
\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\
\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\xf0\x50\x4c\x54\
\x45\xff\xff\xff\x6d\x6d\x92\x60\x80\x80\x60\x75\x8a\x66\x7a\x8f\
\x66\x77\x88\x65\x7a\x8c\x64\x7a\x89\x64\x7a\x8a\x65\x79\x8a\x64\
\x7a\x89\x63\x79\x8a\x63\x78\x8a\x64\x79\x8a\x64\x79\x8a\x64\x79\
\x8b\x64\x79\x8a\x64\x79\x8a\x65\x7a\x8a\x66\x7b\x8c\x68\x7d\x8d\
\x74\x87\x96\x79\x8b\x9a\x7f\x91\x9e\x85\x95\xa3\x85\x96\xa3\x87\
\x97\xa5\x90\x9f\xab\x91\x9f\xab\x92\xa0\xac\x93\xa0\xab\x98\xa5\
\xb1\x98\xa6\xb2\xa0\xab\xb5\xa1\xae\xb8\xa3\xaf\xb9\xa5\xb1\xbb\
\xb4\xb5\xbc\xb4\xbe\xc6\xb5\xbf\xc7\xb9\xc2\xca\xbb\xc4\xcc\xbd\
\xc6\xcd\xbe\xc7\xce\xca\xd2\xd7\xcb\xd3\xd8\xcd\xd4\xd9\xd8\xdd\
\xe2\xd9\xde\xe2\xdb\xe0\xe4\xdc\xe1\xe5\xdd\xe2\xe5\xdf\xe4\xe7\
\xe0\xe5\xe8\xe6\xea\xed\xe7\xeb\xed\xe9\xec\xee\xea\xdd\xdd\xeb\
\xe9\xea\xeb\xee\xf0\xec\xef\xf1\xee\x9b\x91\xee\xf0\xf2\xef\xf2\
\xf4\xf0\xf2\xf4\xf2\xb1\xa9\xf3\xf4\xf6\xf4\xf6\xf7\xf5\xf7\xf8\
\xf8\xf9\xfa\xf9\xfa\xfb\xfb\xfc\xfc\xfc\xeb\xe9\xfd\xfe\xfe\xfe\
\xf6\xf6\xfe\xf8\xf7\xfe\xfe\xfe\xfe\xff\xff\xff\xfe\xfe\xff\xff\
\xff\x7d\x02\xb4\x15\x00\x00\x00\x11\x74\x52\x4e\x53\x00\x07\x08\
\x18\x19\x2d\x49\x84\x97\x98\xc1\xc8\xda\xe3\xf2\xf3\xf5\xd5\xa8\
\x31\x5b\x00\x00\x01\x91\x49\x44\x41\x54\x38\xcb\x85\x53\xe9\x5a\
\x82\x50\x10\xbd\xee\x82\x0a\x8e\x9a\x6b\x8b\x95\xa9\xa4\x52\x02\
\x2e\xe5\x46\x29\x9a\x85\xdd\xf7\x7f\x9b\xe6\x82\x20\x20\x7e\xcd\
\x0f\xc4\x39\x87\x59\xcf\x10\xe2\x5a\x24\xc9\xf1\x59\x51\xcc\xf2\
\x5c\x32\x42\xce\x2d\x9e\x16\xc0\x35\x21\x1d\x0f\xc0\xd1\x54\xde\
\x86\x4a\x25\xfb\x37\x9f\x8a\x7a\xf1\x58\x06\x7d\x85\xe6\x60\x34\
\x9e\xcd\x27\x5a\xbf\x59\xc0\xbf\x99\xd8\x09\x4f\xe4\xd0\x51\xd7\
\x96\x06\xa5\xb2\x4c\xe9\x7e\xa3\xd6\xd1\x91\x4b\xb8\xdf\x23\x5e\
\xe8\x8d\xb7\x14\x4d\x51\xd8\x93\xea\x12\x06\xc9\x1d\x63\x44\x31\
\x7e\x45\x5b\x99\xd4\x6b\x3b\xa5\x82\x59\xec\x3a\x52\xf8\xbd\x66\
\x1c\x81\xe9\xd4\xa1\x0c\x31\x46\xca\xea\x0f\xeb\xef\xad\x1c\xb7\
\x24\x39\x6f\x66\x07\x7b\x61\xdd\xa6\xb1\xbe\xb1\x79\x4e\xa0\xeb\
\x1a\x40\x1a\xe7\x27\x60\x82\x2d\x0d\x21\xb0\x24\x42\x84\x24\x01\
\x9a\x4b\x1a\x4a\x38\x34\x00\x92\x84\x03\x18\x18\xe1\x04\xda\x05\
\xe0\x08\x0f\x30\x72\x3d\xbf\xdf\x3e\x82\x0a\xc0\x93\x2c\xc0\xf8\
\x44\x58\x3c\x75\x3c\x04\x1d\x20\x4b\x44\x28\xcd\x64\x36\xbe\xe7\
\x47\xb4\xfb\xdb\x1b\x77\x10\x8a\x6c\x16\x41\x64\x84\xf9\x89\xf0\
\x70\x77\xfd\x16\x20\x60\x8a\x89\x27\xea\xe7\xfb\xe2\xcb\x9f\x02\
\x8b\xd4\x7c\x5b\xf8\x39\x31\xac\x22\xb1\xcd\xfe\xfe\x02\xa3\xcd\
\xda\x64\x83\xda\xd0\x70\x46\x95\x0d\x8a\x8d\x5a\xa5\xa1\x8c\x57\
\x6b\xd4\xd6\xb2\xf4\x20\xe3\x03\x1f\x46\xd9\x5a\x96\xb5\x6e\x69\
\x47\xcf\xad\x75\x5c\xb7\x25\x18\xe5\x1c\x7f\x71\x04\x63\x4b\x6e\
\x68\x06\xf1\x2b\x57\x72\xb6\x68\x3b\x6b\xea\x11\xad\xd1\xf2\x88\
\xf6\x28\xfb\xda\xf0\x40\x6d\xd9\x63\xfd\x65\x9f\xec\x9d\xc3\x69\
\x74\x55\xdd\x34\x75\xb5\x5d\x0d\x1e\x8e\xe7\xf4\x8a\xc5\xd0\xd3\
\xfb\xff\x78\x2f\x9f\xff\x1f\x2f\x83\xa9\x23\xd5\xf0\x7d\x09\x00\
\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x04\x0a\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x03\x00\x00\x00\x44\xa4\x8a\xc6\
\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\
\x00\x00\x09\x70\x48\x59\x73\x00\x00\x08\x5b\x00\x00\x08\x5b\x01\
\xe8\x9f\x75\xd0\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\
\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\
\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x83\x50\x4c\x54\
\x45\xff\xff\xff\x55\x55\xaa\x40\x80\x80\x66\x66\x99\xff\xff\xff\
\x49\x6d\x92\xdb\xdb\xff\x55\x55\x8e\xe6\xe6\xe6\xea\xea\xea\x51\
\x5d\x80\x59\x64\x85\x55\x60\x80\x52\x5c\x85\x55\x5e\x84\x58\x61\
\x84\x9e\xa7\xb9\x80\x88\x99\x52\x63\x84\x58\x60\x80\x57\x63\x80\
\x55\x60\x81\x54\x5f\x80\x54\x5e\x81\xe7\xee\xee\xe7\xea\xee\xe8\
\xeb\xee\xe8\xeb\xeb\x56\x5f\x80\xe6\xed\xed\x56\x61\x80\xe8\xec\
\xee\x56\x60\x81\x54\x60\x80\x55\x60\x80\xe6\xec\xed\x55\x5f\x80\
\xe7\xec\xee\x56\x60\x80\x56\x60\x80\x55\x5f\x80\xe4\xea\xeb\xe8\
\xec\xed\x55\x60\x80\x78\x82\x9a\x78\x82\x9b\x84\x8e\xa3\x86\x8f\
\xa4\x74\x7e\x97\x9a\xa3\xb3\x77\x80\x99\x78\x81\x99\x55\x60\x80\
\x9a\xa2\xb3\x55\x60\x80\x74\x7d\x97\xa3\xaa\xba\xa4\xac\xbb\x6b\
\x76\x91\x76\x80\x99\xa3\xac\xba\xa7\xaf\xbe\x6b\x75\x90\xe7\xec\
\xed\x67\x71\x8e\x55\x60\x80\x55\x5f\x80\x63\x6f\x8b\x62\x6c\x89\
\xb6\xbd\xc9\x55\x60\x80\x63\x6c\x8a\xb9\xc0\xcb\xba\xc0\xca\xba\
\xc2\xcc\x5e\x68\x86\x5f\x6a\x87\x5d\x67\x86\x5e\x69\x87\x55\x60\
\x80\x5d\x67\x86\x55\x61\x80\x5b\x65\x84\x5d\x68\x87\xc5\xcc\xd4\
\xc6\xcd\xd4\x55\x60\x80\xe7\xec\xed\xc8\xcf\xd6\x55\x5f\x80\xc9\
\xcf\xd6\xcb\xd0\xd7\xe7\xec\xec\x55\x60\x80\x55\x60\x80\xe7\xeb\
\xed\xce\xd4\xda\xcf\xd6\xdc\x55\x60\x80\x55\x60\x80\xd2\xd8\xdd\
\x55\x60\x80\xd6\xda\xe0\x55\x60\x80\x55\x60\x80\xd9\xde\xe3\x55\
\x60\x80\x55\x60\x80\xe8\xec\xed\x55\x60\x80\x56\x60\x80\x55\x5f\
\x80\xe7\xec\xed\x55\x60\x80\x56\x60\x80\xe1\xe6\xe9\xe7\xec\xed\
\x55\x60\x80\x55\x60\x80\x55\x60\x80\x55\x61\x80\x55\x60\x80\xe6\
\xeb\xec\xe6\xeb\xed\x55\x60\x80\x55\x60\x81\xe6\xeb\xed\x55\x60\
\x80\xe7\xec\xed\x3f\x91\xdf\xa4\x00\x00\x00\x7f\x74\x52\x4e\x53\
\x00\x03\x04\x05\x05\x07\x07\x09\x0a\x0c\x16\x17\x18\x19\x1b\x1d\
\x1d\x1e\x1f\x20\x2c\x45\x46\x49\x49\x4a\x4d\x4e\x6e\x71\x74\x78\
\x7d\x82\x90\x91\x93\x93\x95\x98\xb3\xb5\xb9\xbd\xbd\xbd\xbf\xbf\
\xc0\xc0\xc1\xc1\xc2\xc3\xc4\xc4\xc4\xc4\xc5\xc5\xc5\xc5\xc6\xc7\
\xc8\xca\xcb\xcb\xce\xce\xcf\xcf\xcf\xd0\xd0\xd1\xd1\xd4\xd4\xd5\
\xd5\xd6\xd6\xd6\xd7\xd7\xd8\xd8\xda\xdb\xdb\xdb\xdc\xdd\xde\xde\
\xdf\xdf\xe1\xe2\xe4\xe6\xe6\xe8\xe9\xea\xed\xee\xef\xf1\xf1\xf3\
\xf3\xf4\xf4\xf4\xf4\xf5\xf6\xf7\xfb\xfd\xfd\xfd\xfe\xfe\xfe\xe0\
\xf4\x89\xca\x00\x00\x01\x6e\x49\x44\x41\x54\x18\x19\x65\xc1\x09\
\x43\x4c\x61\x14\x06\xe0\x77\x4c\x89\x5c\x5b\x1a\xd9\xab\x4b\x0d\
\x06\xa1\xc5\x12\x5a\xc8\x92\x29\xfb\x90\xad\xe4\x96\x65\xd2\x14\
\x91\xed\xf6\x9e\x9f\x5e\xf3\xdd\xf3\x9d\xee\x34\xcf\x83\x4d\x8d\
\xb9\xb0\xaf\x54\x5e\x9d\x2a\xe4\xdb\xb2\xa8\xd7\x1c\x56\x68\xca\
\xdd\x01\x6a\x65\x3b\x97\x59\xa3\xd2\xd1\x84\x94\x60\x80\x75\x46\
\x02\x98\xd6\x39\x7a\x8b\x8b\xf4\x66\x5b\xa1\x82\x59\x3a\xff\x2f\
\x5e\x9b\x59\x5b\x9b\xb9\x71\x85\x89\xb9\x00\x4e\xd3\x08\x9d\xf8\
\x92\xa8\xfe\x98\xce\x40\x16\x55\x1d\x4c\xf4\x8a\xe9\x65\xa2\x13\
\x1b\x82\x0a\x13\xe3\x62\xc6\x99\x58\x6e\x06\xd0\x4d\x15\x89\x89\
\xa8\x42\x20\x5b\xa6\x8a\xc4\x44\x54\x95\x46\xb4\xd1\x8b\xc4\x44\
\xf4\x72\xc8\xd3\x9b\x17\x33\x4f\x2f\x44\x81\xea\xa1\xa4\x3c\xa3\
\xea\xc3\x14\xd5\x79\x49\x19\xa4\x2a\x61\x95\xea\x9c\xa4\x0c\x52\
\x95\xf1\x95\xea\xe9\x3f\xd9\x74\x8f\xea\x17\x1e\xd1\xbb\x29\xe6\
\x42\x4c\xf5\x04\x05\x7a\x45\xf1\x5e\xc7\xf4\x4e\x23\x4f\xf3\x4a\
\xd4\x2d\x9a\x10\x39\x9a\xeb\x92\x78\xf3\x87\xe6\x20\x32\x9f\x69\
\x9e\x8b\x73\x9b\xe6\x53\x06\x38\x45\xf3\x40\x9c\x49\x9a\x10\xc0\
\xee\x6f\xf4\x5e\x88\x73\x87\xde\xcf\x16\x6c\x38\x46\x35\xf1\x57\
\x9c\xab\x31\xd5\x09\x54\x65\x46\x59\xf5\xbd\xe7\x87\xa8\xfb\x45\
\x3a\x77\xb7\xc1\xd9\x55\x22\x7f\x5f\xfe\x22\x29\x63\x45\x92\xef\
\xf7\x42\xed\x79\x37\xfc\x41\xb6\x18\x7b\xfc\xf1\x00\xcc\xbe\xb3\
\x52\xe7\xcc\x7e\xa4\x1d\x7d\x2b\x35\x5e\x1e\xc6\x16\xdb\xdb\x97\
\xc4\x2c\x1c\x6f\x40\xbd\x9d\x47\xba\x86\xa6\x57\x56\xa6\x87\x4e\
\x1e\xda\x01\xb3\x0e\x29\x11\x78\xcc\x11\x55\x71\x85\x00\x00\x00\
\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x02\xb6\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x0e\x00\x00\x0b\x0e\
\x01\x40\xbe\xe1\x41\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\
\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\
\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x33\x49\x44\
\x41\x54\x58\x85\xed\xd7\xdb\x8b\x4d\x51\x1c\x07\xf0\xcf\x3a\x33\
\x19\x1a\x73\x89\xc4\x0c\x43\x9a\x1a\x0f\x83\x44\xae\x29\x4a\x22\
\x92\xc4\xbc\xa9\x89\xe4\x92\x9a\x27\xa5\x44\xfe\x01\x79\xf3\xe0\
\xc1\xa5\x5c\x1e\x14\x4f\x3c\x08\xa1\x30\x72\x09\x45\x29\x93\x48\
\x9e\x64\xc4\x18\x4f\xb4\x3c\xec\x3d\x9a\xc6\x39\xce\x3e\x33\x73\
\x3a\x1e\x66\xd5\xaa\xbd\xd6\xef\xfb\x5b\xdf\xef\x5e\xbf\xb5\xbe\
\xbb\x1d\x62\x8c\x2a\xd9\x72\x15\x65\x1f\x13\xf0\x3f\x08\xa8\x1e\
\x49\x72\x08\x61\x0d\xd6\xa2\x1d\x4d\xf8\x88\x57\x38\x1d\x63\xec\
\xc9\xb4\x48\x8c\xb1\xe4\x8e\x85\xb8\x89\x53\x58\x87\x19\xa8\xc2\
\x6c\x74\xe0\x16\x2e\xa2\xbe\xe8\x5a\xc3\x20\x5f\x89\x07\x68\x2f\
\x82\xdb\x8a\xa7\x98\x39\x6a\x02\x30\x0f\xcf\x31\x2d\x23\x7e\x05\
\xee\xa0\x6a\xb4\x04\x5c\xc1\x82\x12\xf0\x0d\x38\x8f\x1e\x3c\xc4\
\x71\xcc\x1d\x8c\xc9\x7c\x0b\x42\x08\x73\xd0\x88\xaa\x10\x42\x5b\
\x08\xa1\xa6\x08\x7e\x03\x6e\xe0\x0d\x8e\xe1\x02\x5a\xd1\x1d\x42\
\xb8\x18\x42\xc8\x65\x3a\x84\xa8\xc5\x11\xbc\xc3\x13\x9c\xc0\x39\
\x74\xe3\x1a\xd6\xe7\xc9\xd9\x84\x4b\x68\xc8\x13\xab\xc7\x33\xdc\
\x2b\x5a\x02\xac\xc2\x0b\xec\xcb\x57\x47\xb4\xe1\x34\xce\x62\x7c\
\x09\xa5\xc9\xe1\x33\x3a\x8b\x1d\xa0\x47\x98\x9c\x61\xc1\xdd\xb8\
\x8e\x5c\x09\x22\xb6\xa3\xa7\x50\xb0\x3e\x7d\xf3\x96\x12\x16\x3c\
\x8a\xc3\xa8\xcd\x88\x1f\x87\xfe\x42\xc1\x83\xd8\x5d\x02\x79\x3b\
\xce\xa4\xdb\xfa\x1d\xfd\x78\x8b\x35\x45\xf2\x7e\x0c\x9d\x68\xc2\
\x16\x89\x9d\x4e\xc8\x48\xbe\x0b\xf7\xb1\x64\xe0\x9c\x48\x2c\x7e\
\x0f\xfa\x24\xb6\x9c\x2f\xaf\x05\x5f\x06\x06\x75\x12\x5b\xbd\x81\
\x43\x58\x94\x91\x3c\xe0\x00\x6a\x0a\xc4\x27\xe2\x13\x76\xe6\x89\
\x9d\x4c\x85\xab\xc2\x5d\x74\x64\xdd\xf2\x52\x3a\x96\xa2\x6f\xc8\
\xdc\xfc\xb4\x4c\xd3\xa1\x0b\x87\xcb\x41\x3e\x88\xf0\x03\x56\xa4\
\xcf\x5d\x29\xf9\xde\x74\xec\x76\x3e\xc3\x18\x65\x01\xdd\xe8\xc5\
\x37\xbc\x37\xc8\x8e\x73\x68\x8c\x31\x7e\x55\xde\x16\x71\x15\x93\
\x62\x8c\xb3\x62\x8c\x2f\x07\x02\xd5\xf8\x15\x42\xa8\x8e\x31\xfe\
\x2c\xa3\x80\x56\xc9\x41\xfc\x8b\x23\x27\xf9\xbc\xae\x2e\x17\x73\
\x08\xa1\x53\xe2\x90\xaf\x0b\x61\x5a\x24\x96\x5b\x57\x86\xda\x2f\
\x97\x18\xd3\xb2\x82\x98\x14\xb8\x11\x8f\xb1\x0d\x53\x47\x48\x3a\
\x0e\x9b\x71\x39\x25\xdf\xf1\x2f\x7c\x18\xb8\x0a\x21\x84\x29\xd8\
\x8f\xc5\x68\x96\x98\xcc\x70\x5a\xb3\xc4\x01\x9f\x60\x5f\x8c\xb1\
\xf7\x5f\xe0\x3f\x02\x2a\xd5\x2a\xfe\x5f\x30\x26\xa0\xe2\x02\x7e\
\x03\xb7\x39\xbc\xed\x20\x33\xf3\x9f\x00\x00\x00\x00\x49\x45\x4e\
\x44\xae\x42\x60\x82\
"
qt_resource_name = b"\
\x00\x05\
\x00\x6f\xa6\x53\
\x00\x69\
\x00\x63\x00\x6f\x00\x6e\x00\x73\
\x00\x05\
\x00\x4f\xa6\x53\
\x00\x49\
\x00\x63\x00\x6f\x00\x6e\x00\x73\
\x00\x0f\
\x03\xec\xfb\x67\
\x00\x74\
\x00\x68\x00\x65\x00\x72\x00\x6d\x00\x6f\x00\x6d\x00\x65\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0c\
\x07\xb5\x0f\xc7\
\x00\x63\
\x00\x61\x00\x6c\x00\x65\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0c\
\x0c\xa8\x9d\xc7\
\x00\x64\
\x00\x6f\x00\x6f\x00\x72\x00\x2d\x00\x6b\x00\x65\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x09\
\x05\x9e\x83\x27\
\x00\x63\
\x00\x6c\x00\x6f\x00\x63\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x08\
\x09\xc5\x58\xc7\
\x00\x75\
\x00\x73\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0a\
\x0b\xb9\x11\x87\
\x00\x63\
\x00\x6c\x00\x6f\x00\x75\x00\x64\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\
"
qt_resource_struct = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x02\
\x00\x00\x00\x10\x00\x02\x00\x00\x00\x06\x00\x00\x00\x03\
\x00\x00\x00\x20\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x00\x80\x00\x00\x00\x00\x00\x01\x00\x00\x09\x15\
\x00\x00\x00\x44\x00\x00\x00\x00\x00\x01\x00\x00\x04\x35\
\x00\x00\x00\x98\x00\x00\x00\x00\x00\x01\x00\x00\x0c\x45\
\x00\x00\x00\xae\x00\x00\x00\x00\x00\x01\x00\x00\x10\x53\
\x00\x00\x00\x62\x00\x00\x00\x00\x00\x01\x00\x00\x06\x5d\
"
def qInitResources():
QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data)
def qCleanupResources():
QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data)
qInitResources()
| kunz07/fyp2017 | GUI/lockscreen_rc.py | Python | mit | 22,062 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>coqeal-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.10.0 / coqeal-theory - 0.9.1</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
coqeal-theory
<small>
0.9.1
<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: "Cyril Cohen <cyril.cohen@inria.fr>"
homepage: "https://github.com/coq-community/coqeal"
dev-repo: "git+https://github.com/coq-community/coqeal.git"
bug-reports: "https://github.com/coq-community/coqeal/issues"
license: "MIT"
synopsis: "The theory needed by the CoqEAL refinement framework library"
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" {>= "8.4pl4" & < "8.5~"}
"coq-mathcomp-ssreflect" {>= "1.6"}
"coq-mathcomp-algebra" {>= "1.6"}
]
tags: [
"category:Mathematics/Algebra"
"keyword:effective algebra"
"keyword:elementary divisor rings"
"keyword:Smith normal form"
"keyword:mathematical components"
"keyword:Bareiss"
"logpath:CoqEAL_theory"
]
authors: [
"Guillaume Cano"
"Cyril Cohen"
"Maxime Dénès"
"Anders Mörtberg"
"Vincent Siles"
]
url {
src: "https://github.com/coq-community/coqeal/releases/download/0.9.1/CoqEAL_theory.0.9.1.tgz"
checksum: "md5=3b85194a65e80a763cfc2f067092efc8"
}
</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-coqeal-theory.0.9.1 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-coqeal-theory -> 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-coqeal-theory.0.9.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>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.06.1-2.0.5/released/8.10.0/coqeal-theory/0.9.1.html | HTML | mit | 6,895 |
require 'spec_helper'
require 'i18n/tasks/scanners/files/file_reader'
RSpec.describe 'FileReader' do
describe '#read_file' do
around do |ex|
TestCodebase.setup('test.txt' => 'test')
TestCodebase.in_test_app_dir { ex.call }
TestCodebase.teardown
end
it 'reads the file' do
expect(I18n::Tasks::Scanners::Files::FileReader.new.read_file('test.txt')).to eq('test')
end
end
end
| 2947721120/i18n-tasks | spec/scanners/files/file_reader_spec.rb | Ruby | mit | 418 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace LordJZ.WinAPI.Native
{
[StructLayout(LayoutKind.Explicit)]
internal struct IMAGE_NT_HEADERS
{
[FieldOffset(0)]
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)]
public char[] Signature;
[FieldOffset(4)]
public IMAGE_FILE_HEADER FileHeader;
[FieldOffset(24)]
public IMAGE_OPTIONAL_HEADER32 OptionalHeader32;
[FieldOffset(24)]
public IMAGE_OPTIONAL_HEADER64 OptionalHeader64;
public bool Is64
{
get
{
switch (OptionalHeader32.Magic)
{
case MagicType.IMAGE_NT_OPTIONAL_HDR32_MAGIC:
return false;
case MagicType.IMAGE_NT_OPTIONAL_HDR64_MAGIC:
return true;
default:
throw new InvalidOperationException();
}
}
}
public bool IsValid
{
get
{
return Signature[0] == 'P' && Signature[1] == 'E' && Signature[2] == 0 && Signature[3] == 0 &&
FileHeader.SizeOfOptionalHeader >= 200 &&
(OptionalHeader32.Magic == MagicType.IMAGE_NT_OPTIONAL_HDR32_MAGIC ||
OptionalHeader32.Magic == MagicType.IMAGE_NT_OPTIONAL_HDR64_MAGIC);
}
}
}
}
| LordJZ/LordJZ | LordJZ.WinAPI/Native/IMAGE_NT_HEADERS.cs | C# | mit | 1,567 |
require File.expand_path('../boot', __FILE__)
# Pick the frameworks you want:
require "active_record/railtie"
require "action_controller/railtie"
require "action_mailer/railtie"
require "active_resource/railtie"
require "sprockets/railtie"
# require "rails/test_unit/railtie"
if defined?(Bundler)
# If you precompile assets before deploying to production, use this line
Bundler.require(*Rails.groups(:assets => %w(development test)))
# If you want your assets lazily compiled in production, use this line
# Bundler.require(:default, :assets, Rails.env)
end
module Catalog
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
# Custom directories with classes and modules you want to be autoloadable.
# config.autoload_paths += %W(#{config.root}/extras)
# Only load the plugins named here, in the order given (default is alphabetical).
# :all can be used as a placeholder for all plugins not explicitly named.
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
# Activate observers that should always be running.
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
# config.time_zone = 'Central Time (US & Canada)'
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
config.i18n.default_locale = :es
# Configure the default encoding used in templates for Ruby 1.9.
config.encoding = "utf-8"
# Configure sensitive parameters which will be filtered from the log file.
config.filter_parameters += [:password]
# Enable escaping HTML in JSON.
config.active_support.escape_html_entities_in_json = true
# Use SQL instead of Active Record's schema dumper when creating the database.
# This is necessary if your schema can't be completely dumped by the schema dumper,
# like if you have constraints or database-specific column types
# config.active_record.schema_format = :sql
# Enforce whitelist mode for mass assignment.
# This will create an empty whitelist of attributes available for mass-assignment for all models
# in your app. As such, your models will need to explicitly whitelist or blacklist accessible
# parameters by using an attr_accessible or attr_protected declaration.
config.active_record.whitelist_attributes = true
# Enable the asset pipeline
config.assets.enabled = true
# Version of your assets, change this if you want to expire all your assets
config.assets.version = '1.0'
end
end
| luisrubioc/catalog | config/application.rb | Ruby | mit | 3,020 |
<!-- Insert into upload.html by Ajax call -->
<div class="row">
<div class="panel panel-info">
<div class="panel-heading">
<h2 class="panel-title h2">Please match file fields to the database</h2>
</div>
<div class="panel-body">
<div class="checkbox">
<label for="import_first_row">
{{ selector_form.import_first_row }}<b>Do not import first row (because those values are headers)</b>
</label>
</div>
<table class="table table-condensed">
<tr class="collapse errorlist" id="import-warnings">
<td colspan="2">
ERROR: The following fields must be selected prior to import:
<ul>
<li>
Name
</li>
<li>
Company
</li>
<li>
Either email or phone
</li>
</ul>
</td>
</tr>
{% for cell in header_cells %}
<tr class="header-match-row" cell-order-num="{{ cell.cell_order }}">
<td class="col-sm-6 pull-left text-center header-content">
{{ cell.content }}
</td>
<td class="col-sm-6 pull-right">
{{ selector_form.field_option }}
<span class="errorlist field-error" id="field-error-{{ cell.cell_order }}"></span>
</td>
</tr>
{% endfor %}
</table>
</div>
</div>
</div>
<div class="row">
</div>
<div id="row-action-buttons" class="row spacer">
<button class="btn btn-success col-sm-6 pull-left" id="btn-start-input">Input File to Database</button>
<button class="btn btn-warning col-sm-6 pull-right" id="delete-step-1">Delete This File</button>
</div>
<div class="row">
<div class="panel panel-info">
<div class="panel-heading">
<h2 class="panel-title h2">
First ten records
<div id="btn-toggle-records" class="pull-right glyphicon glyphicon-chevron-down glyph-button"></div>
</h2>
</div>
<div id="ten-record-detail" class="panel-body collapse">
<table class="table table-condensed">
<thead>
<tr>
{% for cell in header_cells %}
<th>
{{ cell.content }}
</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in first_ten_rows %}
<tr>
{% for cell in row.uploadedcell_set.all %}
<td>
{{ cell.content }}
</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
| asterix135/infonex_crm | marketing/templates/marketing/upload_addins/field_matcher.html | HTML | mit | 2,624 |
class EchoController < ApplicationController
before_filter :deep_snake_case_params!
def echo
render json: params
end
end
| practicefusion/snake_case_params | spec/dummy/app/controllers/echo_controller.rb | Ruby | mit | 132 |
/**
* Interface GameController
* @author Patricio Ferreira <3dimentionar@gmail.com>
* Copyright (c) 2017 nahuelio. All rights reserved.
**/
#ifndef GAME_GAMECONTROLLER_H
#define GAME_GAMECONTROLLER_H
#include "Controller.h"
#include "../game/headers/ShaderController.h"
namespace game_controller {
class GameController : public Controller {
static GameController *_instance;
public:
GameController();
ShaderController *shaderController;
virtual GameController *initialize();
virtual GameController *bindings();
virtual GameController *loadShaders();
virtual GameController *start();
virtual Controller *run();
static GameController *instance();
};
}
#endif //GAME_GAMECONTROLLER_H
| kuakman/game | src/com/nahuelio/game/controller/headers/GameController.h | C | mit | 816 |
{% extends 'layout.html' %}
{% block page_header %}
<h1 class="page-header">
Module de recherche <small>Générateur</small>
</h1>
{% endblock %}
{% block page_alert %}
<div class="row">
<div class="col-lg-12">
<div class="alert alert-info alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<i class="fa fa-info-circle"></i> <strong> Multilangue ? </strong>
</div>
</div>
</div>
<!-- /.row -->
{% endblock %}
{% block page_content %}
<div class="col-lg-4 col-md-6">
<div class="panel panel-primary">
<div class="panel-heading">
<div class="row">
<div class="col-xs-3">
<i class="fa fa-pencil-square-o fa-5x"></i>
</div>
<div class="col-xs-9 text-right">
<div class="huge">fr</div>
<div>Main</div>
</div>
</div>
</div>
<a ng-click="generate('main')">
<div class="panel-footer">
<span class="pull-left">Générer</span>
<span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span>
<div class="clearfix"></div>
</div>
</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="panel panel-green">
<div class="panel-heading">
<div class="row">
<div class="col-xs-3">
<i class="fa fa-briefcase fa-5x"></i>
</div>
<div class="col-xs-9 text-right">
<div class="huge">fr</div>
<div>Curriculum vitae</div>
</div>
</div>
</div>
<a ng-click="generate('professional')">
<div class="panel-footer">
<span class="pull-left">Générer</span>
<span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span>
<div class="clearfix"></div>
</div>
</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="panel panel-yellow">
<div class="panel-heading">
<div class="row">
<div class="col-xs-3">
<i class="fa fa-group fa-5x"></i>
</div>
<div class="col-xs-9 text-right">
<div class="huge">fr</div>
<div>People</div>
</div>
</div>
</div>
<a ng-click="generate('people')">
<div class="panel-footer">
<span class="pull-left">Générer</span>
<span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span>
<div class="clearfix"></div>
</div>
</a>
</div>
</div>
{% endblock %}
| iGitScor/portfolio | views/admin/engine.html | HTML | mit | 2,895 |
<!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 `append_translation` fn in crate `nalgebra`.">
<meta name="keywords" content="rust, rustlang, rust-lang, append_translation">
<title>nalgebra::append_translation - 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'>nalgebra</a></p><script>window.sidebarCurrent = {name: 'append_translation', ty: 'fn', 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 fn">
<h1 class='fqn'><span class='in-band'>Function <a href='index.html'>nalgebra</a>::<wbr><a class='fn' href=''>append_translation</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-109622' class='srclink' href='../src/nalgebra/lib.rs.html#375-377' title='goto source code'>[src]</a></span></h1>
<pre class='rust fn'>pub fn append_translation<V, M: <a class='trait' href='../nalgebra/trait.Translation.html' title='nalgebra::Translation'>Translation</a><V>>(m: &M, v: &V) -> M</pre><div class='docblock'><p>Applies the translation <code>v</code> to a copy of <code>m</code>.</p>
</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 = "nalgebra";
window.playgroundUrl = "";
</script>
<script src="../jquery.js"></script>
<script src="../main.js"></script>
<script async src="../search-index.js"></script>
</body>
</html> | mcanders/bevy | doc/nalgebra/fn.append_translation.html | HTML | mit | 3,838 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Login Page - Photon Admin Panel Theme</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<link rel="shortcut icon" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/favicon.ico"/>
<link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/iosicon.png"/>
<link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/css/css_compiled/photon-min.css?v1.1" media="all"/>
<link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/css/css_compiled/photon-min-part2.css?v1.1" media="all"/>
<link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/css/css_compiled/photon-responsive-min.css?v1.1" media="all"/>
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="css/css_compiled/ie-only-min.css?v1.1" />
<![endif]-->
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="css/css_compiled/ie8-only-min.css?v1.1" />
<script type="text/javascript" src="js/plugins/excanvas.js"></script>
<script type="text/javascript" src="js/plugins/html5shiv.js"></script>
<script type="text/javascript" src="js/plugins/respond.min.js"></script>
<script type="text/javascript" src="js/plugins/fixFontIcons.js"></script>
<![endif]-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/modernizr.custom.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.pnotify.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/less-1.3.1.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/xbreadcrumbs.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.maskedinput-1.3.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.autotab-1.1b.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/charCount.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.textareaCounter.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/elrte.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/elrte.en.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/select2.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery-picklist.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.validate.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/additional-methods.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.form.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.metadata.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.mockjax.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.uniform.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.tagsinput.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.rating.pack.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/farbtastic.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.timeentry.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.jstree.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/dataTables.bootstrap.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.mousewheel.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.mCustomScrollbar.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.flot.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.flot.stack.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.flot.pie.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.flot.resize.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/raphael.2.1.0.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/justgage.1.0.1.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.qrcode.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.clock.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.countdown.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.jqtweet.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/jquery.cookie.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/bootstrap-fileupload.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/prettify/prettify.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/bootstrapSwitch.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/plugins/mfupload.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/js/common.js"></script>
</head>
<body class="body-login">
<div class="nav-fixed-topright" style="visibility: hidden">
<ul class="nav nav-user-menu">
<li class="user-sub-menu-container">
<a href="javascript:;">
<i class="user-icon"></i><span class="nav-user-selection">Theme Options</span><i class="icon-menu-arrow"></i>
</a>
<ul class="nav user-sub-menu">
<li class="light">
<a href="javascript:;">
<i class='icon-photon stop'></i>Light Version
</a>
</li>
<li class="dark">
<a href="javascript:;">
<i class='icon-photon stop'></i>Dark Version
</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-photon mail"></i>
</a>
</li>
<li>
<a href="javascript:;">
<i class="icon-photon comment_alt2_stroke"></i>
<div class="notification-count">12</div>
</a>
</li>
</ul>
</div>
<script>
$(function(){
setTimeout(function(){
$('.nav-fixed-topright').removeAttr('style');
}, 300);
$(window).scroll(function(){
if($('.breadcrumb-container').length){
var scrollState = $(window).scrollTop();
if (scrollState > 0) $('.nav-fixed-topright').addClass('nav-released');
else $('.nav-fixed-topright').removeClass('nav-released')
}
});
$('.user-sub-menu-container').on('click', function(){
$(this).toggleClass('active-user-menu');
});
$('.user-sub-menu .light').on('click', function(){
if ($('body').is('.light-version')) return;
$('body').addClass('light-version');
setTimeout(function() {
$.cookie('themeColor', 'light', {
expires: 7,
path: '/'
});
}, 500);
});
$('.user-sub-menu .dark').on('click', function(){
if ($('body').is('.light-version')) {
$('body').removeClass('light-version');
$.cookie('themeColor', 'dark', {
expires: 7,
path: '/'
});
}
});
});
</script>
<div class="container-login">
<div class="form-centering-wrapper">
<div class="form-window-login">
<div class="form-window-login-logo">
<div class="login-logo">
<img src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/images/photon/login-logo@2x.png" alt="Photon UI"/>
</div>
<h2 class="login-title">Welcome to Photon UI!</h2>
<div class="login-member">Not a Member? <a href="mfupload.js.html#">Sign Up »</a>
<a href="mfupload.js.html#" class="btn btn-facebook"><i class="icon-fb"></i>Login with Facebook<i class="icon-fb-arrow"></i></a>
</div>
<div class="login-or">Or</div>
<div class="login-input-area">
<form method="POST" action="dashboard.php">
<span class="help-block">Login With Your Photon Account</span>
<input type="text" name="email" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<button type="submit" class="btn btn-large btn-success btn-login">Login</button>
</form>
<a href="mfupload.js.html#" class="forgot-pass">Forgot Your Password?</a>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1936460-27']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>
| user-tony/photon-rails | lib/assets/images/photon/plugins/elrte/js/plugins/js/plugins/prettify/js/js/plugins/mfupload.js.html | HTML | mit | 13,723 |
<?php
/**
* Color field
*/
class ColorField extends TextField {
public function __construct($name, $title = null, $value = '', $form = null){
parent::__construct($name, $title, $value, 6, $form);
}
public function Field($properties = array()) {
$this->addExtraClass('colorfield');
Requirements::javascript(COLORPICKER_DIR . '/javascript/colorpicker.js');
Requirements::javascript(COLORPICKER_DIR . '/javascript/colorfield.js');
Requirements::css(COLORPICKER_DIR . '/css/colorpicker.css');
$this->setAttribute('style',
'background-image: none; '.
'background-color:'. ($this->value ? '#' . $this->value : '#ffffff').
'; ' . $this->getTextColorStyle());
return parent::Field($properties);
}
/**
* Override the type to get the proper class name on the field
* "text" is needed here to render the form field as a normal text-field
* @see FormField::Type()
*/
public function Type(){
return 'text';
}
/**
* Ensure the color is a valid hexadecimal color
* @see FormField::validate()
*/
public function validate($validator)
{
if(!empty ($this->value) && !preg_match('/^[A-f0-9]{6}$/', $this->value))
{
$validator->validationError(
$this->name,
_t('ColorField.VALIDCOLORFORMAT', 'Please enter a valid color in hexadecimal format.'),
'validation',
false
);
return false;
}
return true;
}
/**
* Calculate the text color style so that it's visible on the background
* @return string
*/
protected function getTextColorStyle()
{
// change alpha component depending on disabled state
$a = $this->isDisabled() ? '0.5' : '1.0';
if($this->value) {
list($R, $G, $B) = Color::HEX_TO_RGB($this->value);
$luminance = Color::RGB_TO_LUMINANCE($R, $G, $B);
// return color as hex and as rgba values (hex is fallback for IE-8)
return ($luminance > 0.5) ?
'color: #000; color: rgba(0, 0, 0, '. $a .');' :
'color: #fff; color: rgba(255, 255, 255, '. $a .');';
} else {
return 'color: #000; color: rgba(0, 0, 0, '. $a .');';
}
}
}
| matthewbullock/personal-site | colorpicker/code/forms/ColorField.php | PHP | mit | 2,052 |
'use babel';
//import reddit from './api/reddit';
import giphy from './api/giphy';
import ohMaGif from './api/oh-ma-gif';
import reactionGifs from './api/reaction-gifs';
const apis = [
//reddit,
giphy,
ohMaGif,
reactionGifs
];
export default function getRndThumbnail() {
const apiFn = apis[Math.floor(Math.random() * apis.length)];
return apiFn().catch(err => {
// Show error notification
atom.notifications.addError(err, {
dismissable: true
});
});
}
| josex2r/atom-make-me-lol | lib/get-rnd-thumbnail.js | JavaScript | mit | 520 |
<?php
namespace xtarantulz\preview;
use yii\web\AssetBundle;
class FancyBoxAsset extends AssetBundle
{
public $sourcePath = '@bower';
public $js = [
'jquery-ui/jquery-ui.js',
'jquery-mousewheel/jquery.mousewheel.js',
'fancybox/source/jquery.fancybox.js',
'fancybox/source/helpers/jquery.fancybox-buttons.js',
'fancybox/source/helpers/jquery.fancybox-media.js',
'fancybox/source/helpers/jquery.fancybox-thumbs.js'
];
public $css = [
'fancybox/source/jquery.fancybox.css',
'fancybox/source/helpers/jquery.fancybox-buttons.css',
'fancybox/source/helpers/jquery.fancybox-thumbs.css'
];
public $depends = [
'yii\web\JqueryAsset'
];
} | xtarantulz/yii2-input-img-preview | FancyBoxAsset.php | PHP | mit | 741 |
var dropzoneOverlay = document.querySelector('.dropzone-overlay');
function getDataTransferFiles(event) {
var dataTransferItemsList = [];
if (event.dataTransfer) {
var dt = event.dataTransfer;
if (dt.files && dt.files.length) {
dataTransferItemsList = dt.files;
} else if (dt.items && dt.items.length) {
// During the drag even the dataTransfer.files is null
// but Chrome implements some drag store, which is accesible via dataTransfer.items
dataTransferItemsList = dt.items;
}
} else if (event.target && event.target.files) {
dataTransferItemsList = event.target.files;
}
if (dataTransferItemsList.length > 0) {
dataTransferItemsList = [dataTransferItemsList[0]];
}
// Convert from DataTransferItemsList to the native Array
return Array.prototype.slice.call(dataTransferItemsList);
}
function showDragFocus() {
dropzoneOverlay.className = 'dropzone-overlay active';
}
function hideDragFocus() {
dropzoneOverlay.className = 'dropzone-overlay';
}
function onFileDragEnter(ev) {
ev.preventDefault();
showDragFocus();
}
function onFileDragOver(ev) {
ev.preventDefault();
}
function onFileDrop(ev) {
ev.preventDefault();
hideDragFocus();
var fileList = getDataTransferFiles(ev);
updateStickerImage(fileList[0]);
return null;
}
function onFileDragLeave(ev) {
ev.preventDefault();
console.log(ev.target)
if (ev.target !== document.body) {
return;
}
hideDragFocus();
}
function drawImage(canvas, imageBitmap) {
var ctx = canvas.getContext('2d');
ctx.drawImage(file, 0, 0);
}
function updateStickerImage(file) {
var reader = new FileReader();
reader.onload = function(ev) {
var dataURL = ev.target.result;
document.querySelectorAll('.sticker-img').forEach(function(img) {
img.style = 'background-image: url(' + dataURL + ')';
});
}
reader.readAsDataURL(file);
}
document.body.ondragenter = onFileDragEnter;
document.body.ondragover = onFileDragOver;
document.body.ondragleave = onFileDragLeave;
document.body.ondrop = onFileDrop; | vintlucky777/sticker-measure | static/scripts/main.js | JavaScript | mit | 2,199 |
<?php
/*
* This file is part of Sulu.
*
* (c) MASSIVE ART WebServices GmbH
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Sulu\Component\SmartContent\Configuration;
/**
* Builder with fluent interface for smart content configuration.
*/
interface BuilderInterface
{
public static function create();
/**
* Enables tags.
*
* @param bool|true $enable
*
* @return BuilderInterface
*/
public function enableTags($enable = true);
/**
* Enables categories.
*
* @param bool|true $enable
*
* @return BuilderInterface
*/
public function enableCategories($enable = true);
/**
* Enables limit.
*
* @param bool|true $enable
*
* @return BuilderInterface
*/
public function enableLimit($enable = true);
/**
* Enables pagination.
*
* @param bool|true $enable
*
* @return BuilderInterface
*/
public function enablePagination($enable = true);
/**
* Enables present as.
*
* @param bool|true $enable
*
* @return BuilderInterface
*/
public function enablePresentAs($enable = true);
/**
* Enables datasource.
*
* @param string $component name of component.
* @param array $options options to initialized component.
*
* @return BuilderInterface
*/
public function enableDatasource($component, array $options = []);
/**
* Enables categories.
*
* @param array $sorting array of arrays with keys column and title (translation key).
*
* @return BuilderInterface
*/
public function enableSorting(array $sorting);
/**
* Set deep-link.
*
* @param string $deepLink
*
* @return BuilderInterface
*/
public function setDeepLink($deepLink);
/**
* Returns build configuration.
*
* @return ProviderConfigurationInterface
*/
public function getConfiguration();
}
| fahadonline/sulu | vendor/sulu/sulu/src/Sulu/Component/SmartContent/Configuration/BuilderInterface.php | PHP | mit | 2,064 |
require 'morpheus/cli/cli_command'
class Morpheus::Cli::NetworkPoolServersCommand
include Morpheus::Cli::CliCommand
include Morpheus::Cli::InfrastructureHelper
set_command_name :'network-pool-servers'
register_subcommands :list, :get, :add, :update, :remove
# set_default_subcommand :list
def initialize()
# @appliance_name, @appliance_url = Morpheus::Cli::Remote.active_appliance
end
def connect(opts)
@api_client = establish_remote_appliance_connection(opts)
@network_pool_servers_interface = @api_client.network_pool_servers
@clouds_interface = @api_client.clouds
@options_interface = @api_client.options
end
def handle(args)
handle_subcommand(args)
end
def list(args)
options = {}
params = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage()
build_common_options(opts, options, [:list, :json, :yaml, :csv, :fields, :json, :dry_run, :remote])
opts.footer = "List network pool servers."
end
optparse.parse!(args)
connect(options)
begin
params.merge!(parse_list_options(options))
@network_pool_servers_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_pool_servers_interface.dry.list(params)
return
end
json_response = @network_pool_servers_interface.list(params)
network_pool_servers = json_response["networkPoolServers"]
if options[:json]
puts as_json(json_response, options, "networkPoolServers")
return 0
elsif options[:yaml]
puts as_yaml(json_response, options, "networkPoolServers")
return 0
elsif options[:csv]
puts records_as_csv(network_pool_servers, options)
return 0
end
title = "Morpheus Network Pool Servers"
subtitles = []
subtitles += parse_list_subtitles(options)
print_h1 title, subtitles
if network_pool_servers.empty?
print cyan,"No network pool servers found.",reset,"\n"
else
rows = network_pool_servers.collect {|network_pool_server|
row = {
id: network_pool_server['id'],
name: network_pool_server['name'],
# description: network_pool_server['description'],
type: network_pool_server['type'] ? network_pool_server['type']['name'] : '',
pools: network_pool_server['pools'] ? network_pool_server['pools'].collect {|it| it['name'] }.uniq.join(', ') : '',
}
row
}
columns = [:id, :name, :type, :pools]
if options[:include_fields]
columns = options[:include_fields]
end
print cyan
print as_pretty_table(rows, columns, options)
print reset
print_results_pagination(json_response, {:label => "network pool server", :n_label => "network pool servers"})
end
print reset,"\n"
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
exit 1
end
end
def get(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[network-pool-server]")
build_common_options(opts, options, [:json, :yaml, :csv, :fields, :dry_run, :remote])
opts.footer = "Get details about a network pool server." + "\n" +
"[network-pool-server] is required. This is the name or id of a network pool server."
end
optparse.parse!(args)
if args.count != 1
print_error Morpheus::Terminal.angry_prompt
puts_error "#{command_name} missing argument: [network-pool-server]\n#{optparse}"
return 1
end
connect(options)
begin
@network_pool_servers_interface.setopts(options)
if options[:dry_run]
if args[0].to_s =~ /\A\d{1,}\Z/
print_dry_run @network_pool_servers_interface.dry.get(args[0].to_i)
else
print_dry_run @network_pool_servers_interface.dry.list({name:args[0]})
end
return
end
network_pool_server = find_network_pool_server_by_name_or_id(args[0])
return 1 if network_pool_server.nil?
json_response = {'networkPoolServer' => network_pool_server} # skip redundant request
# json_response = @network_pool_servers_interface.get(network_pool_server['id'])
network_pool_server = json_response['networkPoolServer']
if options[:json]
puts as_json(json_response, options, 'networkPoolServer')
return 0
elsif options[:yaml]
puts as_yaml(json_response, options, 'networkPoolServer')
return 0
elsif options[:csv]
puts records_as_csv([network_pool_server], options)
return 0
end
print_h1 "Network Pool Server Details"
print cyan
description_cols = {
"ID" => 'id',
"Name" => lambda {|it| it['name'] },
"Type" => lambda {|it| it['type'] ? it['type']['name'] : '' },
# "Service URL" => lambda {|it| it['serviceUrl'] : '' },
"Pools" => lambda {|it| it['pools'] ? it['pools'].collect {|p| p['name'] }.uniq.join(', ') : '' },
}
print_description_list(description_cols, network_pool_server)
print reset,"\n"
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
return 1
end
end
def add(args)
options = {}
ip_range_list = nil
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage()
opts.on('--name VALUE', String, "Name for this network pool server") do |val|
options['name'] = val
end
opts.on('--type VALUE', String, "Type of network pool server") do |val|
options['type'] = val
end
# ['name', 'serviceUsername', 'servicePassword', 'servicePort', 'serviceHost', 'serviceUrl', 'serviceMode', 'networkFilter', 'tenantMatch']
build_common_options(opts, options, [:options, :payload, :json, :dry_run, :quiet, :remote])
opts.footer = "Create a new network pool server." + "\n" +
"[name] is required and can be passed as --name instead."
end
optparse.parse!(args)
if args.count > 1
print_error Morpheus::Terminal.angry_prompt
puts_error "wrong number of arguments, expected 0-1 and got #{args.count}\n#{optparse}"
return 1
end
connect(options)
begin
# merge -O options into normally parsed options
options.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
# support [name] as first argument
if args[0]
options['name'] = args[0]
end
# construct payload
payload = nil
if options[:payload]
payload = options[:payload]
else
# prompt for network options
payload = {
'networkPoolServer' => {
# 'config' => {}
}
}
# allow arbitrary -O options
payload['networkPoolServer'].deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
# Name
if options['name']
payload['networkPoolServer']['name'] = options['name']
else
v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'name', 'fieldLabel' => 'Name', 'type' => 'text', 'required' => true, 'description' => 'Name for this network pool server.'}], options)
payload['networkPoolServer']['name'] = v_prompt['name']
end
# Network Pool Server Type
network_type_id = nil
v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'type', 'fieldLabel' => 'Pool Server Type', 'type' => 'select', 'optionSource' => 'networkPoolServerTypes', 'required' => true, 'description' => 'Choose a network pool server type.'}], options, @api_client, {})
network_type_id = v_prompt['type']
if network_type_id.nil? || network_type_id.to_s.empty?
print_red_alert "Pool Server Type not found by id '#{options['type']}'"
return 1
end
payload['networkPoolServer']['type'] = {'id' => network_type_id.to_i }
# ['name', 'serviceUsername', 'servicePassword', 'servicePort', 'serviceHost', 'serviceUrl', 'serviceMode', 'networkFilter', 'tenantMatch']
end
@network_pool_servers_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_pool_servers_interface.dry.create(payload)
return
end
json_response = @network_pool_servers_interface.create(payload)
if options[:json]
print JSON.pretty_generate(json_response)
print "\n"
elsif !options[:quiet]
network_pool_server = json_response['networkPoolServer']
print_green_success "Added network pool server #{network_pool_server['name']}"
get([network_pool_server['id']])
end
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
exit 1
end
end
def update(args)
options = {}
ip_range_list = nil
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[network-pool-server] [options]")
opts.on('--name VALUE', String, "Name for this network pool server") do |val|
options['name'] = val
end
opts.on('--type VALUE', String, "Type of network pool server") do |val|
options['description'] = val
end
# ['name', 'serviceUsername', 'servicePassword', 'servicePort', 'serviceHost', 'serviceUrl', 'serviceMode', 'networkFilter', 'tenantMatch']
build_common_options(opts, options, [:options, :payload, :json, :dry_run, :remote])
opts.footer = "Update a network pool server." + "\n" +
"[network-pool-server] is required. This is the id of a network pool server."
end
optparse.parse!(args)
if args.count != 1
print_error Morpheus::Terminal.angry_prompt
puts_error "wrong number of arguments, expected 1 and got #{args.count}\n#{optparse}"
return 1
end
connect(options)
begin
network_pool_server = find_network_pool_server_by_name_or_id(args[0])
return 1 if network_pool_server.nil?
# merge -O options into normally parsed options
options.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
# construct payload
payload = nil
if options[:payload]
payload = options[:payload]
else
# prompt for network options
payload = {
'networkPoolServer' => {
}
}
# allow arbitrary -O options
payload['networkPoolServer'].deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
# Name
if options['name']
payload['networkPoolServer']['name'] = options['name']
else
# v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'name', 'fieldLabel' => 'Name', 'type' => 'text', 'required' => true, 'description' => 'Name for this network pool server.'}], options)
# payload['networkPoolServer']['name'] = v_prompt['name']
end
# Network Pool Server Type
# network_type_id = nil
# v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'type', 'fieldLabel' => 'Pool Server Type', 'type' => 'select', 'optionSource' => 'networkPoolServerTypes', 'required' => true, 'description' => 'Choose a network pool server type.'}], options, @api_client, {})
# network_type_id = v_prompt['type']
# if network_type_id.nil? || network_type_id.to_s.empty?
# print_red_alert "Pool Server Type not found by id '#{options['type']}'"
# return 1
# end
# payload['networkPoolServer']['type'] = {'id' => network_type_id.to_i }
if options['type']
payload['networkPoolServer']['type'] = {'id' => options['type'].to_i }
end
# ['name', 'serviceUsername', 'servicePassword', 'servicePort', 'serviceHost', 'serviceUrl', 'serviceMode', 'networkFilter', 'tenantMatch']
end
@network_pool_servers_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_pool_servers_interface.dry.update(network_pool_server["id"], payload)
return
end
json_response = @network_pool_servers_interface.update(network_pool_server["id"], payload)
if options[:json]
puts as_json(json_response)
else
network_pool_server = json_response['networkPoolServer']
print_green_success "Updated network pool server #{network_pool_server['name']}"
get([network_pool_server['id']])
end
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
return 1
end
end
def remove(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[network-pool-server]")
build_common_options(opts, options, [:account, :auto_confirm, :json, :dry_run, :remote])
opts.footer = "Delete a network pool server." + "\n" +
"[network-pool-server] is required. This is the name or id of a network pool server."
end
optparse.parse!(args)
if args.count < 1
print_error Morpheus::Terminal.angry_prompt
puts_error "#{command_name} missing argument: [network-pool-server]\n#{optparse}"
return 1
end
connect(options)
begin
network_pool_server = find_network_pool_server_by_name_or_id(args[0])
return 1 if network_pool_server.nil?
unless options[:yes] || Morpheus::Cli::OptionTypes.confirm("Are you sure you want to delete the network pool server: #{network_pool_server['name']}?")
return 9, "aborted command"
end
@network_pool_servers_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_pool_servers_interface.dry.destroy(network_pool_server['id'])
return 0
end
json_response = @network_pool_servers_interface.destroy(network_pool_server['id'])
if options[:json]
print JSON.pretty_generate(json_response)
print "\n"
else
print_green_success "Removed network pool server #{network_pool_server['name']}"
# list([])
end
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
return 1
end
end
private
def find_network_pool_server_by_name_or_id(val)
if val.to_s =~ /\A\d{1,}\Z/
return find_network_pool_server_by_id(val)
else
return find_network_pool_server_by_name(val)
end
end
def find_network_pool_server_by_id(id)
begin
json_response = @network_pool_servers_interface.get(id.to_i)
return json_response['networkPoolServer']
rescue RestClient::Exception => e
if e.response && e.response.code == 404
print_red_alert "Network Pool Server not found by id #{id}"
return nil
else
raise e
end
end
end
def find_network_pool_server_by_name(name)
json_response = @network_pool_servers_interface.list({name: name.to_s})
network_pool_servers = json_response['networkPoolServers']
if network_pool_servers.empty?
print_red_alert "Network Pool Server not found by name #{name}"
return nil
elsif network_pool_servers.size > 1
print_red_alert "#{network_pool_servers.size} network pool servers found by name #{name}"
# print_networks_table(networks, {color: red})
rows = network_pool_servers.collect do |it|
{id: it['id'], name: it['name']}
end
puts as_pretty_table(rows, [:id, :name], {color:red})
return nil
else
return network_pool_servers[0]
end
end
end
| gomorpheus/morpheus-cli | lib/morpheus/cli/commands/network_pool_servers_command.rb | Ruby | mit | 15,783 |
<?php
/**
* Created by PhpStorm.
* User: carl
* Date: 01/06/17
* Time: 21:47
*/
namespace PartFire\MailChimpBundle\Command;
use PartFire\CommonBundle\Services\Output\Cli\ConsoleOutput;
use PartFire\MailChimpBundle\Model\Dto\Member;
use PartFire\MailChimpBundle\Services\Members;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
abstract class UploadTodaysUsersCommand extends ContainerAwareCommand
{
protected $output;
protected function configure()
{
$this
->setName('partfire:mailchimp-daily-upload')
->setDescription('Sends the users who registered today.');
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->output = $this->getConsoleOutPutter();
$this->output->setOutputer($output);
$service = $this->getMailChimpService();
$users = $this->getAllUsersWhoRegisteredToday();
foreach ($users as $user) {
if ($user instanceof User) {
$dto = new Member();
$dto->setEmail($user->getEmail());
$dto->setFirstName($user->getFirstName());
$dto->setLastName($user->getLastName());
$result = $service->addUserToList($dto);
if ($result instanceof \Exception) {
$this->output->comment($result->getMessage());
}
if ($result) {
$this->output->comment($user->getEmail() .' was added.');
}
}
}
}
/**
*@todo override this method to get your users however you do it.
*/
protected function getAllUsersWhoRegisteredToday()
{
$userRepo = $this->getContainer()->get('user.repo')->getUser();
return $userRepo->getUsersRegisteredToday();
}
protected function getMailChimpService() : Members
{
return $this->getContainer()->get('part_fire_mail_chimp.services.members');
}
protected function getConsoleOutPutter() : ConsoleOutput
{
return $this->getContainer()->get('partfire_common.output_console');
}
}
| PartFire/MailChimpBundle | Command/UploadTodaysUsersCommand.php | PHP | mit | 2,255 |
---
layout: post
title: 七种常见经典排序算法总结(C++实现)
category: 技术
tags: 算法
keywords: 算法,排序,Sort,Algorithm
---
排序算法是非常常见也非常基础的算法,以至于大部分情况下它们都被集成到了语言的辅助库中。排序算法虽然已经可以很方便的使用,但是理解排序算法可以帮助我们找到解题的方向。
## 1. 冒泡排序 (Bubble Sort)
冒泡排序是最简单粗暴的排序方法之一。它的原理很简单,每次从左到右两两比较,把大的交换到后面,每次可以确保将前M个元素的最大值移动到最右边。
**步骤**
1. 从左开始比较相邻的两个元素x和y,如果 x > y 就交换两者
2. 执行比较和交换,直到到达数组的最后一个元素
3. 重复执行1和2,直到执行n次,也就是n个最大元素都排到了最后
```CPP
void bubble_sort(vector<int> &nums)
{
for (int i = 0; i < nums.size() - 1; i++) { // times
for (int j = 0; j < nums.size() - i - 1; j++) { // position
if (nums[j] > nums[j + 1]) {
int temp = nums[j];
nums[j] = nums[j + 1];
nums[j + 1] = temp;
}
}
}
}
```
交换的那一步可以不借助temp,方法是
```CPP
nums[j] += nums[j + 1];
nums[j + 1] = num[j] - nums[j + 1];
nums[j] -= num[j + 1];
```
**复杂度分析**
由于我们要重复执行n次冒泡,每次冒泡要执行n次比较(实际是1到n的等差数列,也就是`(a1 + an) * n / 2`),也就是 `O(n^2)`。 空间复杂度是`O(n)`。
## 2. 插入排序(Insertion Sort)
插入排序的原理是从左到右,把选出的一个数和前面的数进行比较,找到最适合它的位置放入,使前面部分有序。
**步骤**
1. 从左开始,选出当前位置的数x,和它之前的数y比较,如果x < y则交换两者
2. 对x之前的数都执行1步骤,直到前面的数字都有序
3. 选择有序部分后一个数字,插入到前面有序部分,直到没有数字可选择
```CPP
void insert_sort(vector<int> &nums)
{
for (int i = 1; i < nums.size(); i++) { // position
for (int j = i; j > 0; j--) {
if (nums[j] < nums[j - 1]) {
int temp = nums[j];
nums[j] = nums[j - 1];
nums[j - 1] = temp;
}
}
}
}
```
**复杂度分析**
因为要选择n次,而且插入时最坏要比较n次,所以时间复杂度同样是`O(n^2)`。空间复杂度是`O(n)`。
## 3. 选择排序(Selection Sort)
选择排序的原理是,每次都从乱序数组中找到最大(最小)值,放到当前乱序数组头部,最终使数组有序。
**步骤**
1. 从左开始,选择后面元素中最小值,和最左元素交换
2. 从当前已交换位置往后执行,直到最后一个元素
```CPP
void selection_sort(vector<int> &nums)
{
for (int i = 0; i < nums.size(); i++) { // position
int min = i;
for (int j = i + 1; j < nums.size(); j++) {
if (nums[j] < nums[min]) {
min = j;
}
}
int temp = nums[i];
nums[i] = nums[min];
nums[min] = temp;
}
}
```
**复杂度分析**
每次要找一遍最小值,最坏情况下找n次,这样的过程要执行n次,所以时间复杂度还是`O(n^2)`。空间复杂度是`O(n)`。
## 4. 希尔排序(Shell Sort)
希尔排序从名字上看不出来特点,因为它是以发明者命名的。它的另一个名字是“递减增量排序算法“。这个算法可以看作是插入排序的优化版,因为插入排序需要一位一位比较,然后放置到正确位置。为了提升比较的跨度,希尔排序将数组按照一定步长分成几个子数组进行排序,通过逐渐减短步长来完成最终排序。
**例子**
例如 `[10, 80, 70, 100, 90, 30, 20]`
如果我们按照一次减一半的步长来算, 这个数组第一次排序时以3为步长,子数组是:
`10 80 70`
`90 30 20`
`100`
这里其实按照列划分的4个子数组,排序后结果为
`10 30 20`
`90 80 70`
`100`
也就是 `[10, 30 20 90 80 70 100]`
然后再以1为步长生成子数组
`10`
`30`
`20`
`..`
这个时候就是一纵列了,也就是说最后一定是以一个数组来排序的。
**步骤**
1. 计算当前步长,按步长划分子数组
2. 子数组内插入排序
3. 步长除以2后继续12两步,直到步长最后变成1
```CPP
void shell_sort(vector<int> &nums)
{
for (int gap = nums.size() >> 1; gap > 0; gap >>= 1) { // times
for (int i = gap; i < nums.size(); i++) { // position
int temp = nums[i];
int j = i - gap;
for (; j >= 0 && nums[j] > temp; j -= gap) {
nums[j + gap] = nums[j];
}
nums[j + gap] = temp;
}
}
}
```
**复杂度分析**
希尔排序的时间复杂度受步长的影响,具体分析在[维基百科](https://zh.wikipedia.org/wiki/%E5%B8%8C%E5%B0%94%E6%8E%92%E5%BA%8F#.E6.AD.A5.E9.95.BF.E5.BA.8F.E5.88.97)。
## 5. 归并排序(Merge Sort)
归并排序是采用分治法(Divide and Conquer)的一个典型例子。这个排序的特点是把一个数组打散成小数组,然后再把小数组拼凑再排序,直到最终数组有序。
**步骤**
1. 把当前数组分化成n个单位为1的子数组,然后两两比较合并成单位为2的n/2个子数组
2. 继续进行这个过程,按照2的倍数进行子数组的比较合并,直到最终数组有序
```CPP
void merge_array(vector<int> &nums, int b, int m, int e, vector<int> &temp)
{
int lb = b, rb = m, tb = b;
while (lb != m && rb != e)
if (nums[lb] < nums[rb])
temp[tb++] = nums[lb++];
else
temp[tb++] = nums[rb++];
while (lb < m)
temp[tb++] = nums[lb++];
while (rb < e)
temp[tb++] = nums[rb++];
for (int i = b;i < e; i++)
nums[i] = temp[i];
}
void merge_sort(vector<int> &nums, int b, int e, vector<int> &temp)
{
int m = (b + e) / 2;
if (m != b) {
merge_sort(nums, b, m, temp);
merge_sort(nums, m, e, temp);
merge_array(nums, b, m, e, temp);
}
}
```
这个实现中加了一个temp,是和原数组一样大的一个空间,用来临时存放排序后的子数组的。
**复杂度分析**
在`merge_array`过程中,实际的操作是当前两个子数组的长度,即2m。又因为打散数组是二分的,最终循环执行数是`logn`。所以这个算法最终时间复杂度是`O(nlogn)`,空间复杂度是`O(n)`。
## 6. 快速排序(Quick Sort)
快速排序也是利用分治法实现的一个排序算法。快速排序和归并排序不同,它不是一半一半的分子数组,而是选择一个基准数,把比这个数小的挪到左边,把比这个数大的移到右边。然后不断对左右两部分也执行相同步骤,直到整个数组有序。
**步骤**
1. 用一个基准数将数组分成两个子数组
2. 将大于基准数的移到右边,小于的移到左边
3. 递归的对子数组重复执行1,2,直到整个数组有序
```CPP
void quick_sort(vector<int> &nums, int b, int e, vector<int> &temp)
{
int m = (b + e) / 2;
if (m != b) {
int lb = b, rb = e - 1;
for (int i = b; i < e; i++) {
if (i == m)
continue;
if (nums[i] < nums[m])
temp[lb++] = nums[i];
else
temp[rb--] = nums[i];
}
temp[lb] = nums[m];
for (int i = b; i < e; i++)
nums[i] = temp[i];
quick_sort(nums, b, lb, temp);
quick_sort(nums, lb + 1, e, temp);
}
}
```
解法2: 不需要辅助空间
```CPP
void quick_sort(vector<int> &nums, int b, int e)
{
if (b < e - 1) {
int lb = b, rb = e - 1;
while (lb < rb) {
while (nums[rb] >= nums[b] && lb < rb)
rb--;
while (nums[lb] <= nums[b] && lb < rb)
lb++;
swap(nums[lb], nums[rb]);
}
swap(nums[b], nums[lb]);
quick_sort(nums, b, lb);
quick_sort(nums, lb + 1, e);
}
}
```
**复杂度分析**
快速排序也是一个不稳定排序,时间复杂度看[维基百科](https://zh.wikipedia.org/wiki/%E5%BF%AB%E9%80%9F%E6%8E%92%E5%BA%8F#.E5.B9.B3.E5.9D.87.E8.A4.87.E9.9B.9C.E5.BA.A6)。空间复杂度是`O(n)`。
## 7. 堆排序(Heap Sort)
堆排序经常用于求一个数组中最大k个元素时。因为堆实际上是一个完全二叉树,所以用它可以用一维数组来表示。因为最大堆的第一位总为当前堆中最大值,所以每次将最大值移除后,调整堆即可获得下一个最大值,通过一遍一遍执行这个过程就可以得到前k大元素,或者使堆有序。
在了解算法之前,首先了解在一维数组中节点的下标:
- i节点的父节点 parent(i) = floor((i-1)/2)
- i节点的左子节点 left(i) = 2i + 1
- i节点的右子节点 right(i) = 2i + 2
**步骤**
1. 构造最大堆(Build Max Heap):首先将当前元素放入最大堆下一个位置,然后将此元素依次和它的父节点比较,如果大于父节点就和父节点交换,直到比较到根节点。重复执行到最后一个元素。
2. 最大堆调整(Max Heapify):调整最大堆即将根节点移除后重新整理堆。整理方法为将根节点和最后一个节点交换,然后把堆看做n-1长度,将当前根节点逐步移动到其应该在的位置。
3. 堆排序(HeapSort):重复执行2,直到所有根节点都已移除。
```CPP
void heap_sort(vector<int> &nums)
{
int n = nums.size();
for (int i = n / 2 - 1; i >= 0; i--) { // build max heap
max_heapify(nums, i, nums.size() - 1);
}
for (int i = n - 1; i > 0; i--) { // heap sort
int temp = nums[i];
num[i] = nums[0];
num[0] = temp;
max_heapify(nums, 0, i);
}
}
void max_heapify(vector<int> &nums, int beg, int end)
{
int curr = beg;
int child = curr * 2 + 1;
while (child < end) {
if (child + 1 < end && nums[child] < nums[child + 1]) {
child++;
}
if (nums[curr] < nums[child]) {
int temp = nums[curr];
nums[curr] = nums[child];
num[child] = temp;
curr = child;
child = 2 * curr + 1;
} else {
break;
}
}
}
```
**复杂度分析**
堆执行一次调整需要`O(logn)`的时间,在排序过程中需要遍历所有元素执行堆调整,所以最终时间复杂度是`O(nlogn)`。空间复杂度是`O(n)`。
## 0. 参考
- 维基百科
- [经典排序算法总结与实现](http://wuchong.me/blog/2014/02/09/algorithm-sort-summary/)
- [堆排序C++实现](http://segmentfault.com/a/1190000002466215)
- [常见排序算法 - 堆排序 (Heap Sort)](http://bubkoo.com/2014/01/14/sort-algorithm/heap-sort/)
| BarryLiu/barryliu.github.com | _posts/tool/2015-09-07-sort-algorithms.md | Markdown | mit | 11,419 |
#include <SDL2/SDL_keyboard.h>
#include <SDL2/SDL_scancode.h>
#include <SDL2/SDL_stdinc.h>
#include <mruby.h>
#include <mruby/class.h>
#include <mrgss/mrgss.h>
#include <mrgss/mrgss_keyboard.h>
/* Maximun amount of keys in the */
#define MAX_KEYS 512
/**
* buffers
*/
static char press[MAX_KEYS];
static char trigger[MAX_KEYS];
static char release[MAX_KEYS];
static char repeat[MAX_KEYS];
static mrb_int time[MAX_KEYS];
/*
* Update
*/
static mrb_value
input_update(mrb_state *mrb, mrb_int capa) {
int i = 0;
const Uint8* currentKeyStates;
int max_states = MAX_KEYS; /* used to prevent overflows */
currentKeyStates = SDL_GetKeyboardState(&max_states);
for (i; i < MAX_KEYS && i < max_states; ++i) {
trigger[i] = !press[i] && currentKeyStates[i];
release[i] = press[i] && !currentKeyStates[i];
press[i] = currentKeyStates[i];
time[i] = press[i] ? time[i] + 1 : 0;
repeat[i] = time[i] % 2 == 0;
}
return mrb_nil_value();
}
/*
* trigger
*/
static mrb_value
input_trigger (mrb_state *mrb, mrb_int capa)
{
mrb_int key;
mrb_get_args (mrb, "i", &key);
if (key < 0 || key >= MAX_KEYS) {
return mrb_nil_value();
}
return trigger[key] == TRUE ? mrb_true_value () : mrb_false_value ();
}
/*
* press
*/
static mrb_value
input_press (mrb_state *mrb, mrb_int capa)
{
mrb_int key;
mrb_get_args (mrb, "i", &key);
if (key < 0 || key >= MAX_KEYS) {
return mrb_nil_value();
}
return press[key] == TRUE ? mrb_true_value () : mrb_false_value ();
}
/*
* release
*/
static mrb_value
input_release (mrb_state *mrb, mrb_int capa)
{
mrb_int key;
mrb_get_args (mrb, "i", &key);
if (key < 0 || key >= MAX_KEYS) {
return mrb_nil_value();
}
return release[key] == TRUE ? mrb_true_value () : mrb_false_value ();
}
/*
* repeat
*/
static mrb_value
input_repeat (mrb_state *mrb, mrb_int capa)
{
mrb_int key;
mrb_get_args (mrb, "i", &key);
if (key < 0 || key >= MAX_KEYS) {
return mrb_nil_value();
}
return repeat[key] == TRUE ? mrb_true_value () : mrb_false_value ();
}
/*
* time
*/
static mrb_value
input_time (mrb_state *mrb, mrb_int capa)
{
mrb_int key;
mrb_get_args (mrb, "i", &key);
if (key < 0 || key >= MAX_KEYS) {
return mrb_nil_value();
}
return mrb_fixnum_value (time[key]);
}
/**
* Initialize mruby class
*/
void mrgss_keyboard_init(mrb_state *mrb) {
struct RClass *hw = mrb_define_module_under(mrb, mrgss_module(),"Keyboard");
mrb_define_class_method(mrb, hw, "update", (mrb_func_t) input_update, MRB_ARGS_NONE());
mrb_define_class_method(mrb, hw, "trigger?", (mrb_func_t) input_trigger, MRB_ARGS_REQ(1));
mrb_define_class_method(mrb, hw, "press?", (mrb_func_t) input_press, MRB_ARGS_REQ(1));
mrb_define_class_method(mrb, hw, "release?", (mrb_func_t) input_release, MRB_ARGS_REQ(1));
mrb_define_class_method(mrb, hw, "repeat?", (mrb_func_t) input_repeat, MRB_ARGS_REQ(1));
mrb_define_class_method(mrb, hw, "press_time", (mrb_func_t) input_time, MRB_ARGS_REQ(1));
}
| mrgss/module-input | src/mrgss_keyboard.c | C | mit | 3,038 |
<!DOCTYPE html>
<html lang="en" id="webstandardssherpa_com">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Language" content="en"/>
<title>Allison Wagner - Web Standards Sherpa</title>
<meta name="robots" content="index,follow,archive" />
<meta name='description' content='Web Standards Sherpa’s experts provide helpful, pragmatic and up-to-date advice on best practices for web professionals everywhere.' />
<meta name='DC.description' content='Web Standards Sherpa’s experts provide helpful, pragmatic and up-to-date advice on best practices for web professionals everywhere.' />
<meta name='keywords' content='web standards,best practices,web design,web development' />
<meta name='DC.subject' content='web standards,best practices,web design,web development' />
<link rel="schema.DC" href="http://purl.org/dc/elements/1.1/" />
<link rel="schema.DCTERMS" href="http://purl.org/dc/terms/" />
<meta name="DC.title" content="Allison Wagner - Web Standards Sherpa" />
<meta name="DC.creator" content="Web Standards Sherpa" />
<meta name="DC.publisher" content="The Web Standards Project" />
<meta name="DC.date.created" scheme="DCTERMS.W3CDTF" content="2015-12-07T14:43:05-05:00" />
<meta name="DC.date.modified" scheme="DCTERMS.W3CDTF" content="1453-05-15T08:00:00-05:00" />
<meta name="DC.date.valid" scheme="DCTERMS.W3CDTF" content="2015-12-13T16:43:05-05:00" />
<meta name="DC.type" scheme="DCTERMS.DCMIType" content="Text" />
<meta name="DC.rights" scheme="DCTERMS.URI" content="(cc) Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License">
<meta name="Copyright" content="(cc) Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License"/>
<meta name="DC.format" content="text/html" />
<meta name="DC.identifier" scheme="DCTERMS.URI" content="http://webstandardssherpa.com/about/authors/allison-wagner" />
<meta name="MSSmartTagsPreventParsing" content="true"/>
<meta name="Rating" content="General"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="home" href="../../index.html"/>
<link rel="copyright" href="allison-wagner.html#license"/>
<link rel="shortcut icon" type="image/png" href="../../favicon.png"/>
<link rel="author" type="text/plain" href="../../humans.txt.html"/>
<!--[if lte IE 8]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<!--[if (lte IE 8)&(!IEMobile)]>
<link rel="stylesheet" href="/c/old-ie.css" media="screen">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" type="text/css" href="../../c/main.css" media="screen"/>
<!--<![endif]-->
<!--[if IEMobile 7]>
<link rel="stylesheet" href="/c/main.css" media="screen">
<link rel="stylesheet" href="/c/windows7-mobile.css" media="screen">
<![endif]-->
<link rel="alternate" type="application/rss+xml" title="Web Standards Sherpa Reviews (Summary)" href="http://feeds.feedburner.com/Web-Standards-Sherpa-Reviews-Summary"/>
<link rel="alternate" type="application/rss+xml" title="Web Standards Sherpa Reviews (Full Text)" href="http://feeds.feedburner.com/Web-Standards-Sherpa-Reviews"/>
<link rel="alternate" type="application/rss+xml" title="Web Standards Sherpa Discussions" href="http://feeds.feedburner.com/Web-Standards-Sherpa-Discussions"/>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-176472-9']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript">
var WRInitTime=(new Date()).getTime();
</script>
</head>
<body id="staff-member">
<header role="banner" id="page-header">
<h4 id="logo"><a href="../../index.html" title="Return to the homepage">Web Standards Sherpa</a></h4>
</header>
<nav id="nav-primary" role="navigation">
<ul><li id="nav-home"><a href="../../index.html">Home</a></li><li id="nav-reviews"><a href="../../reviews/index.html">Reviews</a></li><li id="nav-ask-the-sherpas"><a href="../../ask-the-sherpas/index.html">Ask the Sherpas</a></li> </ul>
</nav>
<div id="content">
<nav id="crumbs">
<ol>
<li><a href="../index.html">About Us</a></li><li><a href="index.html">Authors</a></li><li><em>Allison Wagner</em></li>
</ol>
</nav>
<article class="vcard">
<header>
<img class="photo" src="../../i/s/Allison-Wagner.jpg" alt=""/> <h1 class="fn">Allison Wagner</h1>
<h2 class="role">CSS & HTML Expert</h2>
</header>
<p>Allison is an enthusiastic front-end web dev working with the awesome folks at <a href="http://happycog.com/">Happy Cog</a> in their Philadelphia office. Allison specializes in the art of abstracting design systems from comps to code; large-scale <span class="caps">CSS</span> systems built from the ground up are her bread-and-butter.</p>
<p>In addition to speaking at conferences like SXSWi, Allison writes for Happy Cog’s <a href="http://cognition.happycog.com/author/wagner">Cognition</a> and teaches web development for <a href="http://girldevelopit.com/chapters/philadelphia">GirlDevelopIt</a>. You can find her on <a href="http://twitter.com/alliwagner">Twitter</a> or listen to her on an episode of the <a href="http://shoptalkshow.com/episodes/015-with-jenn-lukas-and-allison-wagner/">ShopTalk podcast</a>.</p>
<section>
<h1 class="ask-the-sherpas">Ask the Sherpas by this author</h1>
<ol class="hfeed ask-the-sherpas">
<li class="hentry">
<h2 class="entry-title"><a href="../../ask-the-sherpas/html-for-restaurant-menus.html">Question About <span class="caps">HTML</span> for Restaurant Menus</a></h2>
<div class="summary">
Oh, you mean besides linking to a <span class="caps">PDF</span>? I kid. Though, not really. Unfortunately, a <span class="caps">PDF</span> has become the “menu solution” for many restaurant sites. This presents a host of issues, from…
</div>
</li>
<li class="hentry">
<h2 class="entry-title"><a href="../../ask-the-sherpas/using-css-grid-systems.html">Question About Using <span class="caps">CSS</span> Grid Systems</a></h2>
<div class="summary">
Let’s first establish that by “<span class="caps">CSS</span> Grid systems,” you mean <span class="caps">CSS</span> grid frameworks like Foundation, 960, and Bootstrap. Because I think many developers nowadays use grid systems…
</div>
</li>
<li class="hentry">
<h2 class="entry-title"><a href="../../ask-the-sherpas/frameworks-preprocessors-and-libraries.html">Question About Frameworks, Preprocessors and Libraries</a></h2>
<div class="summary">
As great as today’s pre-processors, frameworks and libraries are, understanding the fundamentals of <span class="caps">HTML</span>, <span class="caps">CSS</span> and <span class="caps">JS</span> is hugely important. Using something like a <span class="caps">CSS</span> pre-processor, for example,…
</div>
</li>
<li class="hentry">
<h2 class="entry-title"><a href="../../ask-the-sherpas/object-oriented-css.html">Question About Object Oriented <span class="caps">CSS</span></a></h2>
<div class="summary">
Yay! I love this question because it touches on a very common misconception about Object Oriented <span class="caps">CSS.</span>
The answer is no. <span class="caps">OOCSS</span> does not mean you have to degrade your markup with tons…
</div>
</li>
</ol>
</section>
</article>
<aside class="sidebar" role="complementary">
<section id="review" class="sidebar-item">
<h1>This Week</h1>
<p class="issue"><i>Issue </i><abbr title="Number">No.</abbr> 38</p>
<h2><a href="../../reviews/sass-for-big-sites-part-2/index.html">Sass for Big Sites, Part 2</a></h2>
<p class="author vcard">by <a class="fn url" href="jackie-balzer/index.html">Jackie Balzer</a></p>
<p>In part 2 of our series on Sass for large sites and teams, Jackie shares how Behance maintains a living Style Guide and documents its code base.</p>
<p class="more"><a href="../../reviews/sass-for-big-sites-part-2/index.html">Begin the climb</a></p>
</section>
<section id="topics" class="sidebar-item entry-unrelated">
<h1>Topics</h1>
<ol>
<li><a href="../../topics/accessibility.html">Accessibility</a></li>
<li><a href="../../topics/business.html">Business</a></li>
<li><a href="../../topics/compatibility.html">Compatibility</a></li>
<li><a href="../../topics/content.html">Content</a></li>
<li><a href="../../topics/css.html">CSS</a></li>
<li><a href="../../topics/design.html">Design / UX</a></li>
<li><a href="../../topics/html.html">HTML</a></li>
<li><a href="../../topics/javascript.html">Javascript</a></li>
<li><a href="../../topics/performance.html">Performance</a></li>
<li><a href="../../topics/semantics.html">Semantics</a></li>
<li><a href="../../topics/usability.html">Usability</a></li>
<li><a href="../../topics/workflow-process.html">Workflow / Process</a></li>
</ol>
</section>
<section id="submit-a-site" class="sidebar-item entry-unrelated">
<p><a href="../../submit-a-site/index.html"><img src="../../i/feed-shirley-222x99.png" alt="Submit a site for Review" /></a></p>
</section>
<section id="follow-us" class="sidebar-item entry-unrelated">
<h1>Follow us</h1>
<ul>
<li class="twitter"><a href="http://twitter.com/StandardsSherpa" title="Follow @StandardsSherpa on Twitter">Twitter</a></li>
<li class="facebook"><a href="http://www.facebook.com/WebStandardsSherpa" title="Follow Web Standards Sherpa on Facebook">Facebook</a></li>
<li class="googleplus"><a href="https://plus.google.com/+Webstandardssherpa" title="Follow Web Standards Sherpa on Google+">Google+</a></li>
<li class="rss"><a href="../../rss/index.html" title="Subscribe to one or more of our RSS feeds">RSS</a></li>
</ul>
</section>
</aside>
</div>
<form style="display: none" id="search-form" method="post" action="../../index.html" >
<div class='hiddenFields'>
<input type="hidden" name="ACT" value="6" />
<input type="hidden" name="XID" value="7559fd5beae1791a114bef73369baf80ba0b9f22" />
<input type="hidden" name="RES" value="10" />
<input type="hidden" name="meta" value="vJed+IEhaFn3W7jNVVY8C6VK4KKB0doGerxtt+3TXJkJkrK5M3OFhLNfv7UrH+uJhVYy/SM2Y8CEBzxS9ZAY+5Ry234MoWdF0KwpptDKKX/rJJg1NP4Y7SntDPwMKWd0mrV/+nbWgdpLXyGAXHtWDd/W8QMHWePL8qfhqCpJzaK4pU2LxFEhOj26ZDN4P+8d8hXffYqEVMiMRDrkUYAlZAa+r08a/igafmWKpfXqcmFAHWq/qsh+zoaTz9V6wiUJl2MMAdfHTEZ76nZbWvE5NUZpcvtxRexke8gSzhsFUK46dJJ8pJfmOvPccKB8bfwmBU4cgAZ668OleVhPUZRHiYhGfX21C2DodUFydLdhuEPR2Upj1jdw5RfdVF8nWXwA5G5T4DRd4xKMtKvVvr1BpJKZ37Gid+DBZjiqIcAhYCY=" />
<input type="hidden" name="site_id" value="1" />
</div>
<p role="search">
<label for="query">Looking for something?</label>
<input type="search" name="keywords" id="query" value=""/>
<button type="submit">Search</button>
</p>
</form>
<nav id="nav-account" style="display: none" role="navigation">
<ul class="buttons">
<li><a href="../../sign-up/index.html" style="display: none">Sign up</a></li>
<li><a href="../../log-in/index.html" style="display: none">Log in</a></li>
</ul>
</nav>
<footer role="contentinfo" id="page-footer">
<div id="site-info">
<div id="elevator-pitch" class="footer-item">
<p>Web Standards Sherpa’s experts provide helpful, pragmatic and up-to-date advice on best practices for web professionals everywhere.</p>
<ul class="more">
<li><a href="../index.html">More about us</a></li>
<li><a href="../../contact/index.html" style="display: none">Contact us</a></li>
</ul>
</div>
<nav id="nav-complete" role="navigation">
<section class="participate" style="display: none">
<h1>Participate</h1>
<ul>
<li><a href="../../submit-a-site/index.html">Submit a site</a></li>
<li><a href="../../submit-a-question/index.html">Submit a question</a></li>
<li><a href="../../sign-up/index.html" style="display: none">Sign up</a><a href="../../log-in/index.html" style="display: none">Log in</a></li>
</ul>
</section>
<section class="learn">
<h1>Learn</h1>
<ul>
<li><a href="../../reviews/index.html">Reviews</a></li>
<li><a href="../../ask-the-sherpas/index.html">Ask Sherpas</a></li>
<li><mark><a href="index.html">Authors</a></mark></li>
<li><a href="../../glossary/index.html">Glossary</a></li>
</ul>
</section>
</nav>
<section id="sponsors" class="footer-item">
<h1>We thank our sponsors</h1>
<ol class="partners"> <li>
<a href="http://www.microsoft.com"><img src="../../i/p/microsoft-mono.png" alt="Microsoft"/></a>
</li>
<li>
<a href="http://mailchimp.com"><img src="../../i/p/mc-mono.png" alt="MailChimp"/></a>
</li>
<li>
<a href="http://developer.mozilla.org"><img src="../../i/p/mozilla-mono.png" alt="Mozilla"/></a>
</li>
<li>
<a href="http://mediatemple.net"><img src="../../i/p/mt-mono.png" alt="Media Temple"/></a>
</li>
</ol>
</section>
</div>
<div id="terms" class="source-org vcard">
<p id="ownership"><a xmlns:dct="http://purl.org/dc/terms/" href="../../index.html" property="dct:title" rel="cc:attributionURL">Web Standards Sherpa</a> is an outreach effort by the <a class="org fn url" xmlns:cc="http://creativecommons.org/ns#" href="http://webstandards.org" property="cc:attributionName">Web Standards Project (WaSP)<img src="../../i/WaSP-logo-mono.png" alt="" /></a>.</p>
<!-- <p id="network">This site is a proud member of the <a rel="license" href="http://network.smashingmagazine.com/">Smashing Network<img src="/i/p/smashing-mono.png" alt="" /></a>.</p> -->
<p id="license">The content of this site is licensed under <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons<img src="../../i/license.png" alt="" /></a>.</p>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script>window.jQuery || document.write("<script src='../../j/jquery.js'>\x3C/script>")</script>
<script src="../../j/main.js"></script>
<!-- Just to see if this works -->
<!--[if lte IE 6]><script src="/j/ie6.js"></script><![endif]-->
<script type="text/javascript">
var rpxJsHost = (("https:" == document.location.protocol) ? "https://" : "http://static.");
document.write(unescape("%3Cscript src='" + rpxJsHost + "rpxnow.com/js/lib/rpx.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
RPXNOW.overlay = true;
RPXNOW.language_preference = "en";
RPXNOW.init({appId: 'cdnifhbomckchfhfgbpl', xdReceiver: '/rpx_xdcomm.html'});
</script>
<div id="ClickTaleDiv" style="display: none;"></div>
<script type="text/javascript">
if ( document.location.protocol!='https:' )
{
$.getScript('http://s.clicktale.net/WRb6.js',function(){
if ( typeof ClickTale=='function' )
{ClickTale(16473,0.1,"www02");}
});
}
</script>
</body>
</html>
| WebStandardsSherpa/webstandardssherpa.com | about/authors/allison-wagner.html | HTML | mit | 15,493 |
'use strict';
import React from 'react';
import { external_url_map } from "../components/globals";
/**
* Method to display either mode of inheritance with adjective,
* or just mode of inheritance if no adjective
* @param {object} object - A GDM or Interpretation object
*/
export function renderSelectedModeInheritance(object) {
let moi = '', moiAdjective = '';
if (object && object.modeInheritance) {
moi = object.modeInheritance;
if (object.modeInheritanceAdjective) {
moiAdjective = object.modeInheritanceAdjective;
}
}
return (
<span>{moi && moi.length ? renderModeInheritanceLink(moi, moiAdjective) : 'None'}</span>
);
}
/**
* Method to construct mode of inheritance linkout
*/
function renderModeInheritanceLink(modeInheritance, modeInheritanceAdjective) {
if (modeInheritance) {
let start = modeInheritance.indexOf('(');
let end = modeInheritance.indexOf(')');
let hpoNumber;
let adjective = modeInheritanceAdjective && modeInheritanceAdjective.length ? ' (' + modeInheritanceAdjective.match(/^(.*?)(?: \(HP:[0-9]*?\)){0,1}$/)[1] + ')' : '';
if (start && end) {
hpoNumber = modeInheritance.substring(start+1, end);
}
if (hpoNumber && hpoNumber.indexOf('HP:') > -1) {
let hpoLink = external_url_map['HPO'] + hpoNumber;
return (
<span><a href={hpoLink} target="_blank">{modeInheritance.match(/^(.*?)(?: \(HP:[0-9]*?\)){0,1}$/)[1]}</a>{adjective}</span>
);
} else {
return (
<span>{modeInheritance + adjective}</span>
);
}
}
} | ClinGen/clincoded | src/clincoded/static/libs/render_mode_inheritance.js | JavaScript | mit | 1,687 |
IF EXISTS (SELECT * FROM sys.objects WHERE type = 'P' AND SCHEMA_NAME([schema_id]) = 'EPONS' AND QUOTENAME(name) = '[FindFacilityById]')
DROP PROCEDURE [EPONS].[FindFacilityById]
GO
CREATE PROCEDURE [EPONS].[FindFacilityById]
@facilityId UNIQUEIDENTIFIER
AS
SELECT
[facility].[FacilityId] AS [Id],
[facility].[Name] AS [Name],
[facility].[MonthlyRate] AS [MonthlyRate],
[facility].[IsFunder] AS [IsFunder],
[facility].[AdmissionTypeId] AS [AdmissionTypeId]
FROM [Facility].[Details] AS [facility]
WHERE [facility].[FacilityId] = @facilityId
EXEC [Audit].[CreateLogEntry] '[EPONS].[FindFacilityById]', 'Executed' | developersworkspace/EPONS | SourceCode/EPONS/EPONS.Teddy.Database/Procedures/FindFacilityById.sql | SQL | mit | 621 |
# Terminal-Trivia
Play trivia in the command-line.
To play, download the Terminal-Trivia folder and run the `terminal_trivia.py` program as you would normally run a Python program.

You can also enable "GIF-mode," which opens a Parks and Rec GIF in your webbrowser after the end of the game:
`python terminal_trivia.py --gif`
| aykim17/Terminal-Trivia | README.md | Markdown | mit | 414 |
package com.microsoft.bingads.v12.api.test.entities.criterions.adgroup.age.read;
import java.util.Arrays;
import java.util.Collection;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameter;
import org.junit.runners.Parameterized.Parameters;
import com.microsoft.bingads.internal.functionalinterfaces.Function;
import com.microsoft.bingads.v12.api.test.entities.criterions.adgroup.age.BulkAdGroupAgeCriterionTest;
import com.microsoft.bingads.v12.bulk.entities.BulkAdGroupAgeCriterion;
import com.microsoft.bingads.v12.campaignmanagement.AdGroupCriterionStatus;
@RunWith(Parameterized.class)
public class BulkAdGroupAgeCriterionReadStatusTest extends BulkAdGroupAgeCriterionTest {
@Parameter(value = 1)
public AdGroupCriterionStatus expectedResult;
@Parameters
public static Collection<Object[]> data() {
return Arrays.asList(
new Object[][]{
{"", null},
{null, null},
{"Active", AdGroupCriterionStatus.ACTIVE},
{"Paused", AdGroupCriterionStatus.PAUSED},
{"Deleted", AdGroupCriterionStatus.DELETED}
}
);
}
@Test
public void testRead() {
testReadProperty(
"Status",
datum,
expectedResult,
new Function<BulkAdGroupAgeCriterion, AdGroupCriterionStatus>() {
@Override
public AdGroupCriterionStatus apply(BulkAdGroupAgeCriterion c) {
return c.getBiddableAdGroupCriterion().getStatus();
}
}
);
}
}
| bing-ads-sdk/BingAds-Java-SDK | src/test/java/com/microsoft/bingads/v12/api/test/entities/criterions/adgroup/age/read/BulkAdGroupAgeCriterionReadStatusTest.java | Java | mit | 1,769 |
---
title: Retrieve Users with the Get Users Endpoint
description: Learn how to retrieve lists of users using the get_users endpoint.
topics:
- users
- user-management
- search
contentType: how-to
useCase:
- manage-users
---
# Retrieve Users with the Get Users Endpoint
The [`GET /api/v2/users` endpoint](/api/management/v2#!/Users/get_users) allows you to retrieve a list of users. Using this endpoint, you can:
* Search based on a variety of criteria
* Select the fields to be returned
* Sort the returned results
This endpoint is **eventually consistent**, and as such, we recommend that you use this endpoint for back office processes such as changing the display name of an existing user.
<%= include('./_valid-access-token') %>
## Search for users
To search for users, make a `GET` request to the [/api/v2/users endpoint](/api/management/v2#!/Users/get_users). Pass your search query to the `q` parameter and set the `search_engine` parameter to `v3`.
### Example request
For example, to search for a user whose email is exactly `jane@exampleco.com`, use `q=email:"jane@exampleco.com"`:
```har
{
"method": "GET",
"url": "https://${account.namespace}/api/v2/users",
"httpVersion": "HTTP/1.1",
"headers": [{
"name": "Authorization",
"value": "Bearer YOUR_MGMT_API_ACCESS_TOKEN"
}],
"queryString": [
{
"name": "q",
"value": "email:\"jane@exampleco.com\""
},
{
"name": "search_engine",
"value": "v3"
}
]
}
```
For more information on other available parameters, check out the [Management API Explorer documentation](/api/management/v2#!/Users/get_users).
### Sample queries
Below are some examples to show the kinds of queries you can make with the Management API.
Use case | Query
---------|------
Search for all users whose name contains "john" | `name:*john*`
Search all users whose name is exactly "jane" | `name:"jane"`
Search for all user names starting with "john" | `name:john*`
Search for user names that start with "jane" and end with "smith" | `name:jane*smith`
Search for all users whose email is exactly "john@exampleco.com" | `email:"john@exampleco.com"`
Search for all users whose email is exactly "john@exampleco.com" or "jane@exampleco.com" using `OR` | `email:("john@exampleco.com" OR "jane@exampleco.com")`
Search for users without verified email | `email_verified:false OR NOT _exists_:email_verified`
Search for users who have the `user_metadata` field named `full_name` with the value of "John Smith" | `user_metadata.full_name:"John Smith"`
Search for users from a specific connection | `identities.connection:"google-oauth2"`
Search for all users that have never logged in | `(NOT _exists_:logins_count OR logins_count:0)`
Search for all users who logged in before 2018 | `last_login:[* TO 2017-12-31]`
Search for all users whose last login was in December 2017 | `last_login:{2017-11 TO 2017-12]`, `last_login:[2017-12-01 TO 2017-12-31]`
Search for all users with logins count >= 100 and <= 200 | `logins_count:[100 TO 200]`
Search for all users with logins count >= 100 | `logins_count:[100 TO *]`
Search for all users with logins count > 100 and < 200 | `logins_count:{100 TO 200}`
Search for all users whose email domain is "exampleco.com" | `email.domain:"exampleco.com"`
### Sample results
Successful calls to the endpoint return a JSON object similar to the following:
```json
[
{
"email": "john.doe@gmail.com",
"email_verified": false,
"username": "johndoe",
"phone_number": "+199999999999999",
"phone_verified": false,
"user_id": "usr_5457edea1b8f33391a000004",
"created_at": "",
"updated_at": "",
"identities": [
{
"connection": "Initial-Connection",
"user_id": "5457edea1b8f22891a000004",
"provider": "auth0",
"isSocial": false
}
],
"app_metadata": {},
"user_metadata": {},
"picture": "",
"name": "",
"nickname": "",
"multifactor": [
""
],
"last_ip": "",
"last_login": "",
"logins_count": 0,
"blocked": false,
"given_name": "",
"family_name": ""
}
]
```
## Limitations
This endpoint allows you to retrieve a maximum of 1000 users. If your results exceed this threshold, redefine your search. If you need a complete export of all of your users, instead use the [export job](/api/management/v2#!/Jobs/post_users_exports) or the [User Import / Export](/extensions/user-import-export) extension.
If you get the error `414 Request-URI Too Large` this means that your query string is larger than the supported length. In this case, refine your search.
We do **not** recommend that you use this endpoint for:
* Operations that require immediate consistency. Instead, use the [Get Users by Email endpoint](/users/search/v3/get-users-by-email-endpoint) or the [Get Users by ID endpoint](/users/search/v3/get-users-by-id-endpoint).
* User exports. Instead, use the [User Export endpoint](/users/guides/bulk-user-exports).
* Operations that require user search as part of authentication processes. Instead, use the [Get Users by Email endpoint](/users/search/v3/get-users-by-email-endpoint) or the [Get Users by ID endpoint](/users/search/v3/get-users-by-id-endpoint).
* Searching for Users for [Account Linking](/link-accounts) by Email. Instead, use the [Get Users by Email endpoint](/users/search/v3/get-users-by-email-endpoint).
## Keep reading
* [Sort Search Results](/users/search/v3/sort-search-results)
* [View Search Results by Page](/users/search/v3/view-search-results-by-page)
* [Bulk User Exports](/users/guides/bulk-user-exports)
* [Migrate from Search V2 to V3](/users/search/v3/migrate-search-v2-v3)
* [User Search Query Syntax](/users/search/v3/query-syntax)
* [Search Best Practices](/best-practices/search-best-practices)
* [Management API Explorer](/api/management/v2#!/Users/get_users)
| yvonnewilson/docs | articles/users/search/v3/get-users-endpoint.md | Markdown | mit | 5,929 |
#include <exceptxx/PrecondException.h>
#include <iostream>
using namespace std;
int main(int argc, const char*[])
{
try
{
CHECK_PRECOND(argc > 1) << "Expect some command line arguments";
}
catch (const exception& ex)
{
cerr << ex.what() << endl << endl;
}
return 0;
}
| SergiusTheBest/exceptxx | samples/Precond/Main.cpp | C++ | mit | 318 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Form | Point</title>
<meta name="description" content="A flexible CSS Framework for building modern responsive web apps">
<meta name="keywords" content="css,sass,flexbox,responsive,front-end,mobile-first,framework,web">
<link rel="stylesheet" href="https://moyus.github.io/point/css/point.css?v=140">
<link rel="stylesheet" href="https://moyus.github.io/point/css/style.css?v=140">
<script src="https://cdn.bootcss.com/holder/2.9.4/holder.min.js"></script>
</head>
<body>
<div id="docs" class="site">
<header class="site-topbar">
<nav class="navbar site-navigation">
<div class="navbar__start">
<a href="https://moyus.github.io/point/getting-started" class="navbar__item navbar__brand">
<svg width="32px" height="32px" class="u-mr-10" viewBox="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="M10,0 L50,0 L50,0 C77.6142375,-5.07265313e-15 100,22.3857625 100,50 L100,90 C100,95.5228475 95.5228475,100 90,100 L50,100 C22.3857625,100 3.38176876e-15,77.6142375 0,50 L0,10 L0,10 C-6.76353751e-16,4.4771525 4.4771525,1.01453063e-15 10,0 L10,0 Z M50,85 C69.3299662,85 85,69.3299662 85,50 C85,30.6700338 69.3299662,15 50,15 C30.6700338,15 15,30.6700338 15,50 C15,69.3299662 30.6700338,85 50,85 Z M50,70 C38.954305,70 30,61.045695 30,50 C30,38.954305 38.954305,30 50,30 C61.045695,30 70,38.954305 70,50 C70,61.045695 61.045695,70 50,70 Z" fill="#7872FF"></path>
</svg>
Point
</a>
</div>
<!-- END .navbar__left -->
<div class="navbar__end">
<div class="navbar__item">v1.4.0</div>
<div class="navbar__item">
<a href="https://github.com/moyus/point" class="btn btn--outline btn--primary">Github</a>
</div>
</div>
<!-- END .navbar__right -->
</nav>
</header>
<!-- END .site -->
<div class="site-content">
<aside class="site-sidebar">
<nav id="sidenav" class="c-sidenav">
<a href="https://github.com/didi/mand-mobile" class="u-block u-mb-15" target="blank" title="Mand Mobile">
<img src="https://manhattan.didistatic.com/static/manhattan/do1_HlCS1Ui8SyHZiVKRAdlv" srcset="https://manhattan.didistatic.com/static/manhattan/do1_HlCS1Ui8SyHZiVKRAdlv 1x, https://manhattan.didistatic.com/static/manhattan/do1_jrkNJc4LY78XflkeKN9Q 2x" class="img-fluid" alt="Mand Mobile">
</a>
<ul class="c-sidenav__group">
<li class="c-sidenav__label">Getting started</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/getting-started/index.html#introduction" class="c-sidenav__link">Introduction</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/getting-started/index.html#setup" class="c-sidenav__link">Setup</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/getting-started/index.html#customize" class="c-sidenav__link">Customize</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/getting-started/style-guide.html" class="c-sidenav__link">Style Guide</a>
</li>
</ul>
<!-- END .c-sidenav__group -->
<ul class="c-sidenav__group">
<li class="c-sidenav__label">Layouts</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/layouts/flex-grid.html" class="c-sidenav__link">Flex Grid</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/layouts/level.html" class="c-sidenav__link">Level</a>
</li>
</ul>
<!-- END .c-sidenav__group -->
<ul class="c-sidenav__group">
<li class="c-sidenav__label">Elements</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/elements/typography.html" class="c-sidenav__link">Typography</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/elements/badges.html" class="c-sidenav__link">Badges</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/elements/buttons.html" class="c-sidenav__link">Buttons</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/elements/form.html" class="c-sidenav__link">Form</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/elements/tables.html" class="c-sidenav__link">Tables</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/elements/hint.html" class="c-sidenav__link">Hint</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/elements/icons.html" class="c-sidenav__link">Icons</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/elements/media.html" class="c-sidenav__link">Media</a>
</li>
</ul>
<!-- END .c-sidenav__group -->
<ul class="c-sidenav__group">
<li class="c-sidenav__label">Components</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/components/box.html" class="c-sidenav__link">Box</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/components/note.html" class="c-sidenav__link">Note</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/components/lists.html" class="c-sidenav__link">Lists</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/components/progress.html" class="c-sidenav__link">Progress</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/components/navs.html" class="c-sidenav__link">Navs</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/components/navbar.html" class="c-sidenav__link">Navbar</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/components/breadcrumb.html" class="c-sidenav__link">Breadcrumb</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/components/pagination.html" class="c-sidenav__link">Pagination</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/components/dropmenu.html" class="c-sidenav__link">Dropmenu</a>
</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/components/modal.html" class="c-sidenav__link">Modal</a>
</li>
</ul>
<!-- END .c-sidenav__group -->
<ul class="c-sidenav__group">
<li class="c-sidenav__label">Utilities</li>
<li class="c-sidenav__item">
<a href="https://moyus.github.io/point/utilities/helpers.html" class="c-sidenav__link">Helpers</a>
</li>
</ul>
<!-- END .c-sidenav__group -->
</nav>
</aside>
<!-- END .site-sidebar -->
<main id="main" class="site-main c-content" role="main">
<h1 id="form">Form</h1>
<ul>
<li><a href="#types">Types</a><ul>
<li><a href="#inputs">Inputs</a></li>
<li><a href="#checkbox-radio">Checkbox & Radio</a></li>
<li><a href="#textarea">Textarea</a></li>
<li><a href="#select">Select</a></li>
</ul>
</li>
<li><a href="#states">States</a></li>
<li><a href="#sizes">Sizes</a></li>
<li><a href="#field">Field</a></li>
<li><a href="#flex">Flex</a></li>
<li><a href="#inline">Inline</a></li>
<li><a href="#horizontal">Horizontal</a></li>
</ul>
<h2 id="types">Types</h2>
<p>There are six basic types of form element: <code>.form-input</code>, <code>.form-select</code>,
<code>.form-checkbox</code>, <code>.form-radio</code>, <code>.form-switch</code>, <code>.form-textarea</code></p>
<h3 id="input-types">Input types</h3>
<form class="form-horizontal">
<div class="form-field l-row">
<label class="form-label l-col-2@md">Text</label>
<div class="l-col-10@md">
<input type="text" class="form-input" placeholder="Enter your name">
</div>
</div>
<div class="form-field l-row">
<label class="form-label l-col-2@md">Password</label>
<div class="l-col-10@md">
<input type="password" class="form-input" value="123456">
</div>
</div>
<div class="form-field l-row">
<label class="form-label l-col-2@md">Email</label>
<div class="l-col-10@md">
<input type="email" class="form-input" value="moyuboy@gmail.com">
</div>
</div>
<div class="form-field l-row">
<label class="form-label l-col-2@md">Url</label>
<div class="l-col-10@md">
<input type="url" class="form-input" value="https://github.com/moyus/point">
</div>
</div>
<div class="form-field l-row">
<label class="form-label l-col-2@md">Tel</label>
<div class="l-col-10@md">
<input type="tel" class="form-input" value="010-123456">
</div>
</div>
<div class="form-field l-row">
<label class="form-label l-col-2@md">Number</label>
<div class="l-col-10@md">
<input type="number" class="form-input" value="666">
</div>
</div>
<div class="form-field l-row">
<label class="form-label l-col-2@md">Color</label>
<div class="l-col-10@md">
<input type="color" class="form-input">
</div>
</div>
<div class="form-field l-row">
<label class="form-label l-col-2@md">Date</label>
<div class="l-col-10@md">
<input type="date" class="form-input">
</div>
</div>
<div class="form-field l-row">
<label class="form-label l-col-2@md">File</label>
<div class="l-col-10@md">
<input type="file" class="form-input">
</div>
</div>
</form>
<pre><code class="lang-html"><input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span> placeholder=<span class="hljs-string">"Enter your name"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"password"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span> value=<span class="hljs-string">"123456"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"email"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span> value=<span class="hljs-string">"moyuboy@gmail.com"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"url"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span> value=<span class="hljs-string">"https://github.com/moyus/point"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"tel"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span> value=<span class="hljs-string">"010-123456"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"number"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span> value=<span class="hljs-string">"666"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"color"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"date"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"file"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span>>
</code></pre>
<h3 id="checkbox-radio">Checkbox & Radio</h3>
<div class="form-field">
<label class="form-label">Gender</label>
<label class="form-radio">
<input type="radio" name="gender">
<span class="form-radio__indicator"></span>
Male
</label>
<label class="form-radio">
<input type="radio" name="gender">
<span class="form-radio__indicator"></span>
Female
</label>
</div>
<pre><code class="lang-html"><div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field"</span>>
<span class="xml"><span class="hljs-tag"><<span class="hljs-name">label</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"form-label"</span>></span>Gender<span class="hljs-tag"></<span class="hljs-name">label</span>></span></span>
<label <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-radio"</span>>
<span class="xml"><span class="hljs-tag"><<span class="hljs-name">input</span> <span class="hljs-attr">type</span>=<span class="hljs-string">"radio"</span> <span class="hljs-attr">name</span>=<span class="hljs-string">"gender"</span>></span>
<span class="hljs-tag"><<span class="hljs-name">span</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"form-radio__indicator"</span>></span><span class="hljs-tag"></<span class="hljs-name">span</span>></span>
Male
<span class="hljs-tag"></<span class="hljs-name">label</span>></span></span>
<label <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-radio"</span>>
<span class="xml"><span class="hljs-tag"><<span class="hljs-name">input</span> <span class="hljs-attr">type</span>=<span class="hljs-string">"radio"</span> <span class="hljs-attr">name</span>=<span class="hljs-string">"gender"</span>></span>
<span class="hljs-tag"><<span class="hljs-name">span</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"form-radio__indicator"</span>></span><span class="hljs-tag"></<span class="hljs-name">span</span>></span>
Female
<span class="hljs-tag"></<span class="hljs-name">label</span>></span></span>
<<span class="hljs-regexp">/div></span>
</code></pre>
<div class="form-field">
<label class="form-checkbox">
<input type="checkbox" name="remember" />
<span class="form-checkbox__indicator"></span>
Remember Me?
</label>
</div>
<pre><code class="lang-html"><div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field"</span>>
<span class="xml"><span class="hljs-tag"><<span class="hljs-name">label</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"form-checkbox"</span>></span>
<span class="hljs-tag"><<span class="hljs-name">input</span> <span class="hljs-attr">type</span>=<span class="hljs-string">"checkbox"</span> <span class="hljs-attr">name</span>=<span class="hljs-string">"remember"</span> /></span>
<span class="hljs-tag"><<span class="hljs-name">span</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"form-checkbox__indicator"</span>></span><span class="hljs-tag"></<span class="hljs-name">span</span>></span>
Remember Me?
<span class="hljs-tag"></<span class="hljs-name">label</span>></span>
<span class="hljs-tag"></<span class="hljs-name">div</span>></span></span>
</code></pre>
<div class="form-field">
<label class="form-switch">
<input type="checkbox" name="light">
<span class="form-switch__indicator"></span>
Turn the light on
</label>
</div>
<pre><code class="lang-html"><div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field"</span>>
<span class="xml"><span class="hljs-tag"><<span class="hljs-name">label</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"form-switch"</span>></span>
<span class="hljs-tag"><<span class="hljs-name">input</span> <span class="hljs-attr">type</span>=<span class="hljs-string">"checkbox"</span> <span class="hljs-attr">name</span>=<span class="hljs-string">"light"</span>></span>
<span class="hljs-tag"><<span class="hljs-name">span</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"form-switch__indicator"</span>></span><span class="hljs-tag"></<span class="hljs-name">span</span>></span>
Turn the light on
<span class="hljs-tag"></<span class="hljs-name">label</span>></span>
<span class="hljs-tag"></<span class="hljs-name">div</span>></span></span>
</code></pre>
<h3 id="textarea">Textarea</h3>
<div class="form-field">
<textarea class="form-textarea" rows="4"></textarea>
</div>
<pre><code class="lang-html"><textarea <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-textarea"</span> rows=<span class="hljs-string">"4"</span>><span class="xml"><span class="hljs-tag"></<span class="hljs-name">textarea</span>></span></span>
</code></pre>
<h3 id="select">Select</h3>
<div class="form-field">
<select class="form-select">
<option value="0" selected>Beijing</option>
<option value="1">Washington</option>
<option value="2">Tokyo</option>
<option value="3">London</option>
<option value="4">Paris</option>
</select>
</div>
<div class="form-field">
<label class="form-label">Multiple select</label>
<select class="form-select" multiple>
<option value="0">Beijing</option>
<option value="1">Washington</option>
<option value="2" selected>Tokyo</option>
<option value="3">London</option>
<option value="4">Paris</option>
</select>
</div>
<pre><code class="lang-html"><span class="hljs-tag"><<span class="hljs-name">div</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"form-field"</span>></span>
<span class="hljs-tag"><<span class="hljs-name">select</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"form-select"</span>></span>
<span class="hljs-tag"><<span class="hljs-name">option</span> <span class="hljs-attr">value</span>=<span class="hljs-string">"0"</span> <span class="hljs-attr">selected</span>></span>Beijing<span class="hljs-tag"></<span class="hljs-name">option</span>></span>
<span class="hljs-tag"><<span class="hljs-name">option</span> <span class="hljs-attr">value</span>=<span class="hljs-string">"1"</span>></span>Washington<span class="hljs-tag"></<span class="hljs-name">option</span>></span>
<span class="hljs-tag"><<span class="hljs-name">option</span> <span class="hljs-attr">value</span>=<span class="hljs-string">"2"</span>></span>Tokyo<span class="hljs-tag"></<span class="hljs-name">option</span>></span>
<span class="hljs-tag"><<span class="hljs-name">option</span> <span class="hljs-attr">value</span>=<span class="hljs-string">"3"</span>></span>London<span class="hljs-tag"></<span class="hljs-name">option</span>></span>
<span class="hljs-tag"><<span class="hljs-name">option</span> <span class="hljs-attr">value</span>=<span class="hljs-string">"4"</span>></span>Paris<span class="hljs-tag"></<span class="hljs-name">option</span>></span>
<span class="hljs-tag"></<span class="hljs-name">select</span>></span>
<span class="hljs-tag"></<span class="hljs-name">div</span>></span>
<span class="hljs-tag"><<span class="hljs-name">div</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"form-field"</span>></span>
<span class="hljs-tag"><<span class="hljs-name">label</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"form-label"</span>></span>Multiple select<span class="hljs-tag"></<span class="hljs-name">label</span>></span>
<span class="hljs-tag"><<span class="hljs-name">select</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"form-select"</span> <span class="hljs-attr">multiple</span>></span>
<span class="hljs-tag"><<span class="hljs-name">option</span> <span class="hljs-attr">value</span>=<span class="hljs-string">"0"</span>></span>Beijing<span class="hljs-tag"></<span class="hljs-name">option</span>></span>
<span class="hljs-tag"><<span class="hljs-name">option</span> <span class="hljs-attr">value</span>=<span class="hljs-string">"1"</span>></span>Washington<span class="hljs-tag"></<span class="hljs-name">option</span>></span>
<span class="hljs-tag"><<span class="hljs-name">option</span> <span class="hljs-attr">value</span>=<span class="hljs-string">"2"</span> <span class="hljs-attr">selected</span>></span>Tokyo<span class="hljs-tag"></<span class="hljs-name">option</span>></span>
<span class="hljs-tag"><<span class="hljs-name">option</span> <span class="hljs-attr">value</span>=<span class="hljs-string">"3"</span>></span>London<span class="hljs-tag"></<span class="hljs-name">option</span>></span>
<span class="hljs-tag"><<span class="hljs-name">option</span> <span class="hljs-attr">value</span>=<span class="hljs-string">"4"</span>></span>Paris<span class="hljs-tag"></<span class="hljs-name">option</span>></span>
<span class="hljs-tag"></<span class="hljs-name">select</span>></span>
<span class="hljs-tag"></<span class="hljs-name">div</span>></span>
</code></pre>
<h2 id="states">States</h2>
<div class="form-field">
<label class="form-label">Read only field</label>
<input type="text" class="form-input" value="23423" readonly>
</div>
<div class="form-field">
<label class="form-label">Disabled field</label>
<input type="text" class="form-input" value="you can't change me" disabled>
</div>
<div class="form-field">
<label class="form-label">Success</label>
<input type="text" class="form-input is-success">
</div>
<div class="form-field">
<label class="form-label">Danger</label>
<input type="text" class="form-input is-danger">
<small class="form-help u-color-danger">you enter the wrong text!</small>
</div>
<div class="form-field">
<label class="form-label">Warning</label>
<input type="text" class="form-input is-warning">
</div>
<pre><code class="lang-html"><input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span> value=<span class="hljs-string">"23423"</span> readonly>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span> value=<span class="hljs-string">"you can't change me"</span> disabled>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input is-success"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input is-danger"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input is-warning"</span>>
</code></pre>
<h2 id="sizes">Sizes</h2>
<p>By adding <code>.form-input--sm</code> or <code>.form-input--lg</code> to <code>.form-input</code> element and <code>.form-select--sm</code> or <code>.form-select--lg</code> to <code>.form-select</code> element to change default sizes.</p>
<div class="l-row">
<div class="l-col-6@sm">
<div class="form-field">
<label class="form-label">Small input</label>
<input type="text" class="form-input form-input--sm" />
</div>
</div>
<div class="l-col-6@sm">
<div class="form-field">
<label class="form-label">Small select</label>
<select class="form-select form-select--sm">
<option value="0" selected>Beijing</option>
<option value="1">Washington</option>
<option value="2">Tokyo</option>
<option value="3">London</option>
<option value="4">Paris</option>
</select>
</div>
</div>
</div>
<div class="l-row">
<div class="l-col-6@sm">
<div class="form-field">
<label class="form-label">Default input</label>
<input type="text" class="form-input">
</div>
</div>
<div class="l-col-6@sm">
<div class="form-field">
<label class="form-label">Default select</label>
<select class="form-select">
<option value="0" selected>Beijing</option>
<option value="1">Washington</option>
<option value="2">Tokyo</option>
<option value="3">London</option>
<option value="4">Paris</option>
</select>
</div>
</div>
</div>
<div class="l-row">
<div class="l-col-6@sm">
<div class="form-field">
<label class="form-label">Large input</label>
<input type="text" class="form-input form-input--lg">
</div>
</div>
<div class="l-col-6@sm">
<div class="form-field">
<label class="form-label">Large select</label>
<select class="form-select form-select--lg">
<option value="0" selected>Beijing</option>
<option value="1">Washington</option>
<option value="2">Tokyo</option>
<option value="3">London</option>
<option value="4">Paris</option>
</select>
</div>
</div>
</div>
<pre><code class="lang-html"><input type=<span class="hljs-string">"text"</span> <span class="hljs-keyword">class</span>=<span class="hljs-string">"form-input form-input--sm"</span>>
<input type=<span class="hljs-string">"text"</span> <span class="hljs-keyword">class</span>=<span class="hljs-string">"form-input"</span>>
<input type=<span class="hljs-string">"text"</span> <span class="hljs-keyword">class</span>=<span class="hljs-string">"form-input form-input--lg"</span>>
<<span class="hljs-keyword">select</span> <span class="hljs-keyword">class</span>=<span class="hljs-string">"form-select form-select--sm"</span>></<span class="hljs-keyword">select</span>>
<<span class="hljs-keyword">select</span> <span class="hljs-keyword">class</span>=<span class="hljs-string">"form-select"</span>></<span class="hljs-keyword">select</span>>
<<span class="hljs-keyword">select</span> <span class="hljs-keyword">class</span>=<span class="hljs-string">"form-select form-select--lg"</span>></<span class="hljs-keyword">select</span>>
</code></pre>
<h2 id="field">Field</h2>
<p>In addation to basic form inputs, there are some other form elements can be grouped together.</p>
<ul>
<li><code>.form-field</code><ul>
<li><code>.form-label</code></li>
<li><code>.form-group</code><ul>
<li>form elements</li>
</ul>
</li>
<li><code>.form-help</code></li>
</ul>
</li>
</ul>
<div class="form-field">
<label class="form-label">Label text</label>
<input type="text" class="form-input" placeholder="form input">
<small class="form-help">Input description text...</small>
</div>
<pre><code class="lang-html"><div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field"</span>>
<span class="xml"><span class="hljs-tag"><<span class="hljs-name">label</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"form-label"</span>></span>Label text<span class="hljs-tag"></<span class="hljs-name">label</span>></span></span>
<input type=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span> placeholder=<span class="hljs-string">"form input"</span>>
<span class="xml"><span class="hljs-tag"><<span class="hljs-name">small</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"form-help"</span>></span>Input description text...<span class="hljs-tag"></<span class="hljs-name">small</span>></span></span>
<<span class="hljs-regexp">/div></span>
</code></pre>
<h2 id="group">Group</h2>
<p>Use flexbox to create input group.</p>
<div class="form-field">
<div class="form-group">
<span class="form-addon"><a href="http://example.com/users/">http://example.com/users/</a></span>
<input type="text" class="form-input">
</div>
</div>
<div class="form-field">
<div class="form-group">
<input type="text" class="form-input">
<span class="form-addon">@example.com</span>
</div>
</div>
<div class="form-field">
<div class="form-group">
<span class="form-addon">$</span>
<input type="text" class="form-input">
<span class="form-addon">.00</span>
</div>
</div>
<div class="form-field">
<div class="form-group">
<span class="form-addon">From</span>
<input type="text" class="form-input">
<span class="form-addon">To</span>
<input type="text" class="form-input">
</div>
</div>
<div class="form-field">
<div class="form-group">
<span class="form-addon">
<input type="radio">
</span>
<input type="text" class="form-input">
</div>
</div>
<div class="form-field">
<div class="form-group">
<input type="text" class="form-input">
<span class="form-addon">
<input type="checkbox">
</span>
</div>
</div>
<pre><code class="lang-html"><div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field"</span>>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-group"</span>>
<span <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-addon"</span>>http:<span class="hljs-comment">//example.com/users/</span></span>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span>>
</div>
</div>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field"</span>>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-group"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span>>
<span <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-addon"</span>><span class="hljs-meta">@example</span>.com</span>
</div>
</div>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field"</span>>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-group"</span>>
<span <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-addon"</span>>$</span>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span>>
<span <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-addon"</span>><span class="hljs-number">.00</span></span>
</div>
</div>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field"</span>>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-group"</span>>
<span <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-addon"</span>><span class="hljs-type">From</span></span>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span>>
<span <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-addon"</span>><span class="hljs-type">To</span></span>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span>>
</div>
</div>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field"</span>>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-group"</span>>
<span <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-addon"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"radio"</span>>
</span>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span>>
</div>
</div>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field"</span>>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-group"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span>>
<span <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-addon"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"checkbox"</span>>
</span>
</div>
</div>
</code></pre>
<h2 id="inline">Inline</h2>
<p>Use the <code>.form-inline</code> class to display a series of group elements on a single horizontal row.</p>
<form class="form-inline u-mb-15">
<div class="form-field">
<label class="form-label">Username</label>
<input type="text" class="form-input">
</div>
<div class="form-field">
<label class="form-label">Password</label>
<input type="password" class="form-input">
</div>
<div class="form-field">
<label class="form-checkbox">
<input type="checkbox">
<span class="form-checkbox__indicator"></span>
Remember me?
</label>
</div>
<div class="form-field">
<button type="button" class="btn btn--primary btn--outline">Login</button>
</div>
</form>
<pre><code class="lang-html"><form <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-inline u-mb-15"</span>>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field"</span>>
<label <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-label"</span>><span class="hljs-type">Username</span></label>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span>>
</div>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field"</span>>
<label <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-label"</span>><span class="hljs-type">Password</span></label>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"password"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span>>
</div>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field"</span>>
<label <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-checkbox"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"checkbox"</span>>
<span <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-checkbox__indicator"</span>></span>
<span class="hljs-type">Remember</span> me?
</label>
</div>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field"</span>>
<button <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"button"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"btn btn--primary btn--outline"</span>><span class="hljs-type">Login</span></button>
</div>
</form>
</code></pre>
<h2 id="horizontal">Horizontal</h2>
<p>Use Grid System and <code>.form-horizontal</code> to create horizontal forms.</p>
<form class="form-horizontal u-mb-15">
<div class="form-field l-row">
<label class="form-label l-col-3@md">Username</label>
<div class="l-col-12 l-col-9@md">
<input type="text" class="form-input">
</div>
</div>
<div class="form-field l-row">
<label class="form-label l-col-3@md">Password</label>
<div class="l-col-12 l-col-9@md">
<input type="password" class="form-input">
</div>
</div>
<div class="form-field l-row">
<div class="l-col-9@md l-col-offset-3@md">
<label class="form-checkbox">
<input type="checkbox">
<span class="form-checkbox__indicator"></span>
Remember me?
</label>
</div>
</div>
<div class="form-field l-row">
<div class="l-col-9@md l-col-offset-3@md">
<button type="button" class="btn btn--primary">Login</button>
</div>
</div>
</form>
<pre><code class="lang-html"><form <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-horizontal u-mb-15"</span>>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field l-row"</span>>
<label <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-label l-col-3@md"</span>><span class="hljs-type">Username</span></label>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"l-col-12 l-col-9@md"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"text"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span>>
</div>
</div>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field l-row"</span>>
<label <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-label l-col-3@md"</span>><span class="hljs-type">Password</span></label>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"l-col-12 l-col-9@md"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"password"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-input"</span>>
</div>
</div>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field l-row"</span>>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"l-col-9@md l-col-offset-3@md"</span>>
<label <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-checkbox"</span>>
<input <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"checkbox"</span>>
<span <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-checkbox__indicator"</span>></span>
<span class="hljs-type">Remember</span> me?
</label>
</div>
</div>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"form-field l-row"</span>>
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"l-col-9@md l-col-offset-3@md"</span>>
<button <span class="hljs-class"><span class="hljs-keyword">type</span></span>=<span class="hljs-string">"button"</span> <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"btn btn--primary"</span>><span class="hljs-type">Login</span></button>
</div>
</div>
</form>
</code></pre>
</main>
<!-- END #main -->
</div>
<!-- END .site-content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<p>Designed and built by <a href="http://moyu.io">moyu</a></p>
<p>Licensed under the <a href="https://github.com/moyus/point/blob/master/LICENSE">MIT License</a>.</p>
</footer>
</div>
<script src="https://moyus.github.io/point/js/main.js"></script>
</body>
</html>
| moyus/point | docs/elements/form.html | HTML | mit | 43,071 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-solvable: 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.6.1 / mathcomp-solvable - 1.12.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-solvable
<small>
1.12.0
<span class="label label-info">Not compatible 👼</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: "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/solvable" "-j" "%{jobs}%" "COQEXTRAFLAGS+=-native-compiler yes" {coq-native:installed & coq:version < "8.13~" } ]
install: [ make "-C" "mathcomp/solvable" "install" ]
depends: [ "coq-mathcomp-algebra" { = version } ]
tags: [ "keyword:finite groups" "keyword:Feit Thompson theorem" "keyword:small scale reflection" "keyword:mathematical components" "keyword:odd order theorem" "logpath:mathcomp.solvable" ]
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 (II)"
description:"""
This library contains more definitions and theorems about finite groups.
"""
url {
src: "https://github.com/math-comp/math-comp/archive/mathcomp-1.12.0.tar.gz"
checksum: "sha256=a57b79a280e7e8527bf0d8710c1f65cde00032746b52b87be1ab12e6213c9783"
}
</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-solvable.1.12.0 coq.8.6.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.6.1).
The following dependencies couldn't be met:
- coq-mathcomp-solvable -> coq-mathcomp-algebra = 1.12.0 -> coq-mathcomp-fingroup = 1.12.0 -> coq-mathcomp-ssreflect = 1.12.0 -> coq >= 8.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-mathcomp-solvable.1.12.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>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.03.0-2.0.5/released/8.6.1/mathcomp-solvable/1.12.0.html | HTML | mit | 7,811 |
"use strict";
var echo = require('echo'),
Authorization = require('./auth.js'),
Packer = require('./packer.js'),
Request = require('./request.js'),
RequestOptions = require('./req-options.js'),
portMatch = /:(\d+)$/,
parse = function (host, port) {
var out = {
"host": "localhost",
"port": 80
},
match = portMatch.exec(host);
if (match) {
if (isNaN(port)) {
port = match[1];
}
host = host.slice(0, match.index);
}
if (host) {
out.host = host;
}
if (!isNaN(port)) {
out.port = Number(port);
}
return out;
},
secs = function (ms) {
var secs = ms / 1000;
return '(' + secs.toFixed(3) + ' sec)';
};
function Client() {
this.host = undefined;
this.port = undefined;
this.auth = undefined;
this.timeout = undefined;
this.verbose = undefined;
}
Client.prototype = {
"request": function (options, data, done, fail) {
var self = this,
auth = self.auth,
verbose = self.verbose,
target = self.toString(options),
req,
authStr;
if (auth) {
authStr = auth.toString(options);
}
req = Request.create(options, authStr);
req.on('response', function (res, options) {
var code = res.statusCode,
failed = function (msg) {
if (msg && verbose) {
echo(msg);
}
if (fail) {
fail(code, options, res);
} else {
res._dump();
}
};
if (verbose) {
echo(target, 'returned', code, secs(options.duration));
}
if (code === 401) {
if (auth) {
if (authStr) {
failed('Invalid credentials.');
} else {
auth.parse(res.headers);
res._dump();
self.request(options, data, done, fail);
}
} else {
failed('Credentials required.');
}
} else if (Math.floor(code / 100) === 2) {
if (done) {
done(res, options);
}
} else {
failed();
}
});
req.on('timeout', function (seconds) {
var sec = '(' + seconds + ' seconds)';
if (verbose) {
echo(target, 'timed out.', sec);
}
auth.clear();
if (fail) {
fail('ETIMEDOUT', options);
}
});
req.on('error', function (code, options) {
if (verbose) {
echo(target, code);
}
if (fail) {
fail(code, options);
}
});
if (verbose) {
echo(target);
}
req.send(data, self.timeout);
},
"get": function (path, done, fail) {
var options = RequestOptions.createGET(this.host, this.port, path);
this.request(options, undefined, done, fail);
},
"postEmpty": function (path, done, fail) {
var options = RequestOptions.createPOSTEmpty(this.host, this.port, path);
this.request(options, undefined, done, fail);
},
"post": function (path, mime, str, done, fail) {
var options = RequestOptions.createPOSTAs(this.host, this.port, path, mime, str);
this.request(options, str, done, fail);
},
"postString": function (path, str, done, fail) {
var options = RequestOptions.createPOSTString(this.host, this.port, path, str);
this.request(options, str, done, fail);
},
"postJSON": function (path, json, done, fail) {
var data = JSON.stringify(json),
options = RequestOptions.createPOSTJSON(this.host, this.port, path, data);
this.request(options, data, done, fail);
},
"postXML": function (path, xml, done, fail) {
var data = Packer.packXML(xml),
options = RequestOptions.createPOSTXML(this.host, this.port, path, data);
this.request(options, data, done, fail);
},
"toString": function (options) {
var host = this.host + ':' + this.port,
str = options.method + ' ' + host + options.path,
max = 60;
if (str.length > max) {
return str.slice(0, max) + '...';
}
return str;
}
};
module.exports = {
"create": function (info) {
var client = new Client(),
parsed;
if (!info) {
info = {};
}
parsed = parse(info.host, info.port);
client.host = parsed.host;
client.port = parsed.port;
if (info.user) {
client.auth = Authorization.create(info.user, info.pass);
}
client.timeout = info.timeout || 180;
client.verbose = info.verbose;
return client;
}
};
| snsolutionuk/mydash | views/js/node-aux/hdc/client.js | JavaScript | mit | 5,273 |
\chapter*{Hybrid questions}
\label{Hybrid questions}
\question{{\bf In welchem Bereich lag bei diesem ersten Arbeitsplatz der Schwerpunkt Ihrer eigenen T�tigkeit?} {\em (Mehrfachantworten m�glich)}}
\begin{answersA}
\item \ebox{Personalwesen}
\item \ebox{Finanzplanung}
\item \ebox{Management}
\item \ebox{Forschung und Entwicklung}
\item \ebox{Lehre}
\item \ebox{Verwaltungst�tigkeit}
\item \ebox{sonstige T�tigkeiten}
\item Welche?\linetext{}
\item \longline
\end{answersA}
\line
\question{\bf F�hlen Sie sich nachts an einem der unten aufgef�hrten Orte besonders bedroht?}
\hybridbracket{\underline{Ja}, und zwar...\\
\pbox{\quad in einer Unterf�hrung}\\
\pbox{\quad im Bus}\\
\pbox{\quad in einer Tiefgarage}\\
\pbox{\quad am Bahnhof}\\
\pbox{\quad im Industriegebiet}\\
\pbox{\quad im Wald}\\
\pbox{\quad im Park}\\
\pbox{\quad am See}}
{\em Sie k�nnen mehrere K�stchen ankreuzen}
\hybridline{\underline{Ja}, an einem anderen Ort:}{Ort bitte eintragen}
\hybridclear{\pbox{\underline{Nein}, an keinem der oben\\ angef�hrten Orte}}
\hybridclear{\pbox{\underline{Nein}, weil ich nachts an den oben\\ angef�hrten Orten nie bin}}
\hybridclear{\pbox{\underline{Wei� nicht}}}
\line
\question{\bf Welchen h�chsten allgemeinbildenden Schulabschluss haben Sie?}
\begin{longanswersA}
\item \pbox{Hauptschulabschluss (bzw. Volksschulabschluss)}
\item \pbox{Realschulabschluss (Mittlere Reife)}
\item \pbox{Polytechnische Oberschule 10. Klasse}
\item \pbox{Fachhochschulreife}
\item \pbox{Allgemeine oder fachgebundene Hoschulreife/Abitur}
\item \pbox{Anderer Abschluss und zwar \linetext{Bitte tragen Sie hier den Abschluss ein}}
\item \pbox{Noch Sch�ler}
\item \pbox{Keinen Schulabschluss}
\end{longanswersA} | Stoyicker/tex-survey-templates-qdds | include/content/hybrid_questions.tex | TeX | mit | 1,737 |
var searchData=
[
['database',['Database',['../namespace_pontikis_1_1_database.html',1,'Pontikis']]],
['pg_5fsequence_5fname_5fauto',['PG_SEQUENCE_NAME_AUTO',['../class_pontikis_1_1_database_1_1_dacapo.html#aef46219ed4c7133e99979e0d3aa5cd86',1,'Pontikis::Database::Dacapo']]],
['pontikis',['Pontikis',['../namespace_pontikis.html',1,'']]],
['prepared_5fstatements_5fnumbered',['PREPARED_STATEMENTS_NUMBERED',['../class_pontikis_1_1_database_1_1_dacapo.html#a963df8efcdd80ba37064e3cde0c8809a',1,'Pontikis::Database::Dacapo']]],
['prepared_5fstatements_5fquestion_5fmark',['PREPARED_STATEMENTS_QUESTION_MARK',['../class_pontikis_1_1_database_1_1_dacapo.html#a63dd2d4d612585c42c7e53e9b66caf24',1,'Pontikis::Database::Dacapo']]]
];
| pontikis/dacapo | docs/doxygen/html/search/all_a.js | JavaScript | mit | 738 |
namespace VSTOContrib.Outlook.Services
{
/// <summary>
/// Interface resposenting a synchronisation service
/// </summary>
public interface ISynchronisationService
{
/// <summary>
/// Gets a value indicating whether a sync is in progress.
/// </summary>
/// <value><c>true</c> if sync is in progress; otherwise, <c>false</c>.</value>
///
bool SyncInProgress { get; }
/// <summary>
/// Runs synchronisation
/// </summary>
void Synchronise();
/// <summary>
/// Runs synchronisation asynchronously
/// </summary>
void SynchroniseAsync();
}
}
| JakeGinnivan/VSTOContrib | src/VSTOContrib.Outlook/Services/ISynchronisationService.cs | C# | mit | 681 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>menhirlib: 58 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 / extra-dev</a></li>
<li class="active"><a href="">dev / menhirlib - 20211012</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
menhirlib
<small>
20211012
<span class="label label-success">58 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-02 09:43:56 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-02 09:43:56 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.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"
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/coq-menhirlib"
dev-repo: "git+https://gitlab.inria.fr/fpottier/menhir.git"
bug-reports: "https://gitlab.inria.fr/fpottier/menhir/-/issues"
license: "LGPL-3.0-or-later"
build: [
[make "-C" "coq-menhirlib" "-j%{jobs}%"]
]
install: [
[make "-C" "coq-menhirlib" "install"]
]
depends: [
"coq" { >= "8.7" }
]
conflicts: [
"menhir" { != "20211012" }
"coq-native"
]
tags: [
"date:2021-10-12"
"logpath:MenhirLib"
]
url {
src:
"https://gitlab.inria.fr/fpottier/menhir/-/archive/20211012/archive.tar.gz"
checksum: [
"md5=f631f4c03859254a7d725f054633ee44"
"sha512=13376d3c07158c36dd9b4617294a7e4d53ba90062ab09fae48c36b76f08133e2ffc4be13a1bc88980617c5d1046631844815c9ee7fd7c821699bacaf245b1ed8"
]
}
</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.20211012 coq.dev</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-menhirlib.20211012 coq.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>20 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-menhirlib.20211012 coq.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>58 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 6 M</p>
<ul>
<li>2 M <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Interpreter_complete.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Main.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Validator_complete.vo</code></li>
<li>316 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Interpreter.vo</code></li>
<li>234 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Interpreter_correct.vo</code></li>
<li>132 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Validator_safe.vo</code></li>
<li>115 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Interpreter_complete.glob</code></li>
<li>111 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Automaton.vo</code></li>
<li>85 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Grammar.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Alphabet.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Interpreter.glob</code></li>
<li>43 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Validator_complete.glob</code></li>
<li>35 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Alphabet.glob</code></li>
<li>33 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Interpreter_complete.v</code></li>
<li>29 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Validator_classes.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Interpreter_correct.glob</code></li>
<li>20 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Validator_safe.glob</code></li>
<li>19 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Interpreter.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Validator_complete.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Grammar.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Automaton.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Alphabet.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Validator_safe.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Main.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Validator_classes.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Interpreter_correct.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Automaton.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Grammar.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Main.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Validator_classes.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Version.vo</code></li>
<li>1 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Version.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/MenhirLib/Version.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-menhirlib.20211012</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>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.13.1-2.0.10/extra-dev/dev/menhirlib/20211012.html | HTML | mit | 10,789 |
0.8.1
- [#33](https://github.com/simulacre/em-ssh/pull/33) - Loosen net-ssh dependencies to permit > 3.2 [@kt97679](https://github.com/kt97679)
0.8.0
- [b1f5774](https://github.com/simulacre/em-ssh/commit/b1f5774f10b2496063db5d52bab66b1871b2cd26) - net-ssh 3.2.0; em 1.2.0; docker for testing. Contributions from Kirill Timofeev
0.7.0
- [88323761c67c433bd46fedfd042ae9a97b726cb6](https://github.com/simulacre/em-ssh/commit/88323761c67c433bd46fedfd042ae9a97b726cb6) - Deal with ssh servers that send algo data and server version at the same time (Dropbear). Discovered by [@mandre](https://github.com/mandre)
0.6.5
- [#26](https://github.com/simulacre/em-ssh/issues/26) - Remove echo binary
0.6.4
- [#24](https://github.com/simulacre/em-ssh/issues/24) - Don't zap Em::Ssh::Shell callbacks when sharing them with Net::Ssh::Connection::Channel
0.6.3
- [#25](https://github.com/simulacre/em-ssh/issues/25) - Failed negotiations are properly caught
0.6.2
- [#24](https://github.com/simulacre/em-ssh/pull/24) - Fix callbacks defined on EM::Ssh::Shell don't work [@mandre](https://github.com/mandre)
0.6.1
- Allow Shell#buffer to be cleared
0.6.0
- Disconnect error codes are converted to Ruby exceptions and raised
- ChannelOpen error codes are converted to Ruby exceptions and raised
- Shell#split will detect ChannelOpen errors and raise an Exception
0.5.1
- [#21](https://github.com/simulacre/em-ssh/pull/22) - Fix em-ssh throws exception when no logger is defined [@mandre](https://github.com/mandre)
- [#20](https://github.com/simulacre/em-ssh/pull/20) - Fix Interactive timeout wasn't set if parameter not fed [@freakhill](https://github.com/freakhill)
0.5.0
- Shell an Connection instances can have their own Loggers
- [#18](https://github.com/simulacre/em-ssh/pull/18) - Target devices and options for specs can be configured through environment variables [@freakhill](https://github.com/freakhill)
- [#19](https://github.com/simulacre/em-ssh/pull/19) - Decouple interactive behavior from Shell allowing for other channels to be extended with #expect, etc., [@freakhill](https://github.com/freakhill)
0.4.2
- Connection accepts :nego_timeout (seconds to wait for protocol and algorithm negotiation to finish)
- If protocol, or algorithm negotiation fail #errback will be called
- Shell#disconnect! forcefully terminates the connection
- Shell#disconnect takes a timeout
- EM::Ssh::Session#close overrides Net::SSH::Connection::Session to check for
transport before trying to close channels
- Fixes: dangling references to EM::Timers are removed from EM::Ssh::Connection
- Fixes: various dangling references to EM::Ssh::Connection and EM::Ssh::Session are properly removed
0.4.1
- Connections terminated before version negotiation wil fail with EM::Ssh::ConnectionTermianted
0.3.0
- Provides Shell#expect which can be used to wait for a string, or send a command and then wait
- Connection errors are provided as Deferreds and don't halt the entire reactor
- Shell timeouts are for inactivity and not total duration
- Shell buffer is maintained until wait_for matches; results from send_cmd without a corresponding wait_for will be retained in the buffer.
0.1.0
- Connection#initialize will fire :error Net::SSH::AuthenticationError when authentication fails rather than raising an error
- Shell#open will catch :error fired by Connection#initialize and raise it as a ConnectionError
- Shell no longer accepts :halt_on_timeout
- Shell#wait_for will fire :error if timeout is reached
- Key exchange exceptions will be caught and propagated through fire :error
0.0.3
- Removes CPU pegging via recursive EM.next_tick
- Adds an auto reconnect option to shell
| simulacre/em-ssh | CHANGELOG.md | Markdown | mit | 3,700 |
/*
* Generated by class-dump 3.3.4 (64 bit).
*
* class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard.
*/
#import "NSObject.h"
#import "NSCopying-Protocol.h"
@class NSMutableArray, NSString;
@interface PBXFindOptionsSet : NSObject <NSCopying>
{
NSString *_name;
struct {
unsigned int searchOpenFiles:1;
unsigned int searchOpenProjects:1;
unsigned int whichProjectFiles:2;
unsigned int projectFilesOrFrameworks:2;
unsigned int fileFilterType:2;
unsigned int searchFilesAndFolders:1;
unsigned int searchIncludedFiles:1;
unsigned int _RESERVED:22;
} _fosFlags;
NSMutableArray *_positiveNamePatternsArray;
NSMutableArray *_negativeNamePatternsArray;
NSMutableArray *_searchFilesArray;
}
+ (id)regularExpressionForPattern:(id)arg1;
+ (void)removeNamePattern:(id)arg1;
+ (void)addNamePattern:(id)arg1;
+ (void)replaceNamePatternAtIndex:(unsigned long long)arg1 withNamePattern:(id)arg2;
+ (id)namePatterns;
+ (void)_readNamePatterns;
+ (void)_writeNamePatterns;
+ (long long)indexOfOptionsSet:(id)arg1;
+ (void)removeGlobalFindOptionsSet:(id)arg1;
+ (void)addGlobalFindOptionSet:(id)arg1;
+ (id)globalFindOptionsSetWithName:(id)arg1;
+ (id)globalFindOptionsSets;
+ (void)_readGlobalSets;
+ (void)_writeGlobalSets;
- (id)searchFiles;
- (void)replaceSearchFileAtIndex:(long long)arg1 WithSearchFile:(id)arg2;
- (void)removeSearchFiles:(id)arg1;
- (void)addSearchFiles:(id)arg1;
- (void)removeNegativeNamePattern:(id)arg1;
- (void)addNegativeNamePattern:(id)arg1;
- (id)negativeNamePatterns;
- (void)removePositiveNamePattern:(id)arg1;
- (void)addPositiveNamePattern:(id)arg1;
- (id)positiveNamePatterns;
- (void)setFileFilterType:(int)arg1;
- (int)fileFilterType;
- (void)setProjectFindCandidates:(int)arg1;
- (int)projectFindCandidates;
- (void)setProjectFindScope:(int)arg1;
- (int)projectFindScope;
- (void)setFindInOpenProjects:(BOOL)arg1;
- (BOOL)findInOpenProjects;
- (void)setFindInFilesAndFolders:(BOOL)arg1;
- (BOOL)findInFilesAndFolders;
- (void)setFindInOpenFiles:(BOOL)arg1;
- (BOOL)findInOpenFiles;
- (void)setFindInIncludedFiles:(BOOL)arg1;
- (BOOL)findInIncludedFiles;
- (void)setName:(id)arg1;
- (id)name;
- (void)didChange;
- (long long)compare:(id)arg1;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (id)mutableCopyWithZone:(struct _NSZone *)arg1;
- (void)dealloc;
- (id)init;
- (void)readPropertyListRepresentation:(id)arg1;
- (id)propertyListRepresentation;
@end
| liyong03/YLCleaner | YLCleaner/Xcode-RuntimeHeaders/DevToolsInterface/PBXFindOptionsSet.h | C | mit | 2,504 |
import test from 'ava';
import debounce from 'lodash.debounce';
import webpack from 'webpack';
import 'babel-core/register';
import helper from './_helper';
import expected from './basic/expected.json';
test.beforeEach(t => {
const config = helper.getSuiteConfig('basic');
t.context.config = config
t.context.extractOpts = helper.getExtractOptions(config);
t.end();
})
test('basic', t => {
t.plan(1);
const callback = (err, stats) => {
err = err || (stats.hasErrors() ? new Error(stats.toString()) : null)
if (err) { t.fail(err); t.end(); }
setTimeout(() => {
const output = require(t.context.extractOpts.outputFile);
t.same(output, expected);
t.end();
}, t.context.extractOpts.writeDebounceMs);
}
webpack(t.context.config, callback);
})
test('basic (onOutput)', t => {
t.plan(1);
const onOutput = debounce((filename, blob, total) => {
t.same(total, expected);
t.end();
}, t.context.extractOpts.writeDebounceMs);
const config = Object.assign({}, t.context.config, {
extractCssModuleClassnames: { onOutput }
});
const callback = (err, stats) => {
err = err || (stats.hasErrors() ? new Error(stats.toString()) : null)
if (err) { t.fail(err); t.end(); }
}
webpack(config, callback);
});
| mmrko/extract-css-module-classnames-loader | test/basic.js | JavaScript | mit | 1,287 |
//-----------------------------------------------
//
// This file is part of the Siv3D Engine.
//
// Copyright (c) 2008-2019 Ryo Suzuki
// Copyright (c) 2016-2019 OpenSiv3D Project
//
// Licensed under the MIT License.
//
//-----------------------------------------------
# include <Siv3D/MultiPolygon.hpp>
namespace s3d
{
MultiPolygon::MultiPolygon(const MultiPolygon& polygons)
: base_type(polygons.begin(), polygons.end())
{
}
MultiPolygon::MultiPolygon(MultiPolygon&& polygons)
: base_type(std::move(polygons))
{
}
MultiPolygon::MultiPolygon(const Array<Polygon>& polygons)
: base_type(polygons.begin(), polygons.end())
{
}
MultiPolygon::MultiPolygon(Array<Polygon>&& polygons)
: base_type(std::move(polygons))
{
}
MultiPolygon& MultiPolygon::operator =(const Array<Polygon>& other)
{
base_type::operator=(other);
return *this;
}
MultiPolygon& MultiPolygon::operator =(Array<Polygon>&& other) noexcept
{
base_type::operator=(std::move(other));
return *this;
}
MultiPolygon& MultiPolygon::operator =(const MultiPolygon& other)
{
base_type::operator=(other);
return *this;
}
MultiPolygon& MultiPolygon::operator =(MultiPolygon&& other) noexcept
{
base_type::operator=(std::move(other));
return *this;
}
void MultiPolygon::assign(const MultiPolygon& other)
{
base_type::operator=(other);
}
void MultiPolygon::assign(MultiPolygon&& other) noexcept
{
base_type::operator=(std::move(other));
}
MultiPolygon& MultiPolygon::operator <<(const Polygon& polygon)
{
base_type::push_back(polygon);
return *this;
}
void MultiPolygon::swap(MultiPolygon& other) noexcept
{
base_type::swap(other);
}
MultiPolygon& MultiPolygon::append(const Array<Polygon>& other)
{
base_type::insert(end(), other.begin(), other.end());
return *this;
}
MultiPolygon& MultiPolygon::append(const MultiPolygon& other)
{
base_type::insert(end(), other.begin(), other.end());
return *this;
}
MultiPolygon& MultiPolygon::remove_at(const size_t index)
{
base_type::remove_at(index);
return *this;
}
MultiPolygon& MultiPolygon::reverse()
{
base_type::reverse();
return *this;
}
MultiPolygon& MultiPolygon::rotate(const std::ptrdiff_t count)
{
base_type::rotate(count);
return *this;
}
MultiPolygon& MultiPolygon::shuffle()
{
base_type::shuffle();
return *this;
}
MultiPolygon MultiPolygon::slice(const size_t index) const
{
return MultiPolygon(base_type::slice(index));
}
MultiPolygon MultiPolygon::slice(const size_t index, const size_t length) const
{
return MultiPolygon(base_type::slice(index, length));
}
MultiPolygon& MultiPolygon::moveBy(const double x, const double y) noexcept
{
for (auto& polygon : *this)
{
polygon.moveBy(x, y);
}
return *this;
}
MultiPolygon& MultiPolygon::moveBy(const Vec2& v) noexcept
{
return moveBy(v.x, v.y);
}
MultiPolygon MultiPolygon::movedBy(const double x, const double y) const
{
return MultiPolygon(*this).moveBy(x, y);
}
MultiPolygon MultiPolygon::movedBy(const Vec2& v) const
{
return movedBy(v.x, v.y);
}
MultiPolygon MultiPolygon::rotated(const double angle) const
{
return MultiPolygon(map([=](const Polygon& p) { return p.rotated(angle); }));
}
MultiPolygon MultiPolygon::rotatedAt(const Vec2& pos, const double angle) const
{
return MultiPolygon(map([=](const Polygon& p) { return p.rotatedAt(pos, angle); }));
}
MultiPolygon& MultiPolygon::rotate(const double angle)
{
for (auto& polygon : *this)
{
polygon.rotate(angle);
}
return *this;
}
MultiPolygon& MultiPolygon::rotateAt(const Vec2& pos, const double angle)
{
for (auto& polygon : *this)
{
polygon.rotateAt(pos, angle);
}
return *this;
}
MultiPolygon MultiPolygon::transformed(const double s, double c, const Vec2& pos) const
{
return MultiPolygon(map([=](const Polygon& p) { return p.transformed(s, c, pos); }));
}
MultiPolygon& MultiPolygon::transform(const double s, const double c, const Vec2& pos)
{
for (auto& polygon : *this)
{
polygon.transform(s, c, pos);
}
return *this;
}
MultiPolygon MultiPolygon::scaled(const double s) const
{
return MultiPolygon(map([=](const Polygon& p) { return p.scaled(s); }));
}
MultiPolygon& MultiPolygon::scale(const double s)
{
for (auto& polygon : *this)
{
polygon.scale(s);
}
return *this;
}
RectF MultiPolygon::calculateBoundingRect() const noexcept
{
if (isEmpty())
{
return RectF(0);
}
auto it = begin();
const auto itEnd = end();
const RectF rect = it->boundingRect();
double left = rect.x;
double top = rect.y;
double right = rect.x + rect.w;
double bottom = rect.y + rect.h;
++it;
while (it != itEnd)
{
if (rect.x < left)
{
left = rect.x;
}
if (right < (rect.x + rect.w))
{
right = (rect.x + rect.w);
}
if (rect.y < top)
{
top = rect.y;
}
if (bottom < (rect.y + rect.h))
{
bottom = (rect.y + rect.h);
}
++it;
}
return RectF(left, top, right - left, bottom - top);
}
MultiPolygon MultiPolygon::simplified(const double maxDistance) const
{
return MultiPolygon(map([=](const Polygon& p) { return p.simplified(maxDistance); }));
}
bool MultiPolygon::leftClicked() const
{
return any([](const Polygon& p) { return p.leftClicked(); });
}
bool MultiPolygon::leftPressed() const
{
return any([](const Polygon& p) { return p.leftPressed(); });
}
bool MultiPolygon::leftReleased() const
{
return any([](const Polygon& p) { return p.leftReleased(); });
}
bool MultiPolygon::rightClicked() const
{
return any([](const Polygon& p) { return p.rightClicked(); });
}
bool MultiPolygon::rightPressed() const
{
return any([](const Polygon& p) { return p.rightPressed(); });
}
bool MultiPolygon::rightReleased() const
{
return any([](const Polygon& p) { return p.rightReleased(); });
}
bool MultiPolygon::mouseOver() const
{
return any([](const Polygon& p) { return p.mouseOver(); });
}
const MultiPolygon& MultiPolygon::draw(const ColorF& color) const
{
for (const auto& polygon : *this)
{
polygon.draw(color);
}
return *this;
}
void MultiPolygon::draw(const double x, const double y, const ColorF& color) const
{
for (const auto& polygon : *this)
{
polygon.draw(x, y, color);
}
}
void MultiPolygon::draw(const Vec2& pos, const ColorF& color) const
{
for (const auto& polygon : *this)
{
polygon.draw(pos, color);
}
}
const MultiPolygon& MultiPolygon::drawFrame(const double thickness, const ColorF& color) const
{
for (const auto& polygon : *this)
{
polygon.drawFrame(thickness, color);
}
return *this;
}
void MultiPolygon::drawFrame(const double x, const double y, const double thickness, const ColorF& color) const
{
for (const auto& polygon : *this)
{
polygon.drawFrame(x, y, thickness, color);
}
}
void MultiPolygon::drawFrame(const Vec2& pos, const double thickness, const ColorF& color) const
{
for (const auto& polygon : *this)
{
polygon.drawFrame(pos, thickness, color);
}
}
const MultiPolygon& MultiPolygon::drawWireframe(const double thickness, const ColorF& color) const
{
for (const auto& polygon : *this)
{
polygon.drawWireframe(thickness, color);
}
return *this;
}
void MultiPolygon::drawWireframe(const double x, const double y, const double thickness, const ColorF& color) const
{
for (const auto& polygon : *this)
{
polygon.drawWireframe(x, y, thickness, color);
}
}
void MultiPolygon::drawWireframe(const Vec2& pos, const double thickness, const ColorF& color) const
{
for (const auto& polygon : *this)
{
polygon.drawWireframe(pos, thickness, color);
}
}
void MultiPolygon::drawTransformed(const double s, const double c, const Vec2& pos, const ColorF& color) const
{
for (const auto& polygon : *this)
{
polygon.drawTransformed(s, c, pos, color);
}
}
void Formatter(FormatData& formatData, const MultiPolygon& value)
{
formatData.string.append(value.join(U", "_sv, U"("_sv, U")"_sv));
}
}
| wynd2608/OpenSiv3D | Siv3D/src/Siv3D/MultiPolygon/SivMultiPolygon.cpp | C++ | mit | 8,090 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>finger-tree: 1 m 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 / extra-dev</a></li>
<li class="active"><a href="">8.10.dev / finger-tree - 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>
finger-tree
<small>
8.10.0
<span class="label label-success">1 m 23 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2020-08-11 14:39:01 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-11 14:39: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-m4 1 Virtual package relying on m4
coq 8.10.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: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/http://mattam.org/research/russell/fingertrees.en.html"
license: "LGPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/FingerTree"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: data structures"
"keyword: dependent types"
"keyword: Finger Trees"
"category: Computer Science/Data Types and Data Structures"
"date: 2009-02"
]
authors: [
"Matthieu Sozeau <mattam@mattam.org> [http://mattam.org]"
]
bug-reports: "https://github.com/coq-contribs/finger-tree/issues"
dev-repo: "git+https://github.com/coq-contribs/finger-tree.git"
synopsis: "Dependent Finger Trees"
description: """
A verified generic implementation of Finger Trees"""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/finger-tree/archive/v8.10.0.tar.gz"
checksum: "md5=61ccc86903f34aaa1169dd79f52885b3"
}
</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-finger-tree.8.10.0 coq.8.10.dev</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 2h opam install -y --deps-only coq-finger-tree.8.10.0 coq.8.10.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>5 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 2h opam install -y -v coq-finger-tree.8.10.0 coq.8.10.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>1 m 23 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 12 M</p>
<ul>
<li>3 M <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/RopeModule.vo</code></li>
<li>2 M <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/DependentFingerTreeModule.vo</code></li>
<li>2 M <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/DependentFingerTree.vo</code></li>
<li>2 M <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/FingerTreeModule.vo</code></li>
<li>315 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/DependentSequence.vo</code></li>
<li>296 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Digit.vo</code></li>
<li>243 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/DependentFingerTreeModule.glob</code></li>
<li>238 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/StringInterface.vo</code></li>
<li>165 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/DependentFingerTree.glob</code></li>
<li>138 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/DigitModule.vo</code></li>
<li>88 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/FingerTree.vo</code></li>
<li>72 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/DependentFingerTreeModule.v</code></li>
<li>67 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/OrdSequence.vo</code></li>
<li>67 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/PrioQueue.vo</code></li>
<li>66 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/DependentFingerTree.v</code></li>
<li>46 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/DependentSequence.glob</code></li>
<li>40 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Sequence.vo</code></li>
<li>36 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/KeyMonoid.vo</code></li>
<li>31 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/OrderedType.vo</code></li>
<li>28 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Monoid.vo</code></li>
<li>28 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/DigitModule.glob</code></li>
<li>23 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/DependentSequence.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/FingerTreeModule.glob</code></li>
<li>21 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Digit.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/FingerTree.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Reduce.vo</code></li>
<li>11 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/FingerTreeModule.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/RopeModule.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Notations.vo</code></li>
<li>10 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/FingerTree.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/PrioQueue.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Digit.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/DigitModule.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Monoid.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/OrdSequence.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/OrdSequence.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/StringInterface.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Monoid.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Modules.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/RopeModule.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Reduce.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Sequence.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/OrderedType.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/PrioQueue.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Modules.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/KeyMonoid.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/StringInterface.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Sequence.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/KeyMonoid.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/OrderedType.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Modules.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Reduce.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Notations.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/FingerTree/Notations.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-finger-tree.8.10.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>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.06.1-2.0.5/extra-dev/8.10.dev/finger-tree/8.10.0.html | HTML | mit | 13,119 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ramsey: 8 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 / ramsey - 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>
ramsey
<small>
8.7.0
<span class="label label-success">8 s</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-02-19 06:39:30 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-02-19 06:39:30 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 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/ramsey"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Ramsey"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [ "keyword: dimension one Ramsey theorem" "keyword: constructive mathematics" "keyword: almost full sets" "category: Mathematics/Logic/See also" "category: Mathematics/Combinatorics and Graph Theory" "category: Miscellaneous/Extracted Programs/Combinatorics" ]
authors: [ "Marc Bezem" ]
bug-reports: "https://github.com/coq-contribs/ramsey/issues"
dev-repo: "git+https://github.com/coq-contribs/ramsey.git"
synopsis: "Ramsey Theory"
description: """
For dimension one, the Infinite Ramsey Theorem states that, for any
subset A of the natural numbers nat, either A or nat\\A is
infinite. This special case of the Pigeon Hole Principle is
classically equivalent to: if A and B are both co-finite, then so is
their intersection. None of these principles is constructively
valid. In [VB] the notion of an almost full set is introduced,
classically equivalent to co-finiteness, for which closure under
finite intersection can be proved constructively. A is almost full if
for every (strictly) increasing sequence f: nat -> nat there exists an
x in nat such that f(x) in A. The notion of almost full and its
closure under finite intersection are generalized to all finite
dimensions, yielding constructive Ramsey Theorems. The proofs for
dimension two and higher essentially use Brouwer's Bar Theorem.
In the proof development below we strengthen the notion of almost full
for dimension one in the following sense. A: nat -> Prop is called
Y-full if for every (strictly) increasing sequence f: nat -> nat we
have (A (f (Y f))). Here of course Y : (nat -> nat) -> nat. Given
YA-full A and YB-full B we construct X from YA and YB such that the
intersection of A and B is X-full. This is essentially [VB, Th. 5.4],
but now it can be done without using axioms, using only inductive
types. The generalization to higher dimensions will be much more
difficult and is not pursued here."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/ramsey/archive/v8.7.0.tar.gz"
checksum: "md5=2dae4557a10bb6ab518e14e2cc8e7b8e"
}
</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-ramsey.8.7.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 2h opam install -y --deps-only coq-ramsey.8.7.0 coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>4 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 2h opam install -y -v coq-ramsey.8.7.0 coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>8 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 38 K</p>
<ul>
<li>17 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/Ramsey/Ramsey.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/Ramsey/Ramsey.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.09.0/lib/coq/user-contrib/Ramsey/Ramsey.v</code></li>
</ul>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-ramsey.8.7.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">
<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>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.09.0-2.0.5/released/8.7.1/ramsey/8.7.0.html | HTML | mit | 8,419 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>amm11262: 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.0 / amm11262 - 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>
amm11262
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-01 12:01:13 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-01 12:01:13 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.14.0 Formal proof management system
dune 2.9.1 Fast, portable, and opinionated build system
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
ocaml-secondary-compiler 4.08.1-1 OCaml 4.08.1 Secondary Switch Compiler
ocamlfind 1.9.1 A library manager for OCaml
ocamlfind-secondary 1.9.1 Adds support for ocaml-secondary-compiler to ocamlfind
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/amm11262"
license: "LGPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/AMM11262"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: american mathematical monthly problem 11262" "date: 2007-04" ]
authors: [ "Milad Niqui (Coq files) <milad@cs.ru.nl> [http://www.cs.ru.nl/~milad]" "Tonny Hurkens (paper proof) <hurkens@sci.kun.nl>" ]
bug-reports: "https://github.com/coq-contribs/amm11262/issues"
dev-repo: "git+https://github.com/coq-contribs/amm11262.git"
synopsis: "Problem 11262 of The American Mathematical Monthly"
description: """
http://www.cs.ru.nl/~milad/AMM11262
Formalisation of Tonny Hurkens' proof of the problem
11262 of The American Mathematical Monthly 113(10), Dec. 2006
(see the README files)"""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/amm11262/archive/v8.6.0.tar.gz"
checksum: "md5=63715717436a227b3a2c215c375c18e2"
}
</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-amm11262.8.6.0 coq.8.14.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.14.0).
The following dependencies couldn't be met:
- coq-amm11262 -> 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-amm11262.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>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.07.1-2.0.6/released/8.14.0/amm11262/8.6.0.html | HTML | mit | 7,270 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tarski-geometry: 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 / tarski-geometry - 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>
tarski-geometry
<small>
8.8.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-03-09 03:40:58 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-03-09 03:40:58 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.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/tarski-geometry"
license: "GPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/TarskiGeometry"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
]
tags: [ "keyword: geometry" "keyword: Tarski's geometry" "keyword: congruence" "keyword: between property" "keyword: orthogonality" "category: Mathematics/Geometry/General" "date: 2006-03" ]
authors: [ "Julien Narboux <Julien.Narboux@dpt-info.u-strasbg.fr> [http://dpt-info.u-strasbg.fr/~narboux/]" ]
bug-reports: "https://github.com/coq-contribs/tarski-geometry/issues"
dev-repo: "git+https://github.com/coq-contribs/tarski-geometry.git"
synopsis: "Tarski's geometry"
description: """
http://dpt-info.u-strasbg.fr/~narboux/tarski.html
This is a formalization of geometry using a simplified version of Tarski's axiom system. The development contains a formalization of the chapters 1-8 of the book "Metamathematische Methoden in der Geometrie" by W. Schwabhäuser, W. Szmielew and A. Tarski.
This includes between properties, congruence properties,
midpoint, perpendicular lines, point reflection, orthogonality ...
This development aims to be a low level complement for Frédérique Guilhot's development about high-school geometry.
For more information see:
Mechanical Theorem Proving in Tarski's geometry in the post-proceeding of ADG 2006, F. Botana and T. Recio (Eds.), LNAI 4869, pages 139-156, 2007."""
flags: light-uninstall
url {
src:
"https://github.com/coq-contribs/tarski-geometry/archive/v8.8.0.tar.gz"
checksum: "md5=5c4cfcb3d4729304ebb823e9ed87de9e"
}
</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-tarski-geometry.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-tarski-geometry -> 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-tarski-geometry.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>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.09.0-2.0.5/extra-dev/8.10.0/tarski-geometry/8.8.0.html | HTML | mit | 7,747 |
// This file is automatically generated.
package adila.db;
/*
* Huawei Honor 5A
*
* DEVICE: HNNEM-H
* MODEL: NEM-UL10
*/
final class hnnem2dh_nem2dul10 {
public static final String DATA = "Huawei|Honor 5A|";
}
| karim/adila | database/src/main/java/adila/db/hnnem2dh_nem2dul10.java | Java | mit | 221 |
#include "lwPrefix.h"
#include "lwSprite.h"
#include "lwTexture.h"
#include "lwEffects.h"
#include "lwMaterial.h"
#include "lwMesh.h"
#include "lwRenderState.h"
#include "lwApp.h"
#include "lwLog.h"
#include "tinyxml2/tinyxml2.h"
#include "lwfk/lwCamera.h"
#include <dirent.h>
#include <string.h>
namespace lw {
namespace {
struct AtlasInfo {
std::string file;
int u, v, w, h;
};
std::map<std::string, AtlasInfo> _atlasMap;
KeyResMgr _materialResMgr;
}
Camera _camera;
class SpriteVertexBuffer: public Mesh {
public:
SpriteVertexBuffer();
~SpriteVertexBuffer();
void collectVetices(SpriteVertex *vertices, int numVertices, Material *pMaterial);
void flush();
enum {
VERTICIS_NUM_RESERVE = 8192,
VERTICIS_NUM_LIMIT = 65536,
};
private:
std::vector<SpriteVertex> _vertices;
Material *_pCurrMaterial;
int _posLocation;
int _uvLocation;
int _mvpMatLocation;
int _colorLocation;
int _samplerLocation;
};
SpriteVertexBuffer::SpriteVertexBuffer() {
_vertices.reserve(VERTICIS_NUM_RESERVE);
_pCurrMaterial = NULL;
}
SpriteVertexBuffer::~SpriteVertexBuffer() {
}
void SpriteVertexBuffer::collectVetices(SpriteVertex *vertices, int numVertices, Material *pMaterial) {
if (pMaterial != _pCurrMaterial || _vertices.size() >= VERTICIS_NUM_LIMIT) {
flush();
}
_pCurrMaterial = pMaterial;
for ( int i = 0; i < numVertices; ++i ) {
_vertices.push_back(vertices[i]);
}
}
void SpriteVertexBuffer::flush() {
if (_vertices.empty()) {
return;
}
//setup mesh
char* p0 = (char*)&_vertices[0];
this->position.set(sizeof(SpriteVertex), p0);
this->uv[0].set(sizeof(SpriteVertex), p0+sizeof(float)*3);
this->color.set(sizeof(SpriteVertex), p0+sizeof(float)*5);
this->verticesCount = _vertices.size();
_pCurrMaterial->draw(*this, PVRTMat4::Identity(), _camera, false);
_vertices.clear();
}
namespace {
SpriteVertexBuffer* _pvb = NULL;
}
//====================================================
Sprite* Sprite::create(const char *key, const char *fxName) {
std::map<std::string, AtlasInfo>::iterator it = _atlasMap.find(key);
if (it != _atlasMap.end()) {
return createFromAtlas(key, fxName);
} else {
return createFromFile(key, fxName);
}
}
Sprite* Sprite::createFromFile(const char* textureFile, const char* fxName) {
assert(textureFile && fxName);
bool ok = false;
Sprite* p = new Sprite(textureFile, fxName, false, ok);
if (p) {
if (ok) {
return p;
} else {
delete p;
return NULL;
}
}
return NULL;
}
Sprite* Sprite::createFromAtlas(const char* key, const char* fxName) {
bool ok = false;
Sprite* p = new Sprite(key, fxName, true, ok);
if (p){
if (ok) {
return p;
} else {
delete p;
return NULL;
}
}
return NULL;
}
Sprite::Sprite(const char *textureFile, const char *fxName, bool fromAtlas, bool &ok) {
ok = false;
_ancX = _ancY = 0.f;
_posX = _posY = 0.f;
_rotate = 0.f;
_scaleX = _scaleY = 1.f;
_color.set(1.0f, 1.0f, 1.0f, 1.0f);
_needUpdate = true;
_z = 0.f;
_pMaterial = NULL;
int err = 0;
if (fromAtlas) {
err = loadFromAtlas(textureFile, fxName);
}else{
err = loadFromFile(textureFile, fxName);
}
ok = !err;
}
Sprite::~Sprite() {
lwinfo("Sprite::~Sprite: refcount=%d", _pMaterial->refCount());
if (_pMaterial) {
if (_pMaterial->refCount() == 1) {
_materialResMgr.del(_materialKey.c_str());
lwinfo("del material");
}
_pMaterial->release();
}
}
int Sprite::loadFromFile(const char *textureFile, const char *fxName) {
assert(textureFile && fxName);
_materialKey = fxName;
_materialKey.append("/");
_materialKey.append(textureFile);
_pMaterial = (Material*)_materialResMgr.get(_materialKey.c_str());
if (_pMaterial == NULL) {
_pMaterial = Material::create("sprite.lwfx", fxName);
if (_pMaterial == NULL) {
lwerror("Material::create failed: sprite.lwfx, %s", fxName);
return -1;
}
_materialResMgr.add(_materialKey.c_str(), _pMaterial);
}
_pTexture = _pMaterial->setTexture("input_texture", textureFile, 0);
if (_pTexture == NULL) {
lwerror("_pMaterial->setTexture failed: %s", textureFile);
return -1;
}
uvInit();
return 0;
}
int Sprite::loadFromAtlas(const char *key, const char *fxName) {
assert(key && fxName);
std::map<std::string, AtlasInfo>::iterator it = _atlasMap.find(key);
if (it != _atlasMap.end()) {
AtlasInfo& atlas = it->second;
int err = loadFromFile(atlas.file.c_str(), fxName);
if (err) {
lwerror("loadFromFile error");
return -1;
}
setUV(atlas.u, atlas.v, atlas.w, atlas.h);
return 0;
}
return -1;
}
void Sprite::setUV(float u, float v, float w, float h) {
float texW = (float)_pTexture->w;
float texH = (float)_pTexture->h;
_u = u;
_v = v;
_w = w;
_h = h;
_u1 = u/texW;
_v1 = v/texH;
_u2 = (u+_w)/texW;
_v2 = (v+_h)/texH;
}
void Sprite::uvInit() {
_u = _v = 0.f;
_w = (float)_pTexture->w;
_h = (float)_pTexture->h;
_u1 = _v1 = 0.f;
_u2 = _v2 = 1.f;
}
void Sprite::getUV(float &u, float &v, float &w, float &h) {
u = _u; v = _v; w = _w; h = _h;
}
void Sprite::setAnchor(float x, float y) {
if (x != _ancX || y != _ancY) {
_ancX = x; _ancY = y;
_needUpdate = true;
}
}
void Sprite::getAnchor(float &x, float &y) {
x = _ancX; y = _ancY;
}
void Sprite::setPos(float x, float y) {
if (x != _posX || y != _posY) {
_posX = x;
_posY = y;
_needUpdate = true;
}
}
void Sprite::getPos(float &x, float &y) {
x = _posX;
y = _posY;
}
void Sprite::setRotate(float r) {
if (_rotate != r) {
_rotate = r;
_needUpdate = true;
}
}
float Sprite::getRotate() {
return _rotate;
}
void Sprite::setScale(float x, float y) {
if (_scaleX != x || _scaleY != y) {
_scaleX = x;
_scaleY = y;
_needUpdate = true;
}
}
void Sprite::getScale(float &x, float &y) {
x = _scaleX; y = _scaleY;
}
void Sprite::setSize(float w, float h) {
setScale(w/_w, h/_h);
}
void Sprite::getSize(float &w, float &h) {
w = _w*_scaleX;
h = _h*_scaleY;
}
void Sprite::setColor(const Color& color) {
_color = color;
}
void Sprite::setZ(float z) {
_z = z;
}
static void setSV(SpriteVertex& sv, float x, float y, float z, float u, float v, Color& color) {
sv.x = x;
sv.y = y;
sv.z = z;
sv.u = u;
sv.v = v;
sv.r = color.r;
sv.g = color.g;
sv.b = color.b;
sv.a = color.a;
}
void Sprite::draw() {
if (_needUpdate) {
update();
}
//1
SpriteVertex v[6];
setSV(v[0], _vertexPos[0].x, _vertexPos[0].y, _z, _u1, _v1, _color);
//2
setSV(v[1], _vertexPos[1].x, _vertexPos[1].y, _z, _u1, _v2, _color);
//3
setSV(v[2], _vertexPos[2].x, _vertexPos[2].y, _z, _u2, _v1, _color);
//3
setSV(v[3], _vertexPos[2].x, _vertexPos[2].y, _z, _u2, _v1, _color);
//2
setSV(v[4], _vertexPos[1].x, _vertexPos[1].y, _z, _u1, _v2, _color);
//4
setSV(v[5], _vertexPos[3].x, _vertexPos[3].y, _z, _u2, _v2, _color);
_pvb->collectVetices(v, 6, _pMaterial);
}
void Sprite::update() {
_needUpdate = false;
PVRTMat4 m, m1;
m = PVRTMat4::Identity();
if (_posX or _posY) {
m1 = PVRTMat4::Translation(_posX, _posY, 0.f);
m = m * m1;
}
if (_rotate != 0.f) {
m1 = PVRTMat4::RotationZ(_rotate);
m = m * m1;
}
if (_scaleX != 1.f || _scaleY != 1.f) {
m1 = PVRTMat4::Scale(_scaleX, _scaleY, 1.f);
m = m * m1;
}
float posX1 = -_ancX;
float posY1 = -_ancY;
float posX2 = posX1 + _w;
float posY2 = posY1 + _h;
PVRTVec3 pt[4];
pt[0].x = posX1;
pt[0].y = posY1;
pt[0].z = _z;
pt[1].x = posX1;
pt[1].y = posY2;
pt[1].z = _z;
pt[2].x = posX2;
pt[2].y = posY1;
pt[2].z = _z;
pt[3].x = posX2;
pt[3].y = posY2;
pt[3].z = _z;
PVRTVec3 ptt[4];
PVRTTransformArray(ptt, pt, 4, &m, f2vt(1.0));
_vertexPos[0].x = ptt[0].x;
_vertexPos[0].y = -ptt[0].y;
_vertexPos[1].x = ptt[1].x;
_vertexPos[1].y = -ptt[1].y;
_vertexPos[2].x = ptt[2].x;
_vertexPos[2].y = -ptt[2].y;
_vertexPos[3].x = ptt[3].x;
_vertexPos[3].y = -ptt[3].y;
}
TextureRes* Sprite:: getTexture(){
return _pTexture;
}
//===============================================
void loadAtlasConf();
void Sprite::init() {
_pvb = new SpriteVertexBuffer();
}
void Sprite::onInitView() {
PVRTVec2 ss = screenSize();
_camera.lookat(PVRTVec3(0.f, 0.f, 100.f), PVRTVec3(0.f, 0.f, 0.f), PVRTVec3(0.f, 1.f, 0.f));
_camera.ortho(ss.x, ss.y, 0, 200.f);
}
void Sprite::quit() {
if (_pvb) {
delete _pvb;
_pvb = NULL;
}
}
void Sprite::flush() {
_pvb->flush();
}
void Sprite::addAtlas(const char *file) {
assert(file);
tinyxml2::XMLDocument doc;
lw::File resFile(file);
if (resFile.IsOpen()) {
tinyxml2::XMLError err = doc.Parse((const char*)resFile.DataPtr(), resFile.Size());
assert(err == tinyxml2::XML_SUCCESS);
const tinyxml2::XMLElement *pElem = doc.RootElement();
pElem = pElem->FirstChildElement("image");
while ( pElem ){
const char *name = pElem->Attribute("name");
AtlasInfo atlas;
atlas.file = pElem->Attribute("file");
pElem->QueryIntAttribute("x", &atlas.u);
pElem->QueryIntAttribute("y", &atlas.v);
pElem->QueryIntAttribute("w", &atlas.w);
pElem->QueryIntAttribute("h", &atlas.h);
_atlasMap[name] = atlas;
pElem = pElem->NextSiblingElement();
}
} else {
lwerror("file open error: %s", file);
}
}
void loadAtlasConf() {
const char * path = CPVRTResourceFile::GetReadPath().c_str();
if (path)
lwinfo("%s", path);
// DIR *pDir = opendir(path);
// struct dirent *pDirent;
// while (1) {
// pDirent = readdir(pDir);
// if (pDirent == NULL)
// break;
// const char *p = strrchr(pDirent->d_name, '.');
// if (p && strcmp(p, ".atlas") == 0) {
// addAtlas(pDirent->d_name);
// lwinfo("%s", pDirent->d_name);
// }
// }
// closedir(pDir);
}
} //namespace lw
| henyouqian/lwfk | lwfk/lwSprite.cpp | C++ | mit | 12,467 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>exact-real-arithmetic: 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 / exact-real-arithmetic - 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>
exact-real-arithmetic
<small>
8.5.0
<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: "matej.kosik@inria.fr"
homepage: "https://github.com/coq-contribs/exact-real-arithmetic"
license: "LGPL 2"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/ExactRealArithmetic"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
]
tags: [ "keyword:correctness" "keyword:real numbers" "keyword:arithmetic" "category:Mathematics/Arithmetic and Number Theory/Real numbers" ]
authors: [ "Jérôme Creci <>" ]
bug-reports: "https://github.com/coq-contribs/exact-real-arithmetic/issues"
dev-repo: "git+https://github.com/coq-contribs/exact-real-arithmetic.git"
synopsis: "Exact Real Arithmetic"
description: """
This contribution contains a proof of correctness
of some exact real arithmetic algorithms from the PhD thesis of
Valérie Ménissier-Morain"""
flags: light-uninstall
url {
src:
"https://github.com/coq-contribs/exact-real-arithmetic/archive/v8.5.0.tar.gz"
checksum: "md5=1f3ad50d599e0d8ef03af2082b4a4da5"
}
</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-exact-real-arithmetic.8.5.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-exact-real-arithmetic -> 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-exact-real-arithmetic.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>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.05.0-2.0.1/released/8.9.1/exact-real-arithmetic/8.5.0.html | HTML | mit | 7,209 |
#include <ncurses.h>
#include "term.hpp"
Term::Term() {
//start terminal in curses mode and clears the screen
initscr();
//disable line buffering
raw();
keypad(stdscr, true);
noecho();
}
Term::~Term() {
endwin();
}
int Term::get_char() {
return getch();
}
void Term::print_char(int c) {
printw("%c", c);
}
| snowiow/yace | src/term.cpp | C++ | mit | 347 |
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Routing\Matcher\Dumper;
/**
* Prefix tree of routes preserving routes order.
*
* @author Arnaud Le Blanc <arnaud.lb@gmail.com>
*/
class DumperPrefixCollection extends DumperCollection
{
private $prefix;
/**
* Returns the prefix.
*
* @return string The prefix
*/
public function getPrefix()
{
return $this->prefix;
}
/**
* Sets the prefix.
*
* @param string $prefix The prefix
*/
public function setPrefix($prefix)
{
$this->prefix = $prefix;
}
/**
* Adds a route in the tree.
*
* @param DumperRoute $route The route
*
* @return DumperPrefixCollection The node the route was added to
*/
public function addPrefixRoute(DumperRoute $route)
{
$prefix = $route->getRoute()->compile()->getStaticPrefix();
if ($this->getPrefix() === $prefix) {
$this->addRoute($route);
return $this;
} else if ('' === $this->getPrefix() || 0 === strpos($prefix, $this->getPrefix())) {
$prev = $this;
for ($i = strlen($this->getPrefix()); $i < strlen($prefix); ++$i) {
$collection = new DumperPrefixCollection();
$collection->setPrefix(substr($prefix, 0, $i+1));
$prev->addRoute($collection);
$prev = $collection;
}
$collection->addRoute($route);
return $collection;
} else {
return $this->getParent()->addPrefixRoute($route);
}
}
/**
* Merges nodes whose prefix ends with a slash
*
* Children of a node whose prefix ends with a slash are moved to the parent node
*/
public function mergeSlashNodes()
{
$routes = array();
$stack = array_reverse($this->getRoutes());
while (null !== $route = array_pop($stack)) {
if ($route instanceof static) {
if ('/' === substr($route->getPrefix(), -1)) {
$stack = array_merge($stack, array_reverse($route->getRoutes()));
} else {
$route->mergeSlashNodes();
$routes[] = $route;
}
} else {
$routes[] = $route;
}
}
$this->setRoutes($routes);
}
}
| sudent/symfony | src/Symfony/Component/Routing/Matcher/Dumper/DumperPrefixCollection.php | PHP | mit | 2,608 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Acme.Helpers.TagHelpers
{
public static class DirectoryDefaults
{
public static string Alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
public static string DefaultClass = "pagination";
public static string DefaultParameter = "current";
public static DirectoryDisplayMode Mode = DirectoryDisplayMode.Letters;
public static string Numbers = "0123456789";
public static bool ShowActive = true;
}
}
| simonray/Acme.Helpers | src/Acme.Helpers.Pager/TagHelpers/Directory/DirectoryDefaults.cs | C# | mit | 559 |
//
// CompareTwoLinkedLists.cpp
// HackerRank
//
// Created by Fabrizio Duroni on 25/10/2016.
//
// https://www.hackerrank.com/challenges/compare-two-linked-lists
#include <iostream>
#include <string>
using namespace std;
/*!
C alike struct definition.
The attribute Node is be declared with struct
because in C, Node is not yet defined at this point.
*/
struct Node {
int data;
struct Node* next;
};
int CompareLists(Node* headA, Node* headB) {
Node* currentNodeA = headA;
Node* currentNodeB = headB;
//Loop on lists.
while (currentNodeA != nullptr || currentNodeB != nullptr) {
//If one of the head node is null or
//data of the nodes doesn't match.
if ((currentNodeA != nullptr && currentNodeB == nullptr) ||
(currentNodeB != nullptr && currentNodeA == nullptr) ||
(currentNodeA->data != currentNodeB->data)) {
return 0;
}
currentNodeA = currentNodeA->next;
currentNodeB = currentNodeB->next;
}
return 1;
}
| chicio/HackerRank | DataStructures/CompareTwoLinkedLists.cpp | C++ | mit | 1,085 |
package br.senai.sp.todolist.controller;
import java.net.URI;
import java.util.HashMap;
import org.json.JSONObject;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import com.auth0.jwt.JWTSigner;
import br.senai.sp.todolist.dao.UsuarioDao;
import br.senai.sp.todolist.modelo.Usuario;
@RestController
public class UsuarioRestController {
public static final String SECRET = "todolistsenai";
public static final String ISSUER = "http//www.sp.senai.br";
@Autowired
UsuarioDao usuarioDao;
@RequestMapping(value = "/usuario", method = RequestMethod.POST,consumes = MediaType.APPLICATION_JSON_UTF8_VALUE)
public ResponseEntity<Usuario> inserir(@RequestBody Usuario usuario)
{
try{
usuarioDao.inserir(usuario);
URI location = new URI("/usuario/"+usuario.getId());
return ResponseEntity.created(location).body(usuario);
}catch (Exception e) {
e.printStackTrace();
return new ResponseEntity<>(HttpStatus.INTERNAL_SERVER_ERROR);
}
}
@RequestMapping(value = "/login", method = RequestMethod.POST,consumes = MediaType.APPLICATION_JSON_UTF8_VALUE,produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
public ResponseEntity<String> logar(Usuario usuario){
try{
usuario = usuarioDao.logar(usuario);
if(usuario!= null){
// Data de emisão do token
long iat = System.currentTimeMillis() / 1000;
// data de expiração do token
long exp = iat + 60;
//Objeto que irá gerar token
JWTSigner signer = new JWTSigner(SECRET);
HashMap<String, Object> claims = new HashMap<>();
claims.put("iat", iat);
claims.put("exp", exp);
claims.put("iss", ISSUER);
claims.put("id -usuario", usuario.getId());
//gerar o token
String jwt = signer.sign(claims);
JSONObject token = new JSONObject();
token.put("token", jwt);
return ResponseEntity.ok(token.toString());
}else{
return new ResponseEntity<> (HttpStatus.UNAUTHORIZED);
}
}catch (Exception e){
return new ResponseEntity<> (HttpStatus.INTERNAL_SERVER_ERROR);
}
}
} | wellchaves/ToDoList | ToDoList/src/br/senai/sp/todolist/controller/UsuarioRestController.java | Java | mit | 2,429 |
<html><body>
<h4>Windows 10 x64 (18363.628)</h4><br>
<h2>_PEP_CRASHDUMP_INFORMATION</h2>
<font face="arial"> +0x000 DeviceHandle : Ptr64 <a href="./PEPHANDLE__.html">PEPHANDLE__</a><br>
+0x008 DeviceContext : Ptr64 Void<br>
</font></body></html> | epikcraw/ggool | public/Windows 10 x64 (18363.628)/_PEP_CRASHDUMP_INFORMATION.html | HTML | mit | 262 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>geocoq: 2 h 39 m 🏆</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 / geocoq - 2.3.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
geocoq
<small>
2.3.0
<span class="label label-success">2 h 39 m 🏆</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: "Julien Narboux <julien@narboux.fr>"
homepage: "http://geocoq.github.io/GeoCoq/"
bug-reports: "https://github.com/GeoCoq/GeoCoq/issues"
authors: ["Michael Beeson"
"Gabriel Braun <gabriel.braun@unistra.fr>"
"Pierre Boutry <pierre.boutry@unistra.fr>"
"Charly Gries <Charly.Gries@etu.unistra.fr>"
"Julien Narboux <narboux@unistra.fr>"]
synopsis: "A formalization of foundations of geometry in Coq"
license: "LGPL 3"
build: [
["./configure.sh"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/GeoCoq"]
depends: [
"ocaml"
"coq" {(>= "8.5" & < "8.6~") | (>= "8.6.1" & < "8.10~")}
]
tags: [ "keyword:geometry"
"keyword:neutral geometry"
"keyword:euclidean geometry"
"keyword:foundations"
"keyword:Tarski"
"keyword:Hilbert"
"keyword:Euclid"
"keyword:Pappus"
"keyword:Desargues"
"keyword:Elements"
"keyword:parallel postulates"
"category:Mathematics/Geometry/General"
"date:2017-09-30" ]
flags: light-uninstall
url {
src: "https://github.com/GeoCoq/GeoCoq/archive/v2.3.0.tar.gz"
checksum: "md5=24c4db28b307562a258e1d1d907b2652"
}
</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-geocoq.2.3.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 8h opam install -y --deps-only coq-geocoq.2.3.0 coq.8.6.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>12 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-geocoq.2.3.0 coq.8.6.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>2 h 39 m</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 68 M</p>
<ul>
<li>3 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Coplanar_trans.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch14_prod.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch11_angles.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch16_coordinates_with_functions.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/midpoint_theorems.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/hilbert_to_tarski.vo</code></li>
<li>978 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch16_coordinates.vo</code></li>
<li>956 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch14_sum.vo</code></li>
<li>913 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_1.vo</code></li>
<li>907 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Coplanar_trans.glob</code></li>
<li>892 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch11_angles.glob</code></li>
<li>886 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/parallel_postulates.vo</code></li>
<li>846 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_6_Desargues_Hessenberg.vo</code></li>
<li>811 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/saccheri.vo</code></li>
<li>790 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/gravityCenter.vo</code></li>
<li>783 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/quadrilaterals_inter_dec.vo</code></li>
<li>729 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/inscribed_angle.vo</code></li>
<li>728 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/orientation.vo</code></li>
<li>711 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch15_lengths.vo</code></li>
<li>522 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/hilbert_to_tarski.glob</code></li>
<li>511 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch08_orthogonality.vo</code></li>
<li>485 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch16_coordinates_with_functions.glob</code></li>
<li>409 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/suma.vo</code></li>
<li>398 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/project.vo</code></li>
<li>395 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/tarski_to_euclid.vo</code></li>
<li>389 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch09_plane.vo</code></li>
<li>387 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/half_angles.vo</code></li>
<li>387 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/ColR.vo</code></li>
<li>385 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/legendre.vo</code></li>
<li>380 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/sets.vo</code></li>
<li>378 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_30.vo</code></li>
<li>376 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/SPP_tarski.vo</code></li>
<li>370 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/quadrilaterals_inter_dec.glob</code></li>
<li>367 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch14_sum.glob</code></li>
<li>345 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_5_Pappus_Pascal.vo</code></li>
<li>344 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Coplanar_trans.v</code></li>
<li>344 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/saccheri.glob</code></li>
<li>338 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/CoincR.vo</code></li>
<li>317 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/vectors.vo</code></li>
<li>309 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch12_parallel.vo</code></li>
<li>309 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/quadrilaterals.vo</code></li>
<li>305 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/TCP_tarski.vo</code></li>
<li>305 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_35.vo</code></li>
<li>293 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/angle_archimedes.vo</code></li>
<li>292 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/suma.glob</code></li>
<li>291 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/orientation.glob</code></li>
<li>284 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch16_coordinates.glob</code></li>
<li>282 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/weak_inverse_projection_postulate_bachmann_s_lotschnittaxiom.vo</code></li>
<li>274 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_35helper.vo</code></li>
<li>273 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_1.glob</code></li>
<li>272 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_4_cos.vo</code></li>
<li>267 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch11_angles.v</code></li>
<li>266 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/bachmann_s_lotschnittaxiom_legendre_s_parallel_postulate.vo</code></li>
<li>261 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_42.vo</code></li>
<li>254 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch14_order.vo</code></li>
<li>248 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/circles.vo</code></li>
<li>240 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/triangle_playfair_bis.vo</code></li>
<li>237 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_47B.vo</code></li>
<li>237 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch08_orthogonality.glob</code></li>
<li>234 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/archimedes.vo</code></li>
<li>233 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/universal_posidonius_postulate_par_perp_perp.vo</code></li>
<li>222 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/posidonius_postulate_rah.vo</code></li>
<li>221 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/orthocenter.vo</code></li>
<li>216 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_35A.vo</code></li>
<li>215 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/circumcenter.vo</code></li>
<li>210 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch09_plane.glob</code></li>
<li>205 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/tarski_euclid.vo</code></li>
<li>200 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/alternate_interior_angles_proclus.vo</code></li>
<li>199 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/quadrilaterals.glob</code></li>
<li>199 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/bisector.vo</code></li>
<li>198 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/arity.vo</code></li>
<li>196 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/first_order_dedekind_circle_circle.vo</code></li>
<li>191 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch07_midpoint.vo</code></li>
<li>190 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch12_parallel.glob</code></li>
<li>190 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/tarski_to_hilbert.vo</code></li>
<li>189 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/tangency.vo</code></li>
<li>186 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/Statements/Book_1.vo</code></li>
<li>185 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_27.vo</code></li>
<li>183 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch15_lengths.glob</code></li>
<li>179 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch10_line_reflexivity_2D.vo</code></li>
<li>178 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/midpoint_playfair.vo</code></li>
<li>177 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/circles.glob</code></li>
<li>176 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/Euler_line.vo</code></li>
<li>175 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/euclidean_axioms.vo</code></li>
<li>175 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch10_line_reflexivity.vo</code></li>
<li>173 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Dimension_axioms/upper_dim.vo</code></li>
<li>169 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch12_parallel_inter_dec.vo</code></li>
<li>167 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch15_pyth_rel.vo</code></li>
<li>167 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch14_prod.glob</code></li>
<li>165 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_3_angles.vo</code></li>
<li>164 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/ColR.glob</code></li>
<li>164 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_4_cos.glob</code></li>
<li>157 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angletrichotomy2.vo</code></li>
<li>156 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/aristotle.vo</code></li>
<li>155 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/varignon.vo</code></li>
<li>152 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_trans_NID.vo</code></li>
<li>152 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_30helper.vo</code></li>
<li>148 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/vectors.glob</code></li>
<li>147 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/weak_tarski_s_parallel_postulate_weak_inverse_projection_postulate.vo</code></li>
<li>145 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/tarski_to_beeson.vo</code></li>
<li>144 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/project.glob</code></li>
<li>142 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_6_Desargues_Hessenberg.glob</code></li>
<li>142 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/incenter.vo</code></li>
<li>140 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch14_order.glob</code></li>
<li>140 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_planeseparation.vo</code></li>
<li>140 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/tarski_playfair.vo</code></li>
<li>139 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/half_angles.glob</code></li>
<li>139 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/arity.glob</code></li>
<li>139 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_5_Pappus_Pascal.glob</code></li>
<li>138 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/CoincR.glob</code></li>
<li>137 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_47A.vo</code></li>
<li>136 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/weak_inverse_projection_postulate_weak_tarski_s_parallel_postulate.vo</code></li>
<li>132 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Definitions.glob</code></li>
<li>132 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_46.vo</code></li>
<li>130 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/inverse_projection_postulate_proclus_bis.vo</code></li>
<li>130 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/elementary_continuity_props.vo</code></li>
<li>130 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_44A.vo</code></li>
<li>128 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/euclid_5_original_euclid.vo</code></li>
<li>127 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_29C.vo</code></li>
<li>126 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Playfairhelper2.vo</code></li>
<li>125 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/bachmann_s_lotschnittaxiom_weak_inverse_projection_postulate.vo</code></li>
<li>124 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/szmielew.vo</code></li>
<li>124 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tarski_to_coinc_theory_for_concyclic.vo</code></li>
<li>123 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch10_line_reflexivity.glob</code></li>
<li>122 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch07_midpoint.glob</code></li>
<li>122 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/hilbert_to_tarski.v</code></li>
<li>121 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/parallel_postulates.glob</code></li>
<li>121 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch10_line_reflexivity_2D.glob</code></li>
<li>120 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/original_spp_inverse_projection_postulate.vo</code></li>
<li>120 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/tarski_to_hilbert.glob</code></li>
<li>119 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/UnitTests/unit_tests.vo</code></li>
<li>119 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/hilbert_axioms.vo</code></li>
<li>116 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/similar_rah.vo</code></li>
<li>115 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_crisscross.vo</code></li>
<li>115 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_32.vo</code></li>
<li>113 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/inscribed_angle.glob</code></li>
<li>113 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squareparallelogram.vo</code></li>
<li>113 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/legendre.glob</code></li>
<li>111 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/sums.vo</code></li>
<li>109 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/original_euclid_original_spp.vo</code></li>
<li>109 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_universal_posidonius_postulate.vo</code></li>
<li>109 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/exercises.vo</code></li>
<li>108 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/concyclic.vo</code></li>
<li>108 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/sets.glob</code></li>
<li>107 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/weak_triangle_circumscription_principle_bachmann_s_lotschnittaxiom.vo</code></li>
<li>106 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/bachmann_s_lotschnittaxiom_weak_triangle_circumscription_principle.vo</code></li>
<li>106 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Definitions.vo</code></li>
<li>106 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch14_sum.v</code></li>
<li>105 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/proclus_aristotle.vo</code></li>
<li>105 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_2_length.vo</code></li>
<li>104 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_43B.vo</code></li>
<li>104 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_23B.vo</code></li>
<li>104 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/midpoint_thales.vo</code></li>
<li>102 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/proclus_bis_proclus.vo</code></li>
<li>101 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Counter_models/counter_model_bet_identity.vo</code></li>
<li>99 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/quadrilaterals_inter_dec.v</code></li>
<li>99 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch16_coordinates.v</code></li>
<li>98 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_16.vo</code></li>
<li>98 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/existential_playfair_rah.vo</code></li>
<li>98 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_3_angles.glob</code></li>
<li>97 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/alternate_interior_angles_playfair_bis.vo</code></li>
<li>97 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/main.vo</code></li>
<li>97 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/Statements/Book_1.glob</code></li>
<li>96 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/triangles.vo</code></li>
<li>95 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/perp_bisect.vo</code></li>
<li>95 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Coplanar_perm.vo</code></li>
<li>95 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/independent_tarski_to_tarski.vo</code></li>
<li>94 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_07.vo</code></li>
<li>93 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_29.vo</code></li>
<li>93 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_perp_perp_playfair.vo</code></li>
<li>93 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_45.vo</code></li>
<li>90 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_similar.vo</code></li>
<li>90 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/saccheri.v</code></li>
<li>89 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/thales_postulate_thales_converse_postulate.vo</code></li>
<li>88 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_48A.vo</code></li>
<li>87 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_34.vo</code></li>
<li>86 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelcollinear1.vo</code></li>
<li>86 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Decidability/equivalence_between_decidability_properties_of_basic_relations.glob</code></li>
<li>86 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Decidability/equivalence_between_decidability_properties_of_basic_relations.vo</code></li>
<li>84 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/consecutive_interior_angles_alternate_interior_angles.vo</code></li>
<li>84 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch06_out_lines.glob</code></li>
<li>83 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_posidonius_postulate.vo</code></li>
<li>83 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angletrichotomy2.glob</code></li>
<li>82 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/dedekind_archimedes.vo</code></li>
<li>82 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/alternate_interior_angles_triangle.vo</code></li>
<li>82 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/Tagged_predicates.vo</code></li>
<li>82 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/CoincR_for_cop.vo</code></li>
<li>81 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/UnitTests/unit_tests_2.vo</code></li>
<li>81 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_paste5.vo</code></li>
<li>80 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch06_out_lines.vo</code></li>
<li>79 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/CoincR_for_col.vo</code></li>
<li>79 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_1.v</code></li>
<li>78 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/alternate_interior_angles_consecutive_interior_angles.vo</code></li>
<li>78 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_36.vo</code></li>
<li>78 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_midpoint.vo</code></li>
<li>78 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tarski_to_coinc_theory_for_cop.vo</code></li>
<li>77 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch05_bet_le.glob</code></li>
<li>77 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/SPP_ID.vo</code></li>
<li>77 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_perp_perp_TCP.vo</code></li>
<li>77 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_42B.vo</code></li>
<li>75 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_planeseparation.glob</code></li>
<li>75 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_24.vo</code></li>
<li>75 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_alternate_interior_angles.vo</code></li>
<li>75 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_39A.vo</code></li>
<li>75 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_47.vo</code></li>
<li>74 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_30A.vo</code></li>
<li>74 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_perp_2_par_par_perp_perp.vo</code></li>
<li>74 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_44.vo</code></li>
<li>73 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/Statements/Book_3.vo</code></li>
<li>73 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/orientation.v</code></li>
<li>72 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_42.glob</code></li>
<li>72 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/angle_archimedes.glob</code></li>
<li>72 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/triangle_existential_triangle.vo</code></li>
<li>72 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/proclus_SPP.vo</code></li>
<li>72 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_bis_playfair.vo</code></li>
<li>72 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/thales_converse_postulate_thales_existence.vo</code></li>
<li>72 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_par_trans.vo</code></li>
<li>72 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/TCP_tarski.glob</code></li>
<li>72 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch14_prod.v</code></li>
<li>71 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/archimedes.glob</code></li>
<li>71 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squaresequal.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/suma.v</code></li>
<li>71 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rectangle_principle_rectangle_existence.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/thales_existence_rah.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/existential_triangle_rah.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_trans_playfair.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch09_plane.v</code></li>
<li>70 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/thales_converse_postulate_weak_triangle_circumscription_principle.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rectangle_existence_rah.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_triangletoparallelogram.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_existential_saccheri.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/existential_saccheri_rah.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_thales_postulate.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_rectangle_principle.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_perp_perp_par_perp_2_par.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_triangle.vo</code></li>
<li>69 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squareunique.vo</code></li>
<li>69 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/circumcenter.glob</code></li>
<li>69 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_38.vo</code></li>
<li>69 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_diagonalsmeet.vo</code></li>
<li>69 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_diagonalsbisect.vo</code></li>
<li>68 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/euclidean_axioms.glob</code></li>
<li>67 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_37.vo</code></li>
<li>65 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_35.glob</code></li>
<li>65 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch12_parallel_inter_dec.glob</code></li>
<li>65 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch08_orthogonality.v</code></li>
<li>65 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch16_coordinates_with_functions.v</code></li>
<li>64 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_31.vo</code></li>
<li>63 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch05_bet_le.vo</code></li>
<li>63 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_16.glob</code></li>
<li>63 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angletrichotomy.vo</code></li>
<li>63 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_48.vo</code></li>
<li>62 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_36A.vo</code></li>
<li>62 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_pointreflectionisometry.vo</code></li>
<li>62 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_29B.vo</code></li>
<li>62 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch14_order.v</code></li>
<li>62 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_44A.glob</code></li>
<li>61 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angleaddition.vo</code></li>
<li>60 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/tarski_to_beeson.glob</code></li>
<li>60 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_43.vo</code></li>
<li>60 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_27.glob</code></li>
<li>60 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch15_pyth_rel.glob</code></li>
<li>60 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_paralleldef2B.vo</code></li>
<li>60 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/parallel_postulates.glob</code></li>
<li>59 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/first_order_dedekind_circle_circle.glob</code></li>
<li>59 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/midpoint_theorems.glob</code></li>
<li>59 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_39.vo</code></li>
<li>58 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_11B.vo</code></li>
<li>58 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/independent_tarski_to_tarski.glob</code></li>
<li>58 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Dimension_axioms/upper_dim.glob</code></li>
<li>57 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Counter_models/counter_model_bet_identity.glob</code></li>
<li>57 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Playfair.vo</code></li>
<li>57 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/sums.glob</code></li>
<li>56 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/tangency.glob</code></li>
<li>56 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelPasch.vo</code></li>
<li>56 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch12_parallel.v</code></li>
<li>56 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/ColR.v</code></li>
<li>55 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_40.vo</code></li>
<li>55 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_30.glob</code></li>
<li>55 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_23B.glob</code></li>
<li>55 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_32.glob</code></li>
<li>55 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_PGrectangle.vo</code></li>
<li>54 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_altitudeofrighttriangle.vo</code></li>
<li>54 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/book1.vo</code></li>
<li>53 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_35A.glob</code></li>
<li>53 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Playfairhelper.vo</code></li>
<li>53 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_04.vo</code></li>
<li>53 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angleorderrespectscongruence.vo</code></li>
<li>53 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_47B.glob</code></li>
<li>52 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_24.glob</code></li>
<li>52 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_07.glob</code></li>
<li>52 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelbetween.vo</code></li>
<li>52 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/parallel_postulates.vo</code></li>
<li>51 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Euclid4.vo</code></li>
<li>51 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_6_Desargues_Hessenberg.v</code></li>
<li>51 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_22.vo</code></li>
<li>50 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplementinequality.vo</code></li>
<li>50 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch15_lengths.v</code></li>
<li>50 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_4_cos.v</code></li>
<li>50 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_notperp.vo</code></li>
<li>49 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/bisector.glob</code></li>
<li>49 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_29.glob</code></li>
<li>49 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_33.vo</code></li>
<li>49 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_30B.vo</code></li>
<li>49 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_10.vo</code></li>
<li>49 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelcollinear2.vo</code></li>
<li>49 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_17.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_21.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_26A.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_47A.glob</code></li>
<li>47 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelcollinear1.glob</code></li>
<li>46 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tactics_axioms.vo</code></li>
<li>46 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_22.glob</code></li>
<li>46 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/tarski_to_euclid.glob</code></li>
<li>45 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_sameside2.vo</code></li>
<li>45 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_crossbar2.vo</code></li>
<li>45 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/quadrilaterals.v</code></li>
<li>45 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tarski_to_coinc_theory_for_concyclic.glob</code></li>
<li>44 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_26helper.vo</code></li>
<li>44 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch03_bet.vo</code></li>
<li>44 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_5_Pappus_Pascal.v</code></li>
<li>43 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_twolines.vo</code></li>
<li>43 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angleordertransitive.vo</code></li>
<li>43 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_41.vo</code></li>
<li>43 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rectangleparallelogram.vo</code></li>
<li>43 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/triangles.glob</code></li>
<li>43 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_crisscross.glob</code></li>
<li>43 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squarerectangle.vo</code></li>
<li>42 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_45.glob</code></li>
<li>42 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_linereflectionisometry.vo</code></li>
<li>42 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_tarskiparallelflip.vo</code></li>
<li>41 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_33B.vo</code></li>
<li>41 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/circles.v</code></li>
<li>41 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/orthocenter.glob</code></li>
<li>41 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinear4.vo</code></li>
<li>41 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_06a.vo</code></li>
<li>40 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_14.vo</code></li>
<li>40 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch03_bet.glob</code></li>
<li>40 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_28B.vo</code></li>
<li>40 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglestransitive.vo</code></li>
<li>40 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_20.vo</code></li>
<li>40 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_9_5.vo</code></li>
<li>40 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/gravityCenter.glob</code></li>
<li>39 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_31short.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelflip.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearbetween.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/vectors.v</code></li>
<li>39 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/arity.v</code></li>
<li>39 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch10_line_reflexivity.v</code></li>
<li>39 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_righttogether.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_23.vo</code></li>
<li>38 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/project.v</code></li>
<li>38 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_legsmallerhypotenuse.vo</code></li>
<li>38 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/euclidean_defs.glob</code></li>
<li>38 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tarski_to_coinc_theory_for_col.vo</code></li>
<li>38 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_31.glob</code></li>
<li>38 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/essai.vo</code></li>
<li>38 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_46.glob</code></li>
<li>38 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_23C.vo</code></li>
<li>38 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_43B.glob</code></li>
<li>38 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_04.glob</code></li>
<li>37 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/CoincR.v</code></li>
<li>37 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_09.vo</code></li>
<li>37 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_twoperpsparallel.vo</code></li>
<li>37 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/UnitTests/unit_tests.glob</code></li>
<li>37 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_28C.vo</code></li>
<li>36 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_28D.vo</code></li>
<li>36 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/Statements/Book_1.v</code></li>
<li>36 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/SPP_tarski.glob</code></li>
<li>36 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_28A.vo</code></li>
<li>36 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_10_12.vo</code></li>
<li>36 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_9_5b.vo</code></li>
<li>36 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch02_cong.glob</code></li>
<li>35 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_diagonalsmeet.glob</code></li>
<li>35 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_25.vo</code></li>
<li>35 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_altitudebisectsbase.vo</code></li>
<li>35 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_15.vo</code></li>
<li>35 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/bachmann_s_lotschnittaxiom_legendre_s_parallel_postulate.glob</code></li>
<li>35 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearparallel.vo</code></li>
<li>35 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/half_angles.v</code></li>
<li>35 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/beeson_s_axioms.vo</code></li>
<li>34 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplements2.vo</code></li>
<li>34 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/sets.v</code></li>
<li>34 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_35helper.glob</code></li>
<li>34 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_18.vo</code></li>
<li>34 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch07_midpoint.v</code></li>
<li>33 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_paralleldef2B.glob</code></li>
<li>33 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_crossbar.vo</code></li>
<li>33 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_twolines2.vo</code></li>
<li>33 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_9_5a.vo</code></li>
<li>33 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/UnitTests/unit_tests_2.glob</code></li>
<li>33 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/Permutations.vo</code></li>
<li>33 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_together2.vo</code></li>
<li>33 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_27B.vo</code></li>
<li>32 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_19.vo</code></li>
<li>32 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_pointreflectionisometry.glob</code></li>
<li>32 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_paralleldef2A.vo</code></li>
<li>32 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch02_cong.vo</code></li>
<li>32 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rightreflection.vo</code></li>
<li>32 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_linereflectionisometry.glob</code></li>
<li>32 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplements.vo</code></li>
<li>31 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch10_line_reflexivity_2D.v</code></li>
<li>31 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/hilbert_axioms.glob</code></li>
<li>31 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_12.vo</code></li>
<li>31 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/inscribed_angle.v</code></li>
<li>31 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/weak_tarski_s_parallel_postulate_weak_inverse_projection_postulate.glob</code></li>
<li>31 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_8_2.vo</code></li>
<li>31 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_11B.glob</code></li>
<li>31 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tarski_to_col_theory.vo</code></li>
<li>31 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_10.glob</code></li>
<li>30 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_erectedperpendicularunique.vo</code></li>
<li>30 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/euclid_to_tarski.vo</code></li>
<li>30 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_3_angles.v</code></li>
<li>30 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelNC.vo</code></li>
<li>30 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squareparallelogram.glob</code></li>
<li>30 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_trans_NID.glob</code></li>
<li>30 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch04_col.vo</code></li>
<li>30 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelcollinear.vo</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearright.vo</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_droppedperpendicularunique.vo</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angletrichotomy.glob</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_26B.vo</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angleorderrespectscongruence.glob</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/weak_inverse_projection_postulate_weak_tarski_s_parallel_postulate.glob</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/independent_tarski_axioms.vo</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/legendre.v</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equaltorightisright.vo</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Euclid4.glob</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_42B.glob</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_06.vo</code></li>
<li>28 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch04_col.glob</code></li>
<li>28 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/Euler_line.glob</code></li>
<li>28 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_crossbar.glob</code></li>
<li>28 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_8_7.vo</code></li>
<li>28 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/euclidean_defs.vo</code></li>
<li>28 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_48A.glob</code></li>
<li>28 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rightangleNC.vo</code></li>
<li>28 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/universal_posidonius_postulate_par_perp_perp.glob</code></li>
<li>27 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/continuity_axioms.glob</code></li>
<li>27 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/euclidean_tactics.vo</code></li>
<li>27 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_2_length.glob</code></li>
<li>27 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglesNC.vo</code></li>
<li>27 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglessymmetric.vo</code></li>
<li>27 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angleaddition.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angledistinct.vo</code></li>
<li>26 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearparallel2.vo</code></li>
<li>26 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesidetransitive.vo</code></li>
<li>26 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squareflip.vo</code></li>
<li>26 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_26A.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_RTsymmetric.vo</code></li>
<li>26 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_30A.glob</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_44.glob</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_13.vo</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_39A.glob</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/circumcenter.v</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/continuity_axioms.vo</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_triangletoparallelogram.glob</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_diagonalsbisect.glob</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_RTcongruence.vo</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplementinequality.glob</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/tarski_axioms.vo</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_48.glob</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_oppositesidesymmetric.vo</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesidecollinear.vo</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelcollinear2.glob</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_notperp.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_midpointunique.vo</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/varignon.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samenotopposite.vo</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_together2.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Pasch_outer2.vo</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rectanglereverse.vo</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_08.vo</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_17.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/parallel_postulates.v</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_29C.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/triangle_playfair_bis.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthanadditive.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/all_equiv.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/perp_bisect.glob</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_01.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplementofright.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/posidonius_postulate_rah.glob</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/tarski_to_makarios.glob</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplements.glob</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearbetween.glob</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_layoffunique.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_21helper.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/concyclic.glob</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_47.glob</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_36.glob</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/tarski_s_euclid_remove_degenerated_cases.vo</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_05.vo</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_altitudeofrighttriangle.glob</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/tarski_to_hilbert.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_sameside2.glob</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthantransitive.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angleorderrespectscongruence2.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesidesymmetric.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Playfairhelper2.glob</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_crossbar2.glob</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglesflip.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_05b.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch06_out_lines.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/first_order.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinear4.glob</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TTtransitive.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_fiveline.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/gravityCenter.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_differenceofparts.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_planeseparation.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_subtractequals.vo</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/similar_rah.glob</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angletrichotomy2.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angleordertransitive.glob</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/aristotle.glob</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/Tagged_predicates.glob</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglesreflexive.vo</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesideflip.vo</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/archimedes.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_39.glob</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray.vo</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Counter_models/counter_model_segment_construction.glob</code></li>
<li>19 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squareunique.glob</code></li>
<li>19 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_21.glob</code></li>
<li>19 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_crossimpliesopposite.vo</code></li>
<li>19 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/angle_archimedes.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_NChelper.vo</code></li>
<li>19 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_29B.glob</code></li>
<li>19 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/independent_tarski_axioms.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_9_5.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalangleshelper.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_8_3.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_outerconnectivity.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_11.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/bachmann_s_lotschnittaxiom_weak_inverse_projection_postulate.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_30helper.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_sumofparts.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rectangleparallelogram.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelsymmetric.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ABCequalsCBA.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_15.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthanbetween.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_trichotomy1.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_30B.glob</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthancongruence.vo</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_interior5.vo</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/weak_inverse_projection_postulate_bachmann_s_lotschnittaxiom.glob</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch15_pyth_rel.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/makarios_variant_axioms.vo</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_altitudebisectsbase.glob</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/TCP_tarski.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_insideor.vo</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglestransitive.glob</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearitypreserved.vo</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TGflip.vo</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/elementary_continuity_props.glob</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_26helper.glob</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_together.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinear5.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TGsymmetric.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_16.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rayimpliescollinear.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch12_parallel_inter_dec.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TTflip2.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/bisector.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Playfairhelper.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_27.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_tworays.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_38.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/alternate_interior_angles_proclus.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_35.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/tangency.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_34.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Dimension_axioms/upper_dim.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Definitions.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray3.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch04_cong_bet.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/CoincR_for_cop.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplementsymmetric.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch05_bet_le.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TTflip.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthanadditive.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_42.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_trichotomy2.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray5.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray1.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equaltorightisright.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_differenceofparts.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/incenter.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TTorder.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_12.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Coplanar_perm.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelflip.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_NCorder.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_06a.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_01.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_03.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_14.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/tarski_playfair.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rightreverse.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_20.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_9_5b.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelbetween.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/Euler_line.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_partnotequalwhole.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_10_12.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/bachmann_s_lotschnittaxiom_weak_triangle_circumscription_principle.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_37.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/exercises.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_oppositesideflip.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray4.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_44A.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_35A.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_PGrectangle.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rectanglerotate.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_paste5.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_4_19.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_18.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/Statements/Book_3.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_24.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rightreflection.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_7a.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_PGrotate.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_betweennesspreserved.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/first_order_dedekind_circle_circle.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_PGsymmetric.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_layoff.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesidereflexive.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_32.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_layoffunique.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Decidability/equivalence_between_decidability_properties_of_basic_relations.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_tarskiparallelflip.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_PGflip.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/proclus_aristotle.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/tarski_to_beeson.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_30.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/CoincR_for_col.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_40.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rightangleNC.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/tarski_euclid.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_9_5a.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/euclid_to_tarski.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_33.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_07.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearright.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinear2.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinear1.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/tarski_to_makarios.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_23B.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthannotequal.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_08.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_NCdistinct.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_extensionunique.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_6b.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/first_order.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch04_cong_bet.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/general_tactics.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_interior5.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/orthocenter.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_47B.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_7b.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthantransitive.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthancongruence2.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/beeson_s_axioms.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_5b.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/all_equiv.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_betweennotequal.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_8_2.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_raystrict.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearorder.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray2.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/tarski_to_euclid.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_legsmallerhypotenuse.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelcollinear1.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_congruenceflip.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ETreflexive.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_doublereverse.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/weak_triangle_circumscription_principle_bachmann_s_lotschnittaxiom.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/tarski_axioms.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_23.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/SPP_tarski.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_droppedperpendicularunique.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_09.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/midpoint_playfair.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/sums.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_congruencetransitive.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_47A.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglessymmetric.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_nullsegment3.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TCreflexive.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/independent_tarski_to_tarski.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_inequalitysymmetric.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squaresequal.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch13_2_length.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_6a.vo</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalitysymmetric.vo</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglesNC.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_36A.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_congruencesymmetric.vo</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthancongruence.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_midpointunique.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/szmielew.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_twolines2.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/tarski_s_euclid_remove_degenerated_cases.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_paralleldef2A.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_29.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/dedekind_archimedes.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_crisscross.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelPasch.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_21helper.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_28B.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_outerconnectivity.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/bachmann_s_lotschnittaxiom_legendre_s_parallel_postulate.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelcollinear.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_fiveline.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tarski_to_coinc_theory_for_concyclic.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_31short.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Counter_models/counter_model_segment_construction.vo</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch03_bet.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_posidonius_postulate.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearitypreserved.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_43B.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TTtransitive.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplements2.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearparallel.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_45.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tarski_to_coinc_theory_for_cop.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/alternate_interior_angles_playfair_bis.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_31.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/midpoint_theorems.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tactics_axioms.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tarski_to_coinc_theory_for_col.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelNC.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/makarios_variant_axioms.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_28D.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_28C.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_pointreflectionisometry.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_43.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_23C.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_subtractequals.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_22.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_universal_posidonius_postulate.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_04.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TTflip2.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_46.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_19.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_together.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/elementary_continuity_props.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_10.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/posidonius_postulate_rah.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearparallel2.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_35helper.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/triangle_playfair_bis.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/parallel_postulates.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_linereflectionisometry.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Pasch_outer2.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_twolines.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_8_7.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/universal_posidonius_postulate_par_perp_perp.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_paralleldef2B.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_11B.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelsymmetric.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_diagonalsmeet.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_48A.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_oppositesidesymmetric.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/essai.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_erectedperpendicularunique.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/similar_rah.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squareparallelogram.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TGflip.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_trichotomy1.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_27B.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angletrichotomy.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_trans_NID.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/exercises.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/euclidean_tactics.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch02_cong.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_28A.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_diagonalsbisect.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/original_spp_inverse_projection_postulate.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/inverse_projection_postulate_proclus_bis.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/triangles.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_33B.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ABCequalsCBA.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/euclidean_axioms.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_42B.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_twoperpsparallel.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/Permutations.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_26B.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Playfair.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_insideor.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_righttogether.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_25.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Euclid4.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_30A.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/varignon.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_8_3.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalangleshelper.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angleorderrespectscongruence.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/thales_postulate_thales_converse_postulate.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_39A.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_26A.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/tarski_euclid.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesidecollinear.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplementinequality.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/triples.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/aristotle.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_crossbar.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/weak_tarski_s_parallel_postulate_weak_inverse_projection_postulate.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_notperp.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_17.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/weak_inverse_projection_postulate_weak_tarski_s_parallel_postulate.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/euclid_5_original_euclid.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/midpoint_playfair.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch04_col.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angleaddition.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelcollinear2.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/incenter.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TGsymmetric.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/existential_playfair_rah.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/perp_bisect.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/concyclic.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_similar.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/original_euclid_original_spp.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/UnitTests/unit_tests.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_21.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesidetransitive.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_RTsymmetric.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/midpoint_thales.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_tworays.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_11.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_sameside2.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesidesymmetric.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_36.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearbetween.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/CoincR_for_cop.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_sumofparts.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray3.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Coplanar_perm.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/all_equiv.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_crossimpliesopposite.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/alternate_interior_angles_proclus.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_together2.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_perp_perp_TCP.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_9_5.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_crossbar2.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_altitudeofrighttriangle.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samenotopposite.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Playfairhelper2.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_44.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinear4.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_RTcongruence.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_betweennesspreserved.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squareunique.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Counter_models/counter_model_bet_identity.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray4.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angleorderrespectscongruence2.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/general_tactics.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_29C.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplements.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_layoff.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/continuity_axioms.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_triangletoparallelogram.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_perp_perp_playfair.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinear2.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/book1.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rectanglereverse.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angledistinct.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_existential_playfair.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/alternate_interior_angles_triangle.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_30helper.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/proclus_aristotle.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_15.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/CoincR_for_col.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/weak_inverse_projection_postulate_bachmann_s_lotschnittaxiom.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rightreverse.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_39.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/bachmann_s_lotschnittaxiom_weak_inverse_projection_postulate.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_13.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_trichotomy2.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_26helper.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesideflip.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinear1.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/UnitTests/unit_tests_2.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rectangleparallelogram.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_05b.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angleordertransitive.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/tarski_to_makarios.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/alternate_interior_angles_triangle.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_41.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_differenceofparts.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Playfairhelper.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_48.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_34.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplementofright.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_20.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squareflip.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_NCorder.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_47.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_06a.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_30B.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/dedekind_archimedes.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_paste5.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_05.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglestransitive.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TTflip.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_38.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthanadditive.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_altitudebisectsbase.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_18.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/tarski_playfair.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rectanglerotate.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/book1.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_partnotequalwhole.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_NChelper.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_37.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_03.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_7a.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_9_5b.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_betweennotequal.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/general_tactics.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthanbetween.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_06.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/proclus_bis_proclus.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/hilbert_axioms.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_NCdistinct.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rightreflection.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Models/euclid_to_tarski.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesidereflexive.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squaresequal.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglesflip.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_layoffunique.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/Statements/Book_3.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_universal_posidonius_postulate.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelbetween.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_extensionunique.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_10_12.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinear5.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_29B.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/general_tactics.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_8_2.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_12.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/consecutive_interior_angles_alternate_interior_angles.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_9_5a.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Annexes/Tagged_predicates.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Continuity/first_order.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_14.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TTorder.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/szmielew.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_01.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_interior5.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearorder.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_08.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/bachmann_s_lotschnittaxiom_weak_triangle_circumscription_principle.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rightangleNC.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_legsmallerhypotenuse.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/euclidean_tactics.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_09.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/original_euclid_original_spp.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_PGrectangle.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthancongruence2.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_23.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/inverse_projection_postulate_proclus_bis.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_posidonius_postulate.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_midpointunique.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthannotequal.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/alternate_interior_angles_playfair_bis.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_twolines2.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equaltorightisright.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/original_spp_inverse_projection_postulate.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_congruenceflip.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_oppositesideflip.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/euclidean_defs.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_droppedperpendicularunique.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_40.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelPasch.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_36A.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/alternate_interior_angles_consecutive_interior_angles.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray1.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthancongruence.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rayimpliescollinear.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthantransitive.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearright.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_4_19.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/tarski_s_euclid_remove_degenerated_cases.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglesNC.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/euclid_5_original_euclid.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglessymmetric.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_outerconnectivity.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tarski_dev/Ch04_cong_bet.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_perp_perp_TCP.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_33.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_doublereverse.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_paralleldef2A.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearitypreserved.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_PGsymmetric.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelflip.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_fiveline.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_43.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_PGrotate.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_19.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_28B.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_21helper.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/weak_triangle_circumscription_principle_bachmann_s_lotschnittaxiom.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tarski_to_coinc_theory_for_cop.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_subtractequals.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglesreflexive.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_perp_perp_playfair.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplementsymmetric.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_tarskiparallelflip.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearparallel2.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tarski_to_coinc_theory_for_col.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/essai.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_midpoint.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/existential_playfair_rah.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/SPP_ID.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_28D.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_28C.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Highschool/midpoint_thales.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_PGflip.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/finish.vo</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_raystrict.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_similar.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/thales_postulate_thales_converse_postulate.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_alternate_interior_angles.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray5.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/Permutations.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray2.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_congruencetransitive.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_par_trans.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_oppositesidesymmetric.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Pasch_outer2.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TTflip2.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_twolines.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TCreflexive.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_bis_playfair.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/tarski_axioms.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_6a.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_7b.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_6b.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_8_7.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tactics_axioms.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_28A.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/independent_tarski_axioms.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ABCequalsCBA.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelcollinear.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squarerectangle.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/thales_converse_postulate_thales_existence.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Counter_models/counter_model_segment_construction.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_27B.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_nullsegment3.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_perp_2_par_par_perp_perp.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/consecutive_interior_angles_alternate_interior_angles.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_twoperpsparallel.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TGflip.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_trichotomy1.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ETreflexive.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_25.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_23C.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TTtransitive.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_congruencesymmetric.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_5b.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/proclus_bis_proclus.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_righttogether.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_together.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/thales_converse_postulate_weak_triangle_circumscription_principle.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_erectedperpendicularunique.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/beeson_s_axioms.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_11.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelNC.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_8_3.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tarski_to_col_theory.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_33B.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/SPP_ID.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_Playfair.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_sumofparts.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_13.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplements2.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Axioms/makarios_variant_axioms.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rectangle_principle_rectangle_existence.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearparallel.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TGsymmetric.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_26B.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_inequalitysymmetric.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_insideor.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_tworays.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalitysymmetric.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray3.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesidecollinear.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/triangle_existential_triangle.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/alternate_interior_angles_consecutive_interior_angles.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_05b.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_RTsymmetric.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_05.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinear2.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray4.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_perp_2_par_par_perp_perp.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_betweennesspreserved.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_41.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angledistinct.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_crossimpliesopposite.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/triples.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_perp_perp_par_perp_2_par.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_layoff.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinear1.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_trichotomy2.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_06.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_partnotequalwhole.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglesflip.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_extensionunique.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/proclus_SPP.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_NChelper.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_par_trans.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplementofright.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samenotopposite.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rightreverse.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_NCorder.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_betweennotequal.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/existential_triangle_rah.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_bis_playfair.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rectanglereverse.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/existential_saccheri_rah.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_7a.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rectangle_existence_rah.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_rectangle_principle.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_midpoint.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesidesymmetric.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_parallelsymmetric.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/thales_existence_rah.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squareflip.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_thales_postulate.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_existential_saccheri.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_alternate_interior_angles.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/thales_converse_postulate_thales_existence.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TTflip.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_NCdistinct.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_trans_playfair.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/thales_converse_postulate_weak_triangle_circumscription_principle.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/general_tactics.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesidetransitive.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_triangle.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_existential_playfair.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesidereflexive.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_31short.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthanbetween.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rectangle_principle_rectangle_existence.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/general_tactics.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_samesideflip.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/triangle_existential_triangle.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rectanglerotate.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalangleshelper.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_RTcongruence.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinear5.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthannotequal.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_collinearorder.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_4_19.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_PGsymmetric.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_PGrotate.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_congruenceflip.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_angleorderrespectscongruence2.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalanglesreflexive.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_doublereverse.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/proposition_03.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_rayimpliescollinear.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TCreflexive.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_PGflip.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_oppositesideflip.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_TTorder.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray5.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_existential_saccheri.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_lessthancongruence2.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/Coinc/tarski_to_col_theory.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_6a.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/proclus_SPP.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/finish.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_squarerectangle.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_6b.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_7b.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_supplementsymmetric.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/playfair_existential_playfair.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/existential_triangle_rah.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_perp_perp_par_perp_2_par.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/existential_saccheri_rah.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/par_trans_playfair.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rectangle_existence_rah.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray1.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/thales_existence_rah.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_raystrict.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ray2.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_congruencetransitive.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_ETreflexive.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_nullsegment3.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_rectangle_principle.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_thales_postulate.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_congruencesymmetric.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Utils/triples.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_3_5b.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_inequalitysymmetric.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Elements/OriginalProofs/lemma_equalitysymmetric.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Meta_theory/Parallel_postulates/rah_triangle.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/main.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/main.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/GeoCoq/Tactics/finish.glob</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-geocoq.2.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>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.03.0-2.0.5/released/8.6.1/geocoq/2.3.0.html | HTML | mit | 181,022 |
using System.Collections.Generic;
namespace Sitecore.Hypermedia.Model
{
public class WorkboxItemModel
{
public string Name { get; set; }
public string Url { get; set; }
public ICollection<LinkModel> Commands { get; set; }
}
} | sergeyshushlyapin/SCH | src/Sitecore.Hypermedia/Model/WorkboxItemModel.cs | C# | mit | 279 |
namespace TurboRango.Dominio
{
public class Contato : Entidade
{
// Atributos
public string Site { get; set; }
public string Telefone { get; set; }
// Construtores
public Contato()
{
}
public Contato(string site, string telefone)
{
this.Site = site;
this.Telefone = telefone;
}
}
}
| gabriel-moutinho/turborango | src/TurboRango/TurboRango.Dominio/Contato.cs | C# | mit | 415 |
#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "sim.settings.local")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv) | CodeRaising/sim | sim/manage.py | Python | mit | 251 |
#ifndef NODES_DEEP_COPY_HPP_
#define NODES_DEEP_COPY_HPP_
// Write a method that takes a pointer to a Node structure as a parameter and
// returns a complete copy of the passed in data structure. The Node data
// structure contains two pointers to other Nodes.
namespace Algo::DS {
class Node {
public:
Node(const Node* first, const Node* second) :
m_first(first), m_second(second) { }
~Node() {
if (nullptr != m_first) {
delete m_first;
}
if (nullptr != m_second) {
delete m_second;
}
}
Node* m_first = nullptr;
Node* m_second = nullptr;
};
Node* DeepCopyOfNode(const Node* const node) {
if (nullptr == node) {
return nullptr;
}
Node* result = new Node;
if (nullptr != node->m_first) {
result->m_first = DeepCopyOfNode(node->m_first);
}
if (nullptr != node->m_second) {
result->m_second = DeepCopyOfNode(node->m_second);
}
return result;
}
}
#endif /* NODES_DEEP_COPY_HPP_ */
| iamantony/CppNotes | src/algorithms/data_structures/nodes_deep_copy.hpp | C++ | mit | 1,029 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>qarith: 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.3 / qarith - 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>
qarith
<small>
8.7.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-02 14:57:45 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-02 14:57:45 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.5.3 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: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/qarith"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/QArith"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [
"keyword: Q"
"keyword: arithmetic"
"keyword: rational numbers"
"keyword: setoid"
"keyword: ring"
"category: Mathematics/Arithmetic and Number Theory/Rational numbers"
"category: Miscellaneous/Extracted Programs/Arithmetic"
]
authors: [ "Pierre Letouzey" ]
bug-reports: "https://github.com/coq-contribs/qarith/issues"
dev-repo: "git+https://github.com/coq-contribs/qarith.git"
synopsis: "A Library for Rational Numbers (QArith)"
description: """
This contribution is a proposition of a library formalizing
rational number in Coq."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/qarith/archive/v8.7.0.tar.gz"
checksum: "md5=196a392d7daae3be78afb68f795266f8"
}
</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.8.7.0 coq.8.5.3</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.3).
The following dependencies couldn't be met:
- coq-qarith -> 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-qarith.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>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.04.2-2.0.5/released/8.5.3/qarith/8.7.0.html | HTML | mit | 7,076 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>counting: 19 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 / counting - 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>
counting
<small>
8.6.0
<span class="label label-success">19 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-22 08:01:35 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-22 08:01:35 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.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: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/counting"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Counting"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: statistics" "category: Miscellaneous/Coq Extensions" ]
authors: [ "Stéphane Lescuyer" ]
bug-reports: "https://github.com/coq-contribs/counting/issues"
dev-repo: "git+https://github.com/coq-contribs/counting.git"
synopsis: "Counting: a Coq plugin for measuring definitions/proofs"
description:
"This plugin keeps the count of the size of definitions and proofs in the current Coq session."
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/counting/archive/v8.6.0.tar.gz"
checksum: "md5=3e430597569e542e626a9dc16c631e40"
}
</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-counting.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-counting.8.6.0 coq.8.6.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>12 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-counting.8.6.0 coq.8.6.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>19 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 79 K</p>
<ul>
<li>55 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/Counting/counting_plugin.cmxs</code></li>
<li>14 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/Counting/counting_plugin.cma</code></li>
<li>4 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/Counting/counting.cmi</code></li>
<li>3 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/Counting/counting_plugin_mod.cmi</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/Counting/Counting.vo</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/Counting/Counting.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-counting.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>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.04.2-2.0.5/released/8.6.1/counting/8.6.0.html | HTML | mit | 7,363 |
require 'ruby_extensions'
require 'latex'
require 'layout'
require 'set'
# Author:: Tor Erik Linnerud (tel@jklm.no)
# Author:: Tom Gundersen (teg@jklm.no)
# Copyright:: Copyright (c) 2008 JKLM DA
# License:: MIT
class Automaton
attr_reader :start, :finals, :graph, :alphabet
# Create a new automaton. new is intended for internal use.
# create makes it easier to create an automaton from scratch.
# start - A symbol
# finals - A set of symbols
# graph - A transition function (Graph) which can be created like this:
# Automaton.new(:a, Set[:c], Graph.from_hash(:a => {'1' => Set[:b]}, :b => {'2' => Set[:a, :c]}))
# This is interpreted as an Automaton with start state a, final (accepting) states :c,
# a transition from :a to :b on the letter 1 and a transition from :b to :a and :c on the letter 2.
def initialize(start, finals, graph)
raise ArgumentError, 'Invalid transition function' unless graph.is_a?(Graph)
@start = start
@finals = finals
@graph = graph
@alphabet = graph.values.map{|transitions| transitions.keys}.flatten.to_set
end
# Create a new automaton, intended for public use
# Unlike new, create allows you to use a single element instead of an array when you just have a single element. Furthermore,
# graph can be (and must be) a hash, instead of a Graph.
# Instead of
# Automaton.new(:a, Set[:c], Graph.from_hash(:a => {'1' => [:b]}, :b => {'2' => [:a, :c]}))
# you can now simply do
# Automaton.create(:a, :c, :a => {'1' => :b}, :b => {'2' => :c})
def self.create(start, finals, graph)
raise ArgumentError, "finals shouldn't be passed to create as a set" if finals.is_a?(Set)
nfa_graph = graph.value_map do |state, transitions|
transitions.value_map {|symbol, s| [s].flatten}
end
self.new(start, [finals].flatten.to_set, Graph.from_hash(nfa_graph)).prune
end
class Builder
attr_reader :hash
def initialize
@hash = {}
end
def method_missing(method, *args)
raise "#{method} has no transitions" if args.empty?
@hash[method] = args.first
end
end
def self.build(start, finals, &block)
builder = Builder.new
builder.instance_eval(&block)
self.create(start, finals, builder.hash)
end
# Keep only reachable states. (Removes all unreachable states.)
def prune
reachable_states_cache = reachable_states
finals = self.finals & reachable_states_cache
graph = self.graph.prune(reachable_states_cache)
self.class.new(start, finals, graph)
end
# Automaton accepting the complement of the language accepted by self
def complement
self.class.new(start, reachable_states - finals, graph)
end
# States reachable from the start state (default), or any other given state
def reachable_states(from = start, already_seen = Set.new)
new_states = (successors_of(from) - already_seen - [from])
already_seen = already_seen + new_states + [from]
new_states.inject(Set.new){|reachables, state| reachables + reachable_states(state, already_seen)} + [from]
end
# States reachable from state in one sucession
def successors_of(state)
state_transitions = graph[state]
return [] unless state_transitions
state_transitions.values.inject(Set.new){|reachables, states| reachables + states}
end
# Will the Automaton accept any string at all?
def accepting?
!(reachable_states & finals).empty?
end
# New automaton with each state tagged with the given name
def tag(name)
tagged_finals = finals.map{|state| state.tag(name)}.to_set
tagged_graph = graph.key_value_map do |state, transitions|
tagged_transitions = transitions.value_map do |symbol, states|
states.map{|s| s.tag(name)}.to_set
end
[state.tag(name), tagged_transitions]
end
self.class.new(start.tag(name), tagged_finals, tagged_graph)
end
def ==(other)
start == other.start &&
finals == other.finals &&
graph == other.graph
end
# Create the intersection of two automata, which is basically the cartesian product of the two
def intersect(other)
start = self.start + other.start
finals = self.finals.to_a.product(other.finals.to_a).map{|a,b| a + b}.to_set
product = self.graph.product(other.graph)
graph = product.key_value_map do |(state1, state2), (transitions1, transitions2)|
common_symbols = transitions1.keys & transitions2.keys
transitions = common_symbols.map do |symbol|
states = transitions1[symbol].to_a.product(transitions2[symbol].to_a).map{|a, b| a + b}
[symbol, states]
end.to_h
[state1 + state2, transitions]
end
self.class.new(start, finals, graph).prune
end
# Automaton accepting the language accepted by self minus the language accepted by other
def -(other)
alphabet = self.alphabet + other.alphabet
self.intersect(other.to_total(alphabet).complement)
end
# self.language subset of other.language?
def subset?(other)
!(self - other).accepting?
end
# self.language == other.language?
def accepting_same_language_as?(other)
self.subset?(other) &&
other.subset?(self)
end
# Set of transitions in the Automaton
def transitions
graph.map do |from, transitions|
transitions.map do |label, to|
to.map do |to|
Transition.new(from, to, label)
end
end
end.flatten
end
# New automaton which is the total version of self. This means that all states have a transition for every symbol in the alphabet.
def to_total(alphabet)
raise ArgumentError unless alphabet.is_a?(Set)
all_states = Graph.from_hash((reachable_states + [:x]).map{|state| [state, {}]}.to_h)
total_graph = all_states.merge(graph).value_map do |state, transitions|
missing_symbols = (alphabet - transitions.keys.to_set)
missing_transitions = missing_symbols.map{|symbol| [symbol, [:x]]}.to_h
transitions.merge(missing_transitions)
end
self.class.new(start, finals, total_graph).prune
end
def inspect
graph.map do |state, transitions|
star = start == state ? '<-' : ''
"\n#{state}#{star}\n" +
transitions.map do |from, to|
list = to.map do |symbol|
finals.include?(symbol)? "(#{symbol})" : "#{symbol}"
end.join(', ')
" #{from}: #{list}"
end.join("\n")
end.join("\n")
end
# Image of the Automaton in the form of a string of latex
def to_tex
nodes = reachable_states.each_with_index.map{|state, i| [state, Layout::Node.new(state, rand * i , rand * i)]}.to_h
transitions.each do |transition|
nodes[transition.from].connect(nodes[transition.to])
end
nodes.values.each do |node|
node.position *= 2.5
end
layout = Layout.new(*nodes.values)
layout.force_direct
layout.normalize
Latex.new(start, finals, nodes.values, transitions)
end
Transition = Struct.new(:from, :to, :label)
class Graph < Hash
# Create from hash
def self.from_hash(hash)
# Change from storing the states as an array to a set
self.new.replace(hash.value_map do |state,transitions|
transitions.value_map do |symbol,states|
states.to_set
end
end)
end
# Creates a new hash where the new keys are the cartesian product of
# the keys of the old hashes and the new values the pair of values created by
# self.values_at(new_key.first), other.values_at(new_key.last)
# {:a => 1, :b => 2}.product(:c => 3, :d => 4)
# #=> {[:a, :d] => [1, 4], [:a, :c] => [1, 3], [:b, :c] => [2, 3], [:b, :d] => [2, 4]}
def product(other)
self.keys.product(other.keys).inject(self.class.new) do |hash, (key1, key2)|
hash[[key1,key2]] = [self[key1],other[key2]]
hash
end
end
# Invokes block once for each element of self, each time yielding key and value.
# Creates a new hash from the key => value pairs returned by the block,
# these pairs should be an array of the form [key, value].
#
# {:a => 1, :b => 2}.key_value_map{|key, value| [key.to_s, value * 2]}
# #=> {"a" => 2, "b" => 4}
def key_value_map
self.inject(self.class.new) do |hash, (key,value)|
new_key, new_value = yield(key, value)
hash[new_key] = new_value
hash
end
end
def [](state)
return super || {}
end
def to_hash
Hash.new.replace(self)
end
def merge(other)
raise ArgumentError, 'Merging with something that is not a TransitionFunction' unless other.is_a?(Graph)
new = {}
self.each do |state, transitions|
new[state] = Graph.merge_transitions(other[state],transitions)
end
other.each do |state, transitions|
new[state] = transitions unless new.has_key?(state)
end
Graph.from_hash(new)
end
def self.merge_transitions(t1,t2)
new = {}
t1.each do |symbol,states|
new[symbol] = (states + (t2[symbol] || Set.new))
end
t2.merge(new)
end
def prune(reachable_states)
pruned = self.select do |state,_|
reachable_states.include? state
end
Graph.from_hash(pruned)
end
end
end | toreriklinnerud/automaton | lib/automaton.rb | Ruby | mit | 9,574 |
---
layout: post
title: "Japan Expo Paris 2017"
date: 2017-07-08 09:00:00
options: nomenu, past
lang: en
ref: japanexpoparis20170807
description:
image: "/images/japanexpoparis2017-2.png"
image-sm: "/images/japanexpoparis2017.jpg"
---
Are you a fan of **traditional / modern** Japan? This event may interest you!
We invite you to discover the Japanese culture through **JAPAN EXPO** an exhibition which will take place in Paris **from 6<sup>th</sup> to 9<sup>th</sup> July 2017**. We will attend this event on **July, Saturday 08<sup>th</sup>**.
<ul>
<li> <h4 style="display: inline;">Japan Expo, Paris. July, Saturday 08<sup>th</sup>, 2017. From 9h00 to 18h00.</h4> <a href="http://www.japan-expo-paris.com/en/" >JAPAN EXPO.</a>
<br>
@ : <a href="https://goo.gl/maps/ScLmCktBrao"><i>Parc des Expositions de Paris-Nord Villepinte.</i></a></li>
<li> <h4 style="display: inline;"> Ticketing (online presale) <font color="red"> !!! Last day: today Jully 05<sup>th</sup> at 23h59</font></h4>. Otherwise, you will have to get in line at 10h00. <a href="http://www.japan-expo-paris.com/en/ticketing/JEP2017">Ticketing</a>.</li>
<li><h4 style="display: inline;">Program </h4>: <a href="http://www.japan-expo-paris.com/fr/programme/2017-07-08">July, Saturday 08 <sup>th</sup>.</a>
</li>
<li>
<h4 style="display: inline;">Doodle</h4>: <a href="https://doodle.com/poll/dpgvfhzxva7ixepr"> <i>I'll be there.</i></a>
</li>
<li><i>If you go in car, carpooling will be wonderful!!</i> </li>
<li>
<h4 style="display: inline;">Cosplay</h4>: <a href="https://drive.google.com/drive/folders/0B9oI0eXJPpbtMjlBUGZlckMyRzg?usp=sharing"> <i>Pictures.</i></a>
</li>
<li>
<h4 style="display: inline;">Shamisen</h4>: <a href="https://en.wikipedia.org/wiki/Shamisen"> <i>Wiki</i></a>. <a href="https://drive.google.com/drive/folders/0B9oI0eXJPpbtZTM1dUJ4WXF3dW8?usp=sharing"> <i>Live.</i></a> <a href="https://www.youtube.com/watch?v=wx8BVGHMiC0"> <i>Pro1</i></a>. <a href="https://www.youtube.com/watch?v=w8sGJ2hR4Wc"> <i>Pro2</i></a>.
</li>
</ul>
| doctorants-actifs/doctorants-actifs.github.io | _posts/2017-07-08-japanexpoparis2017-en.markdown | Markdown | mit | 2,034 |
class NotSupportedDayError(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(" ".join([" Day ", value, " is not supported "]))
| rakeshsingh/trend-in | trendin/exceptions.py | Python | mit | 193 |
---
title: "AppSignal for Ruby load order"
---
The AppSignal Ruby gem can be configured in a couple different ways. Through an
initializer, with a configuration file or through environment variables.
!> In Ruby gem version 2.0 the load order changed! Step 4 and 5 were swapped,
making sure that environment variables are loaded after the `appsignal.yml`
configuration file. Read more about it in the [Pull Request on
GitHub](https://github.com/appsignal/appsignal-ruby/pull/180).
The configuration is loaded in a five step process. Starting with the gem
defaults and ending with reading environment variables. The configuration
options can be mixed without losing configuration from a different option.
Using an initializer, a configuration file and environment variables together
will work.
## Load orders
- 1. [Gem defaults - `default`](#default)
- 2. [System detected settings - `system`](#system)
- 3. [Initial configuration - `initial`](#initial)
- 4. [`appsignal.yml` config file - `file`](#file)
- 5. [Environment variables - `env`](#env)
##=default 1. Gem defaults
The AppSignal gem starts with loading its default configuration, setting paths
and enabling certain features.
The agent defaults can be found in the [gem source]
(https://github.com/appsignal/appsignal-ruby/blob/main/lib/appsignal/config.rb)
as `Appsignal::Config::DEFAULT_CONFIG`.
This source is listed as `default` in the [diagnose](/ruby/command-line/diagnose.html) output.
##=system 2. System detected settings
The gem detects what kind of system it's running on and configures itself
accordingly.
For example, when it's running inside a container based system (such as Docker
and Heroku) it sets the configuration option `:running_in_container` to `true`.
This source is listed as `system` in the [diagnose](/ruby/command-line/diagnose.html) output.
##=initial 3. Initial configuration given to `Config` initializer
When manually creating a `Appsignal::Config` class you can pass in the
initial configuration you want to apply. This is a hash of any of the
options described below.
```ruby
Appsignal.config = Appsignal::Config.new(Dir.pwd, "production", {
active: true,
name: "My app!",
push_api_key: "e55f8e96-62df-4817-b672-d10c8d924065"
})
```
This step will override all given options from the defaults or system
detected configuration.
This source is listed as `initial` in the [diagnose](/ruby/command-line/diagnose.html) output.
##=file 4. `appsignal.yml` config file
The most common way to configure your application is using the `appsignal.yml`
file. When you use the `appsignal install` command the gem will create one for
you.
The path of this configuration file is `{project_root}/config/appsignal.yml`.
This step will override all given options from the defaults, system
detected and initializer configuration.
This source is listed as `file` in the [diagnose](/ruby/command-line/diagnose.html) output.
##=env 5. Environment variables
Lastly AppSignal will look for its configuration in environment variables.
When found these will override all given configuration options from
previous steps.
```bash
export APPSIGNAL_APP_NAME="my custom app name"
# start your app here
```
This source is listed as `env` in the [diagnose](/ruby/command-line/diagnose.html) output.
| appsignal/appsignal-docs | source/ruby/configuration/load-order.html.md | Markdown | mit | 3,299 |
<?php
namespace Tests;
use Codeages\Biz\Order\Dao\OrderDao;
use Codeages\Biz\Order\Dao\OrderLogDao;
use Codeages\Biz\Order\Service\OrderService;
use Codeages\Biz\Order\Service\WorkflowService;
class OrderServiceTest extends IntegrationTestCase
{
public function setUp()
{
parent::setUp();
$currentUser = array(
'id' => 1
);
$this->biz['user'] = $currentUser;
}
/**
* @expectedException Codeages\Biz\Framework\Service\Exception\AccessDeniedException
*/
public function testCreateOrderWithoutLogin()
{
$orderItems = $this->mockOrderItems();
$order = $this->mockOrder();
$currentUser = array(
'id' => ''
);
$this->biz['user'] = $currentUser;
$this->getWorkflowService()->start($order, $orderItems);
}
/**
* @expectedException Codeages\Biz\Framework\Service\Exception\InvalidArgumentException
*/
public function testCreateOrderWithoutTitle()
{
$orderItems = $this->mockOrderItems();
unset($orderItems[0]['title']);
$this->getWorkflowService()->start($this->mockOrder(), $orderItems);
}
/**
* @expectedException Codeages\Biz\Framework\Service\Exception\InvalidArgumentException
*/
public function testCreateOrderWithoutPriceAmount()
{
$orderItems = $this->mockOrderItems();
unset($orderItems[0]['price_amount']);
$this->getWorkflowService()->start($this->mockOrder(), $orderItems);
}
/**
* @expectedException Codeages\Biz\Framework\Service\Exception\InvalidArgumentException
*/
public function testCreateOrderWithoutTargetType()
{
$orderItems = $this->mockOrderItems();
unset($orderItems[0]['target_type']);
$this->getWorkflowService()->start($this->mockOrder(), $orderItems);
}
/**
* @expectedException Codeages\Biz\Framework\Service\Exception\InvalidArgumentException
*/
public function testCreateOrderWithoutTargetId()
{
$orderItems = $this->mockOrderItems();
unset($orderItems[0]['target_id']);
$this->getWorkflowService()->start($this->mockOrder(), $orderItems);
}
/**
* @expectedException Codeages\Biz\Framework\Service\Exception\InvalidArgumentException
*/
public function testCreateOrderWithoutUserId()
{
$orderItems = $this->mockOrderItems();
$order = $this->mockOrder();
unset($order['user_id']);
$this->getWorkflowService()->start($order, $orderItems);
}
public function testCreateOrder()
{
$mockedOrderItems = $this->mockOrderItems();
$mockOrder = $this->mockOrder();
$order = $this->getWorkflowService()->start($mockOrder, $mockedOrderItems);
$this->assertCreatedOrder($mockOrder, $mockedOrderItems, $order);
}
public function testCreateOrderWhenZeroPayAmount()
{
$mockedOrderItems = array(
array(
'title' => '人工智能神经网络',
'detail' => '<div>独创的教学</div>',
'price_amount' => 100,
'target_id' => 1,
'target_type' => 'course',
'deducts' => array(
array(
'deduct_id' => 1,
'deduct_type' => 'discount',
'deduct_amount' => 20,
'detail' => '打折活动扣除10元'
),
array(
'deduct_id' => 2,
'deduct_type' => 'coupon',
'deduct_amount' => 80,
'detail' => '使用优惠码扣除8元'
)
)
)
);
$mockOrder = $this->mockOrder();
$order = $this->getWorkflowService()->start($mockOrder, $mockedOrderItems);
$this->assertEquals('paid', $order['status']);
}
public function testPay()
{
$mockedOrderItems = $this->mockOrderItems();
$order = $this->getWorkflowService()->start($this->mockOrder(), $mockedOrderItems);
$data = array(
'order_sn' => $order['sn'],
'trade_sn' => '1234567',
'pay_time' => time(),
'payment_platform' => 'wechat'
);
$this->getWorkflowService()->paying($order['id']);
$this->getWorkflowService()->paid($data);
$order = $this->getOrderService()->getOrderBySn($order['sn']);
$this->assertPaidOrder($data, $order);
}
/**
* @expectedException Codeages\Biz\Framework\Service\Exception\AccessDeniedException
*/
public function testCloseOrderWhenPaidStatus()
{
$mockedOrderItems = $this->mockOrderItems();
$order = $this->getWorkflowService()->start($this->mockOrder(), $mockedOrderItems);
$data = array(
'order_sn' => $order['sn'],
'trade_sn' => '1234567',
'pay_time' => time()
);
$this->getWorkflowService()->paying($order['id']);
$this->getWorkflowService()->paid($data);
$this->getWorkflowService()->close($order['id']);
}
public function testCloseOrder()
{
$mockedOrderItems = $this->mockOrderItems();
$order = $this->getWorkflowService()->start($this->mockOrder(), $mockedOrderItems);
$order = $this->getWorkflowService()->close($order['id']);
$this->assertEquals('closed', $order['status']);
$this->assertNotEmpty($order['close_time']);
$orderItems = $this->getOrderService()->findOrderItemsByOrderId($order['id']);
foreach ($orderItems as $orderItem) {
$this->assertEquals('closed', $orderItem['status']);
$this->assertNotEmpty($orderItem['close_time']);
}
}
public function testSearchOrdersWithItemConditions()
{
$mockedOrderDao = $this->mockObjectIntoBiz(
'Order:OrderDao',
array(
array(
'functionName' => 'queryWithItemConditions',
'withParams' => array(
array('order_item_title' => 'item_title'),
array('created_time' => 'DESC'),
0,
10
),
'returnValue' => array('sn' => 'order-sn'),
),
)
);
$result = $this->getOrderService()->searchOrders(
array('order_item_title' => 'item_title'),
array('created_time' => 'DESC'),
0,
10
);
$this->assertEquals('order-sn', $result['sn']);
$mockedOrderDao->shouldHaveReceived('queryWithItemConditions');
}
public function testSearchOrdersWithoutItemConditions()
{
$mockedOrderDao = $this->mockObjectIntoBiz(
'Order:OrderDao',
array(
array(
'functionName' => 'search',
'withParams' => array(
array('title_like' => 'order_title'),
array('created_time' => 'DESC'),
0,
10
),
'returnValue' => array('sn' => 'order-sn'),
),
)
);
$result = $this->getOrderService()->searchOrders(
array('title_like' => 'order_title'),
array('created_time' => 'DESC'),
0,
10
);
$this->assertEquals('order-sn', $result['sn']);
$mockedOrderDao->shouldHaveReceived('search');
}
public function testCountOrdersWithItemConditions()
{
$mockedOrderDao = $this->mockObjectIntoBiz(
'Order:OrderDao',
array(
array(
'functionName' => 'queryCountWithItemConditions',
'withParams' => array(
array('order_item_title' => 'item_title'),
),
'returnValue' => 2,
),
)
);
$result = $this->getOrderService()->countOrders(
array('order_item_title' => 'item_title')
);
$this->assertEquals(2, $result);
$mockedOrderDao->shouldHaveReceived('queryCountWithItemConditions');
}
public function testCountOrdersWithoutItemConditions()
{
$mockedOrderDao = $this->mockObjectIntoBiz(
'Order:OrderDao',
array(
array(
'functionName' => 'count',
'withParams' => array(
array('title_like' => 'order_title'),
),
'returnValue' => 3,
),
)
);
$result = $this->getOrderService()->countOrders(
array('title_like' => 'order_title')
);
$this->assertEquals(3, $result);
$mockedOrderDao->shouldHaveReceived('count');
}
public function testSearchOrderItems()
{
$mockedOrderItems = $this->mockOrderItems();
$order = $this->getWorkflowService()->start($this->mockOrder(), $mockedOrderItems);
$orderItems = $this->getOrderService()->searchOrderItems([], [], 0, PHP_INT_MAX);
$this->assertEquals(2, count($orderItems));
}
public function testCountOrderItems()
{
$mockedOrderItems = $this->mockOrderItems();
$order = $this->getWorkflowService()->start($this->mockOrder(), $mockedOrderItems);
$count = $this->getOrderService()->countOrderItems([]);
$this->assertEquals(2, $count);
}
protected function assertCreatedOrder($mockOrder, $mockedOrderItems, $order)
{
$this->assertNotEmpty($order);
$this->assertNotEmpty($order['sn']);
$this->assertEquals('created', $order['status']);
$this->assertEquals('wap', $order['device']);
$this->assertEquals($mockOrder['title'], $order['title']);
$this->assertEquals($mockOrder['source'], $order['source']);
$this->assertEquals($mockOrder['callback'], $order['callback']);
$this->assertEquals($mockOrder['created_reason'], $order['created_reason']);
$this->assertEquals($mockOrder['create_extra'], $order['create_extra']);
$this->assertEquals($mockOrder['expired_refund_days'], $order['expired_refund_days']);
$this->assertEquals($this->sumOrderPriceAmount($mockedOrderItems), $order['price_amount']);
$this->assertEquals($this->sumOrderPayAmount($mockedOrderItems), $order['pay_amount']);
$this->assertEquals($this->biz['user']['id'], $order['user_id']);
$this->assertEquals($this->biz['user']['id'], $order['created_user_id']);
$orderItems = $this->getOrderService()->findOrderItemsByOrderId($order['id']);
$this->assertNotEmpty($orderItems);
$this->assertEquals(count($mockedOrderItems), count($orderItems));
for ($i = 0; $i < count($mockedOrderItems); $i++) {
$item = $orderItems[$i];
$mockedItem = $mockedOrderItems[$i];
$this->assertNotEmpty($item['sn']);
$this->assertEquals($order['id'], $item['order_id']);
$this->assertEquals($mockedItem['title'], $item['title']);
$this->assertEquals($mockedItem['detail'], $item['detail']);
$this->assertEquals('created', $item['status']);
$this->assertEquals($mockedItem['price_amount'], $item['price_amount']);
$this->assertEquals($this->sumOrderItemPayAmount($mockedItem), $item['pay_amount']);
$this->assertEquals($mockedItem['target_id'], $item['target_id']);
$this->assertEquals($mockedItem['target_type'], $item['target_type']);
$this->assertEquals($mockedItem['create_extra'], $item['create_extra']);
$this->assertEquals($order['user_id'], $item['user_id']);
$this->assertEquals($order['seller_id'], $item['seller_id']);
$deducts = $this->getOrderService()->findOrderItemDeductsByItemId($item['id']);
$this->assertEquals(count($mockedItem['deducts']), count($deducts));
for ($j = 0; $j < count($deducts); $j++) {
$deduct = $deducts[$j];
$mockedDeduct = $mockedItem['deducts'][$j];
$this->assertEquals($order['id'], $deduct['order_id']);
$this->assertEquals($item['id'], $deduct['item_id']);
$this->assertEquals($item['seller_id'], $deduct['seller_id']);
$this->assertEquals($item['user_id'], $deduct['user_id']);
$this->assertEquals($mockedDeduct['detail'], $deduct['detail']);
$this->assertEquals($mockedDeduct['deduct_type'], $deduct['deduct_type']);
$this->assertEquals($mockedDeduct['deduct_id'], $deduct['deduct_id']);
$this->assertEquals($mockedDeduct['deduct_amount'], $deduct['deduct_amount']);
}
}
}
protected function assertPaidOrder($notifyData, $order)
{
$this->assertEquals('paid', $order['status']);
$this->assertNotEmpty($order['pay_time']);
$this->assertNotEmpty($order['trade_sn']);
$this->assertEquals($notifyData['trade_sn'], $order['trade_sn']);
$this->assertEquals($notifyData['pay_time'], $order['pay_time']);
$this->assertEquals($order['pay_time'] + $order['expired_refund_days']*86400, $order['refund_deadline']);
$orderItems = $this->getOrderService()->findOrderItemsByOrderId($order['id']);
foreach ($orderItems as $orderItem) {
$this->assertEquals('paid', $orderItem['status']);
$this->assertEquals($order['pay_time'], $orderItem['pay_time']);
}
}
protected function mockOrderItems()
{
return array(
array(
'title' => '人工智能神经网络',
'detail' => '<div>独创的教学</div>',
'price_amount' => 100,
'target_id' => 1,
'target_type' => 'course',
'create_extra' => array(
'xxx' => 'xxx'
),
'deducts' => array(
array(
'deduct_id' => 1,
'deduct_type' => 'discount',
'deduct_amount' => 10,
'detail' => '打折活动扣除10元'
),
array(
'deduct_id' => 2,
'deduct_type' => 'coupon',
'deduct_amount' => 8,
'detail' => '使用优惠码扣除8元'
)
)
),
array(
'title' => 'F1驾驶技术',
'detail' => '<div>F1任丘人发生的发个</div>',
'price_amount' => 110,
'target_id' => 2,
'target_type' => 'course',
'create_extra' => array(
'xxx' => 'xxx'
),
'deducts' => array(
array(
'deduct_id' => 3,
'deduct_type' => 'discount',
'deduct_amount' => 10,
'detail' => '打折活动扣除10元'
),
array(
'deduct_id' => 5,
'deduct_type' => 'coupon',
'deduct_amount' => 4,
'detail' => '使用优惠码扣除4元'
)
)
)
);
}
/**
* @expectedException \Codeages\Biz\Framework\Service\Exception\InvalidArgumentException
*/
public function testAddOrderItemDeductWithErrorDeduct()
{
$deduct = array();
$this->getOrderService()->addOrderItemDeduct($deduct);
}
/**
* @expectedException \Codeages\Biz\Framework\Service\Exception\AccessDeniedException
*/
public function testAddOrderItemDeductWithErrorOrderStatus()
{
$mockedOrderItems = $this->mockOrderItems();
$mockOrder = $this->mockOrder();
$order = $this->getWorkflowService()->start($mockOrder, $mockedOrderItems);
$order = $this->getOrderdao()->update($order['id'], array('status' => 'paid'));
$deduct = array(
'order_id' => $order['id'],
'deduct_id' => 1,
'deduct_type' => 'test',
'deduct_amount' => 100,
'user_id' => 1,
);
$this->getOrderService()->addOrderItemDeduct($deduct);
}
public function testAddOrderItemDeduct()
{
$mockedOrderItems = $this->mockOrderItems();
$mockOrder = $this->mockOrder();
$order = $this->getWorkflowService()->start($mockOrder, $mockedOrderItems);
$deduct = array(
'order_id' => $order['id'],
'item_id' => 0,
'deduct_id' => 1,
'deduct_type' => 'test',
'deduct_type_name' => 'test',
'deduct_amount' => 100,
'user_id' => 1,
);
$newDeduct = $this->getOrderService()->addOrderItemDeduct($deduct);
$this->assertArraySubset($deduct, $newDeduct);
$order = $this->getOrderdao()->get($order['id']);
$this->assertEquals(78, $order['pay_amount']);
}
/**
* @expectedException \Codeages\Biz\Framework\Service\Exception\NotFoundException
*/
public function testUpdateOrderItemDeductWithNotExist()
{
$this->getOrderService()->updateOrderItemDeduct(0, array());
}
public function testUpdateOrderItemDeduct()
{
$mockedOrderItems = $this->mockOrderItems();
$mockOrder = $this->mockOrder();
$order = $this->getWorkflowService()->start($mockOrder, $mockedOrderItems);
$deduct = array(
'order_id' => $order['id'],
'item_id' => 0,
'deduct_id' => 1,
'deduct_type' => 'test',
'deduct_amount' => 100,
'user_id' => 1,
);
$newDeduct = $this->getOrderService()->addOrderItemDeduct($deduct);
$newDeduct = $this->getOrderService()->updateOrderItemDeduct($newDeduct['id'], array('deduct_amount' => 10));
$this->assertEquals(10, $newDeduct['deduct_amount']);
$order = $this->getOrderdao()->get($order['id']);
$this->assertEquals(168, $order['pay_amount']);
}
public function testAdjustPrice()
{
$mockedOrderItems = $this->mockOrderItems();
$mockOrder = $this->mockOrder();
$order = $this->getWorkflowService()->start($mockOrder, $mockedOrderItems);
$adjustDeduct = $this->getWorkflowService()->adjustPrice($order['id'], 158);
$this->assertEquals(20, $adjustDeduct['deduct_amount']);
$this->assertArrayHasKey('order', $adjustDeduct);
$orderLogs = $this->getOrderLogDao()->search(array('status' => 'order.adjust_price'), array(), 0, 1);
$this->assertNotNull($orderLogs);
}
public function testAdjustPriceSecondTime()
{
$mockedOrderItems = $this->mockOrderItems();
$mockOrder = $this->mockOrder();
$order = $this->getWorkflowService()->start($mockOrder, $mockedOrderItems);
$adjustDeduct = $this->getWorkflowService()->adjustPrice($order['id'], 158);
$this->assertEquals(20, $adjustDeduct['deduct_amount']);
$adjustDeduct = $this->getWorkflowService()->adjustPrice($order['id'], 100);
$this->assertEquals(78, $adjustDeduct['deduct_amount']);
}
protected function sumOrderItemPayAmount($item)
{
$priceAmount = $item['price_amount'];
foreach ($item['deducts'] as $deduct) {
$priceAmount = $priceAmount - $deduct['deduct_amount'];
}
return $priceAmount;
}
protected function mockOrder()
{
return array(
'title' => '购买商品',
'callback' => array('url'=>'http://try6.edusoho.cn/'),
'source' => 'custom',
'price_type' => 'coin',
'user_id' => $this->biz['user']['id'],
'created_reason' => '购买',
'create_extra' => array(
'xxx' => 'xxx'
),
'device' => 'wap',
'expired_refund_days' => 5
);
}
protected function sumOrderPriceAmount($items)
{
$price = 0;
foreach ($items as $item) {
$price = $price + $item['price_amount'];
}
return $price;
}
protected function sumOrderPayAmount($items)
{
$priceAmount = $this->sumOrderPriceAmount($items);
foreach ($items as $item) {
foreach ($item['deducts'] as $deduct) {
$priceAmount = $priceAmount - $deduct['deduct_amount'];
}
}
if ($priceAmount < 0) {
$priceAmount = 0;
}
return $priceAmount;
}
/**
* @return OrderService
*/
protected function getOrderService()
{
return $this->biz->service('Order:OrderService');
}
/**
* @return WorkflowService
*/
protected function getWorkflowService()
{
return $this->biz->service('Order:WorkflowService');
}
protected function getOrderItemRefundDao()
{
return $this->biz->dao('Order:OrderItemRefundDao');
}
/**
* @return OrderDao
*/
protected function getOrderdao()
{
return $this->biz->dao('Order:OrderDao');
}
/**
* @return OrderLogDao
*/
protected function getOrderLogDao()
{
return $this->biz->dao('Order:OrderLogDao');
}
}
| codeages/biz-order-pay | tests/Order/OrderServiceTest.php | PHP | mit | 21,891 |
# Configure barista.
Barista.configure do |c|
# Change the root to use app/scripts
c.root = Rails.root.join("app", "scripts")
# Change the output root, causing Barista to compile into public/coffeescripts
c.output_root = Rails.root.join("public", "coffeescripts")
#
# Disable auto compile, use generated file directly:
# c.auto_compile = false
# Add a new framework:
# c.register :tests, :root => Rails.root.join('test', 'coffeescript'), :output_prefix => 'test'
# Disable wrapping in a closure:
# c.bare = true
# ... or ...
# c.bare!
# Change the output root for a framework:
# c.change_output_prefix! 'framework-name', 'output-prefix'
# or for all frameworks...
# c.each_framework do |framework|
# c.change_output_prefix! framework, "vendor/#{framework.name}"
# end
# or, prefix the path for the app files:
# c.change_output_prefix! :default, 'my-app-name'
# or, change the directory the framework goes into full stop:
# c.change_output_prefix! :tests, Rails.root.join('spec', 'javascripts')
# or, hook into the compilation:
# c.before_compilation { |path| puts "Barista: Compiling #{path}" }
# c.on_compilation { |path| puts "Barista: Successfully compiled #{path}" }
# c.on_compilation_error { |path, output| puts "Barista: Compilation of #{path} failed with:\n#{output}" }
# c.on_compilation_with_warning { |path, output| puts "Barista: Compilation of #{path} had a warning:\n#{output}" }
# Turn off preambles and exceptions on failure:
# c.verbose = false
# Or, make sure it is always on
# c.verbose!
# If you want to use a custom JS file, you can as well
# e.g. vendoring CoffeeScript in your application:
# c.js_path = Rails.root.join('public', 'javascripts', 'coffee-script.js')
# Make helpers and the HAML filter output coffee-script instead of the compiled JS.
# Used in combination with the coffeescript_interpreter_js helper in Rails.
# c.embedded_interpreter = true
end
| jmhbrown/latify | config/initializers/barista_config.rb | Ruby | mit | 2,009 |
# cameraCommand
<b>cameraCommand</b> messages contain a camera control command that the camera referenced in the to: field should execute at the specified timestamp.
## Implementation
The <b>cameraCommand</b> schema is included in the module `nitrogen-camera`. You can add camera functionality to any service, device, or application by adding this module as a dependency via npm:
`npm install nitrogen-camera`
## Properties
The following properties are used in the body element:
* <b>command</b> (string, required): The command that the camera should execute. Should be one of:
* <b>snapshot</b>: One-shot snapshot. Camera should execute snapshot as close as possible, but not before, the timestamp of this command message (which can occur in the future) and send an <b>image</b> message with response_to set to this cameraCommand.
* <b>message</b> (object, optional): An object with attributes that should be applied to image message(s) generated by this command. For instance, a message value of { tags: ['sunset','house'] } would apply these tags to the message(s) generated. | nitrogenjs/website | source/docs/schemas/cameraCommand.md | Markdown | mit | 1,090 |
---
title: afa5
type: products
image: /img/Screen Shot 2017-05-09 at 11.56.54 AM.png
heading: a5
description: lksadjf lkasdjf lksajdf lksdaj flksadj flksa fdj
main:
heading: Foo Bar BAz
description: |-
***This is i a thing***kjh hjk kj
# Blah Blah
## Blah
### Baah
image1:
alt: kkkk
---
| pblack/kaldi-hugo-cms-template | site/content/pages2/afa5.md | Markdown | mit | 337 |
---
title: axm48
type: products
image: /img/Screen Shot 2017-05-09 at 11.56.54 AM.png
heading: m48
description: lksadjf lkasdjf lksajdf lksdaj flksadj flksa fdj
main:
heading: Foo Bar BAz
description: |-
***This is i a thing***kjh hjk kj
# Blah Blah
## Blah
### Baah
image1:
alt: kkkk
---
| pblack/kaldi-hugo-cms-template | site/content/pages2/axm48.md | Markdown | mit | 339 |
/* This file is part of the MicroPython project, http://micropython.org/
* MIT License; Copyright (c) 2021 Damien P. George
*/
// STM32F407VET6 Mini by VCC-GND Studio
// http://vcc-gnd.com/
// https://item.taobao.com/item.htm?ft=t&id=523361737493
// https://www.aliexpress.com/wholesale?SearchText=STM32F407VET6+Mini
// DFU mode can be accessed by switching BOOT0 DIP ON (towards USB)
#define MICROPY_HW_BOARD_NAME "VCC-GND STM32F407VE"
#define MICROPY_HW_MCU_NAME "STM32F407VE"
#define MICROPY_HW_FLASH_FS_LABEL "VCCGNDF407VE"
// 1 = use internal flash (512 KByte)
// 0 = use external SPI flash
#define MICROPY_HW_ENABLE_INTERNAL_FLASH_STORAGE (1)
#define MICROPY_HW_HAS_FLASH (1)
#define MICROPY_HW_ENABLE_RNG (1)
#define MICROPY_HW_ENABLE_RTC (1)
#define MICROPY_HW_ENABLE_DAC (1)
#define MICROPY_HW_ENABLE_USB (1)
#define MICROPY_HW_ENABLE_SDCARD (1)
// HSE is 25MHz
#define MICROPY_HW_CLK_PLLM (25) // divide external clock by this to get 1MHz
#define MICROPY_HW_CLK_PLLN (336) // PLL clock in MHz
#define MICROPY_HW_CLK_PLLP (RCC_PLLP_DIV2) // divide PLL clock by this to get core clock
#define MICROPY_HW_CLK_PLLQ (7) // divide core clock by this to get 48MHz
// The board has a 32kHz crystal for the RTC
#define MICROPY_HW_RTC_USE_LSE (1)
#define MICROPY_HW_RTC_USE_US (0)
// #define MICROPY_HW_RTC_USE_CALOUT (1) // turn on/off PC13 512Hz output
// USART1
#define MICROPY_HW_UART1_TX (pin_A9) // PA9,PB6
#define MICROPY_HW_UART1_RX (pin_A10) // PA10,PB7
// USART2
#define MICROPY_HW_UART2_TX (pin_A2) // PA2,PD5
#define MICROPY_HW_UART2_RX (pin_A3) // PA3,PD6
#define MICROPY_HW_UART2_RTS (pin_A1) // PA1,PD4
#define MICROPY_HW_UART2_CTS (pin_A0) // PA0,PD3
// USART3
#define MICROPY_HW_UART3_TX (pin_D8) // PB10,PC10,PD8
#define MICROPY_HW_UART3_RX (pin_D9) // PB11,PC11,PD9
#define MICROPY_HW_UART3_RTS (pin_D12) // PB14,PD12
#define MICROPY_HW_UART3_CTS (pin_D11) // PB13,PD11
// UART4
#define MICROPY_HW_UART4_TX (pin_A0) // PA0,PC10
#define MICROPY_HW_UART4_RX (pin_A1) // PA1,PC11
// UART5
#define MICROPY_HW_UART5_TX (pin_C12) // PC12
#define MICROPY_HW_UART5_RX (pin_D2) // PD2
// USART6
#define MICROPY_HW_UART6_TX (pin_C6) // PC6,PG14
#define MICROPY_HW_UART6_RX (pin_C7) // PC7,PG9
// I2C buses
#define MICROPY_HW_I2C1_SCL (pin_B6) // PB8,PB6
#define MICROPY_HW_I2C1_SDA (pin_B7) // PB9,PB7
#define MICROPY_HW_I2C2_SCL (pin_B10) // PB10
#define MICROPY_HW_I2C2_SDA (pin_B11) // PB11
#define MICROPY_HW_I2C3_SCL (pin_A8) // PA8
#define MICROPY_HW_I2C3_SDA (pin_C9) // PC9
// AT24C08 EEPROM on I2C1 0x50-0x53
// I2S buses
// I2S2_CK PB13
// I2S2_MCK PC6
// I2S2_SD PB15
// I2S2_WS PB12
// I2S3_CK PB3
// I2S3_MCK PC7
// I2S3_SD PB5
// I2S3_WS PA15
// SPI buses
#define MICROPY_HW_SPI1_NSS (pin_A4) // PA4
#define MICROPY_HW_SPI1_SCK (pin_A5) // PA5,PB3
#define MICROPY_HW_SPI1_MISO (pin_A6) // PA6,PB4
#define MICROPY_HW_SPI1_MOSI (pin_A7) // PA7,PB5
#define MICROPY_HW_SPI2_NSS (pin_B12) // PB12
#define MICROPY_HW_SPI2_SCK (pin_B13) // PB13
#define MICROPY_HW_SPI2_MISO (pin_B14) // PB14
#define MICROPY_HW_SPI2_MOSI (pin_B15) // PB15
#define MICROPY_HW_SPI3_NSS (pin_A15) // PA15
#define MICROPY_HW_SPI3_SCK (pin_B3) // PB3
#define MICROPY_HW_SPI3_MISO (pin_B4) // PB4
#define MICROPY_HW_SPI3_MOSI (pin_B5) // PB5
// CAN buses
#define MICROPY_HW_CAN1_TX (pin_B9) // PB9,PD1,PA12
#define MICROPY_HW_CAN1_RX (pin_B8) // PB8,PD0,PA11
#define MICROPY_HW_CAN2_TX (pin_B13) // PB13
#define MICROPY_HW_CAN2_RX (pin_B12) // PB12
// DAC
// DAC_OUT1 PA4
// DAC_OUT2 PA5
// LEDs
#define MICROPY_HW_LED1 (pin_B9) // blue
#define MICROPY_HW_LED_ON(pin) (mp_hal_pin_low(pin))
#define MICROPY_HW_LED_OFF(pin) (mp_hal_pin_high(pin))
// If using external SPI flash
#if !MICROPY_HW_ENABLE_INTERNAL_FLASH_STORAGE
// The board does not have onboard SPI flash. You need to add an external one.
#define MICROPY_HW_SPIFLASH_SIZE_BITS (4 * 1024 * 1024) // W25X40 - 4 Mbit (512 KByte)
// #define MICROPY_HW_SPIFLASH_SIZE_BITS (32 * 1024 * 1024) // W25Q32 - 32 Mbit (4 MByte)
// #define MICROPY_HW_SPIFLASH_SIZE_BITS (64 * 1024 * 1024) // W25Q64 - 64 Mbit (8 MByte)
// #define MICROPY_HW_SPIFLASH_SIZE_BITS (128 * 1024 * 1024) // W25Q128 - 128 Mbit (16 MByte)
#define MICROPY_HW_SPIFLASH_CS (pin_A4) // also in board_init.c
#define MICROPY_HW_SPIFLASH_SCK (pin_A5)
#define MICROPY_HW_SPIFLASH_MISO (pin_A6)
#define MICROPY_HW_SPIFLASH_MOSI (pin_A7)
#define MICROPY_BOARD_EARLY_INIT VCC_GND_F407VE_board_early_init
void VCC_GND_F407VE_board_early_init(void);
extern const struct _mp_spiflash_config_t spiflash_config;
extern struct _spi_bdev_t spi_bdev;
#define MICROPY_HW_BDEV_IOCTL(op, arg) ( \
(op) == BDEV_IOCTL_NUM_BLOCKS ? (MICROPY_HW_SPIFLASH_SIZE_BITS / 8 / FLASH_BLOCK_SIZE) : \
(op) == BDEV_IOCTL_INIT ? spi_bdev_ioctl(&spi_bdev, (op), (uint32_t)&spiflash_config) : \
spi_bdev_ioctl(&spi_bdev, (op), (arg)) \
)
#define MICROPY_HW_BDEV_READBLOCKS(dest, bl, n) spi_bdev_readblocks(&spi_bdev, (dest), (bl), (n))
#define MICROPY_HW_BDEV_WRITEBLOCKS(src, bl, n) spi_bdev_writeblocks(&spi_bdev, (src), (bl), (n))
#endif
// SD card detect switch
#define MICROPY_HW_SDCARD_DETECT_PIN (pin_A8)
#define MICROPY_HW_SDCARD_DETECT_PULL (GPIO_PULLUP)
#define MICROPY_HW_SDCARD_DETECT_PRESENT (GPIO_PIN_RESET)
// 1 - PC10 - DAT2/RES
// 2 - PC11 - CD/DAT3/CS
// 3 - PD2 - CMD/DI
// 4 - VCC - VDD
// 5 - PC12 - CLK/SCLK
// 6 - GND - VSS
// 7 - PC8 - DAT0/D0
// 8 - PC9 - DAT1/RES
// 9 SW2 - GND
// 10 SW1 - PA8
// USB config
#define MICROPY_HW_USB_FS (1)
// #define MICROPY_HW_USB_VBUS_DETECT_PIN (pin_A9)
// #define MICROPY_HW_USB_OTG_ID_PIN (pin_A10)
| henriknelson/micropython | ports/stm32/boards/VCC_GND_F407VE/mpconfigboard.h | C | mit | 5,951 |
//
// gd-proto
// Copyright (c) 2015 Borislav Stanimirov
//
// Distributed under the MIT Software License
// See accompanying file LICENSE.txt or copy at
// http://opensource.org/licenses/MIT
//
// Main profiling macros
#pragma once
#define GDPROTO_PERF_PROFILING_ON 1
#if GDPROTO_PERF_PROFILING_ON
#include "PerfProfilerSection.h"
// profiles a function
// use this macro at the beginning of a function
# define GDPROTO_PROFILE_FUNC() ::gdproto::PerfProfilerSection __gdprotoProfilerSection(__FUNCTION__)
# define GDPROTO_PROFILE_FUNC_FOR(ProfilerId) ::gdproto::PerfProfilerSection __gdprotoProfilerSection(__FUNCTION__, ProfilerId)
// profiles a scope with a label
# define GDPROTO_PROFILE_SCOPE(Label) ::gdproto::PerfProfilerSection __gdprotoProfilerSection ## __LINE__(Label)
# define GDPROTO_PROFILE_SCOPE_FOR(Label, ProfilerId) ::gdproto::PerfProfilerSection __gdprotoProfilerSection ## __LINE__(Label, ProfilerId)
#else
#
#endif | iboB/gd-proto-profiler | include/gdproto/profiling/Profile.h | C | mit | 948 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>qarith-stern-brocot: 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.0 / qarith-stern-brocot - 8.14.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.14.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-08 11:23:12 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-08 11:23:12 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.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.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 in Coq"
description: """
Development of rational numbers in Coq 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.14" & < "8.15~"}
]
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:2021-10-30"
]
authors: [
"Milad Niqui"
"Yves Bertot"
]
url {
src: "https://github.com/coq-community/qarith-stern-brocot/archive/v8.14.0.tar.gz"
checksum: "sha512=bc553ba930da80608c87c968016b7b8733a806aa65c510cc9834aca4933710ac21173d3691837bf09c3aba34849f320442086bf05081e22121fef97b084611b4"
}
</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.14.0 coq.8.11.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.11.0).
The following dependencies couldn't be met:
- coq-qarith-stern-brocot -> coq >= 8.14
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-qarith-stern-brocot.8.14.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>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.08.1-2.0.5/released/8.11.0/qarith-stern-brocot/8.14.0.html | HTML | mit | 7,126 |
Kublai API
==========
## Callbacks
All callbacks in Kublai are called with an error and a response and have the form of:
```
function(error, response) {
if (error) {
// do something with error
return
}
// do something with response
}
```
Whenever a response is returned it will match the same response as that of the operation in [Khan's API](http://khan-api.readthedocs.io/en/latest/API.html).
If additional details are added to the response, those will be detailed in the specific method's docs.
## Errors
For error reasons and payloads, please refer to [Khan's API](http://khan-api.readthedocs.io/en/latest/API.html) docs.
All messages received from Khan are wrapped into a KhanError object with the following fields
* message: `Could not process request: ${reason}. Operation: ${operation}.`
* reason and operation are the fields received from Khan
* khan: Always true to help you identify khan errors
* meta: possible metadata related to the error (e.g. the error object that originated the khan error)
## Healthcheck Methods
### Healthcheck
Calls [Khan's Healthcheck Route](http://khan-api.readthedocs.io/en/latest/API.html#healthcheck).
#### Signature
```
kublaiService.healthcheck(callback);
```
## Game Methods
### Create Game
Creates a new game with the given parameters, using [Khan's Create Game Route](http://khan-api.readthedocs.io/en/latest/API.html#create-game).
#### Signature
```
kublaiService.createGame(
publicId,
name,
metadata,
membershipLevels,
minLevelToAcceptApplication,
minLevelToCreateInvitation,
minLevelToRemoveMember,
minLevelOffsetToRemoveMember,
minLevelOffsetToPromoteMember,
minLevelOffsetToDemoteMember,
maxMembers,
maxClansPerPlayer,
cooldownAfterDelete,
cooldownAfterDeny,
options, // optional
callback
);
```
#### Arguments
* `publicId`: game's public id;
* `name`: name for this game;
* `metadata`: any meta-data that needs to be stored for this game;
* `membershipLevels`: object with the available membership levels for this game (refer to khan Docs for more details);
* `minLevelToAcceptApplication`: a member cannot accept a player’s application to join the clan unless their level is greater or equal to this parameter;
* `minLevelToCreateInvitation`: a member cannot invite a player to join the clan unless their level is greater or equal to this parameter;
* `minLevelToRemoveMember`: minimum membership level required to remove another member from the clan;
* `minLevelOffsetToRemoveMember`: a member cannot remove another member unless their level is at least `minLevelOffsetToRemoveMember` levels greater than the level of the member they wish to promote;
* `minLevelOffsetToPromoteMember`: a member cannot promote another member unless their level is at least `minLevelOffsetToPromoteMember` levels greater than the level of the member they wish to promote;
* `minLevelOffsetToDemoteMember`: a member cannot demote another member unless their level is at least `minLevelOffsetToDemoteMember` levels greater than the level of the member they wish to demote;
* `maxMembers`: maximum number of members a clan of this game can have;
* `maxClansPerPlayer`: maximum numbers of clans a player can be an approved member of.
* `cooldownAfterDelete`: a membership cannot be recreated after being deleted unless cooldown seconds have passed.
* `cooldownAfterDeny`: a membership cannot be recreated after being denied unless cooldown seconds have passed.
* `options`: optional object. Properties:
* `maxPendingInvites`: a member cannot be invited if they have more than maxPendingInvites. Default value is -1 (unlimited).
* `cooldownBeforeInvite`: a member cannot be invited to the clan after a previous application/invite unless cooldown seconds have passed. Default value is 0.
* `cooldownBeforeApply`: a member cannot apply to the clan after a previous application/invite unless cooldown seconds have passed. Default value is 3600.
### Update Game
Updates a game. If the game does not exist it gets created with the given parameters. This operation uses [Khan's Update Game Route](http://khan-api.readthedocs.io/en/latest/API.html#update-game).
#### Signature
```
kublaiService.updateGame(
publicId,
name,
metadata,
membershipLevels,
minLevelToAcceptApplication,
minLevelToCreateInvitation,
minLevelToRemoveMember,
minLevelOffsetToRemoveMember,
minLevelOffsetToPromoteMember,
minLevelOffsetToDemoteMember,
maxMembers,
maxClansPerPlayer,
cooldownAfterDelete,
cooldownAfterDeny,
options, // optional
callback
)
```
#### Arguments
* `publicId`: game's public id;
* `name`: name for this game;
* `metadata`: any metadata that needs to be stored for this game;
* `membershipLevels`: object with the available membership levels for this game (refer to khan Docs for more details);
* `minLevelToAcceptApplication`: a member cannot accept a player’s application to join the clan unless their level is greater or equal to this parameter;
* `minLevelToCreateInvitation`: a member cannot invite a player to join the clan unless their level is greater or equal to this parameter;
* `minLevelToRemoveMember`: minimum membership level required to remove another member from the clan;
* `minLevelOffsetToRemoveMember`: a member cannot remove another member unless their level is at least `minLevelOffsetToRemoveMember` levels greater than the level of the member they wish to promote;
* `minLevelOffsetToPromoteMember`: a member cannot promote another member unless their level is at least `minLevelOffsetToPromoteMember` levels greater than the level of the member they wish to promote;
* `minLevelOffsetToDemoteMember`: a member cannot demote another member unless their level is at least `minLevelOffsetToDemoteMember` levels greater than the level of the member they wish to demote;
* `maxMembers`: maximum number of members a clan of this game can have;
* `maxClansPerPlayer`: maximum numbers of clans a player can be an approved member of.
* `cooldownAfterDelete`: a membership cannot be recreated after being deleted unless cooldown seconds have passed.
* `cooldownAfterDeny`: a membership cannot be recreated after being denied unless cooldown seconds have passed.
* `options`: optional object. Properties:
* `maxPendingInvites`: a member cannot be invited if they have more than maxPendingInvites. Default value is -1 (unlimited).
* `cooldownBeforeInvite`: a member cannot be invited to the clan after a previous application/invite unless cooldown seconds have passed. Default value is 0.
* `cooldownBeforeApply`: a member cannot apply to the clan after a previous application/invite unless cooldown seconds have passed. Default value is 3600.
## Player Methods
### Create Player
Creates a new player in a specific game. This operation uses [Khan's Create Player Route](http://khan-api.readthedocs.io/en/latest/API.html#create-player).
#### Warning
This operation is not idempotent. If you want to create or update a player, please use the Update Player operation described below. If you try to create a player for which the public ID already exists in the specified game, you will get an error.
#### Signature
```
kublaiService.createPlayer(gameId, publicId, name, metadata, callback);
```
#### Arguments
* `gameId`: public ID for the player's game;
* `publicId`: public ID for the player;
* `name`: player's name;
* `metadata`: any player meta-data the game wants to store.
### Update Player
Updates a player in a specific game. If the player does not exist, the player gets created. This operation uses [Khan's Update Player Route](http://khan-api.readthedocs.io/en/latest/API.html#update-player).
#### Signature
```
kublaiService.updatePlayer(gameId, publicId, name, metadata, callback);
```
#### Arguments
* `gameId`: public ID for the player's game;
* `publicId`: public ID for the player;
* `name`: player's name;
* `metadata`: any player meta-data the game wants to store.
### Get Player
Gets details about a player in a specific game. This operation uses [Khan's Retrieve Player Route](http://khan-api.readthedocs.io/en/latest/API.html#retrieve-player).
#### Signature
```
kublaiService.getPlayer(gameId, playerId, callback);
```
#### Arguments
* `gameId`: public ID for the player's game.
* `playerId`: public ID for the player.
## Clan Routes
### Create Clan
Creates a new clan. This operation uses [Khan's Create Clan Route](http://khan-api.readthedocs.io/en/latest/API.html#create-clan).
#### Signature
```
kublaiService.createClan(
gameId,
publicId,
name,
metadata,
ownerPublicId,
allowApplication,
autoJoin,
callback
);
```
#### Arguments
* `gameId`: public ID for the clan's game;
* `publicId`: public ID for the clan;
* `name`: clan's name;
* `metadata`: a JSON object representing any metadata required for the clan;
* `ownerPublicId`: clan's owner player public id;
* `allowApplication`: does this clan allow players to apply to it;
* `autoJoin`: do players that apply to this clan get automatically accepted;
### Update Clan
Updates a clan. This operation uses [Khan's Update Clan Route](http://khan-api.readthedocs.io/en/latest/API.html#update-clan).
#### Signature
```
kublaiService.updateClan(
gameId,
publicId,
name,
metadata,
ownerPublicId,
allowApplication,
autoJoin,
callback
);
```
#### Arguments
* `gameId`: public ID for the clan's game;
* `publicId`: public ID for the clan;
* `name`: clan's name;
* `metadata`: a JSON object representing any meta-data required for the clan;
* `ownerPublicId`: clan's owner player public id;
* `allowApplication`: does this clan allow players to apply to it;
* `autoJoin`: do players that apply to this clan get automatically accepted;
### Get Clan
Gets detailed information about a clan. This operation uses [Khan's Retrieve Clan Route](http://khan-api.readthedocs.io/en/latest/API.html#retrieve-clan).
#### Signature
```
kublaiService.getClan(gameId, clanId, callback);
```
#### Arguments
* `gameId`: public ID for the clan's game.
* `clanId`: public ID for the clan.
### Get Clan Summary
Gets summarized information about a clan. This operation uses [Khan's Clan Summary Route](http://khan-api.readthedocs.io/en/latest/API.html#clan-summary).
#### Signature
```
kublaiService.getClanSummary(gameId, clanId, callback);
```
#### Arguments
* `gameId`: public ID for the clan's game.
* `clanId`: public ID for the clan.
### List Clans Summary
Lists summarized information about the clans with the given IDs. This operation uses [Khan's Clans Summary Route](http://khan-api.readthedocs.io/en/latest/API.html#clans-summary).
#### Signature
```
kublaiService.listClansSummary(gameId, clanIds, callback);
```
#### Arguments
* `gameId`: public ID for the clan's game.
* `clanIds`: list of clans public IDs.
### List Clans
Gets a list of all clans in a game. This operation uses [Khan's List Clans Route](http://khan-api.readthedocs.io/en/latest/API.html#list-clans).
#### Warning
Depending on the number of clans in your game this can be a **VERY** expensive operation! Be wary of using this. A better way of getting clans is using clan search.
#### Signature
```
kublaiService.listClans(gameId, callback);
```
#### Arguments
* `gameId`: public ID for the clan's game.
### Search Clans
Searches a clan by a specific term. This operation uses [Khan's Search Clans Route](http://khan-api.readthedocs.io/en/latest/API.html#search-clans).
#### Signature
```
kublaiService.searchClans(gameId, term, callback);
```
#### Arguments
* `gameId`: public ID for the clan's game.
* `term`: partial term to search for public ID or name.
### Leave Clan
This operation should be used when the clan's owner decides to leave the clan. If there are no clan members left, the clan will be deleted. This operation uses [Khan's Leave Clan Route](http://khan-api.readthedocs.io/en/latest/API.html#leave-clan).
#### Signature
```
kublaiService.leaveClan(gameId, clanId, callback);
```
#### Arguments
* `gameId`: public ID for the clan's game;
* `clanId`: public ID for the clan.
### Transfer Clan Ownership
Allows the owner to transfer the clan’s ownership to another clan member of their choice. The previous owner will then be a member with the maximum level allowed for the clan. This operation uses [Khan's Transfer Clan Ownership Route](http://khan-api.readthedocs.io/en/latest/API.html#transfer-clan-ownership).
#### Signature
```
kublaiService.transferClanOwnership(gameId, clanId, playerPublicId, callback);
```
#### Arguments
* `gameId`: public ID for the clan's game;
* `clanId`: public ID for the clan;
* `playerPublicId`: public ID for the player to be the new owner of the clan.
## Membership Routes
### Apply for Membership
Allows a player to ask to join the clan with the given `publicID`. If the clan’s `autoJoin` property is true the member will be automatically approved. Otherwise, the membership must be approved by the clan owner or one of the clan members.
This operation uses [Khan's Apply For Membership Route](http://khan-api.readthedocs.io/en/latest/API.html#apply-for-membership).
#### Signature
```
kublaiService.applyForMembership(gameId, clanId, level, playerPublicId, message, callback);
```
#### Arguments
* `gameId`: public ID for the desired clan's game;
* `clanId`: public ID for the desired clan;
* `level`: membership level for the application;
* `playerPublicId`: public id for the player filing the application for the clan;
* `message`: message sent by the player when applying for the membership (**optional**);
### Approve or Deny Membership
Allows the clan owner or a clan member to approve or deny a player’s application to join the clan. The member’s membership level must be at least the game’s `minLevelToAcceptApplication`.
This operation uses [Khan's Approve Or Deny Membership Route](http://khan-api.readthedocs.io/en/latest/API.html#approve-or-deny-membership-application).
#### Signature
```
kublaiService.approveDenyMembershipApplication(
gameId, clanId, action, playerPublicId, requestorPublicID, callback
);
```
#### Arguments
* `gameId`: public ID for the desired clan's game;
* `clanId`: public ID for the desired clan;
* `action`: action to be executed. Can be either `approve` or `deny`;
* `playerPublicId`: public id for the player that must be approved or denied;
* `requestorPublicId`: the public id of the clan member who will approve or deny the application.
### Invite for Membership
Allows the clan owner or a clan member to invite a player to join the clan with the given `publicID`. If the request is made by a member of the clan, their membership level must be at least the game’s `minLevelToCreateInvitation`. The membership must be approved by the player being invited.
This operation uses [Khan's Invite for Membership Route](http://khan-api.readthedocs.io/en/latest/API.html#invite-for-membership).
#### Signature
```
kublaiService.inviteForMembership(
gameId, clanId, level, playerPublicId, requestorPublicId, callback
);
```
#### Arguments
* `gameId`: public ID for the desired clan's game;
* `clanId`: public ID for the desired clan;
* `level`: membership level for the application;
* `playerPublicId`: public id for the player that is being invited;
* `requestorPublicId`: the public id of the clan member who is inviting the player.
* `message`: message sent by the player when inviting for the membership (**optional**);
### Approve or Deny Membership Invitation
Allows a player member to approve or deny a player’s invitation to join a given clan.
This operation uses [Khan's Approve or Deny Membership Invitation Route](http://khan-api.readthedocs.io/en/latest/API.html#approve-or-deny-membership-invitation).
#### Signature
```
kublaiService.approveDenyMembershipInvitation(
gameId, clanId, action, playerPublicId, callback
);
```
#### Arguments
* `gameId`: public ID for the desired clan's game;
* `clanId`: public ID for the desired clan;
* `action`: action to be executed. Can be either `approve` or `deny`;
* `playerPublicId`: public id for the player that is accepting the invitation.
### Promote or Demote Member
Allows the clan owner or a clan member to promote or demote another member. When promoting, the member’s membership level will be increased by one, when demoting it will be decreased by one. The member’s membership level must be at least `minLevelOffsetToPromoteMember` or `minLevelOffsetToDemoteMember` levels greater than the level of the player being promoted or demoted.
This operation uses [Khan's Promote or Demote Member Route](http://khan-api.readthedocs.io/en/latest/API.html#promote-or-demote-member).
#### Signature
```
kublaiService.promoteDemoteMember(
gameId, clanId, action, playerPublicId, requestorPublicId, callback
);
```
#### Arguments
* `gameId`: public ID for the desired clan's game;
* `clanId`: public ID for the desired clan;
* `action`: action to be executed. Can be either `promote` or `demote`;
* `playerPublicId`: public id for the player that is being promoted/demoted;
* `requestorPublicId`: the public id of the clan member who is promoting/demoting the player.
### Delete Membership
Allows the clan owner or a clan member to remove another member from the clan. The member’s membership level must be at least `minLevelToRemoveMember`. A member can leave the clan by sending the same `playerPublicID` and `requestorPublicID`.
This operation uses [Khan's Delete Membership Route](http://khan-api.readthedocs.io/en/latest/API.html#delete-membership).
#### Signature
```
kublaiService.deleteMembership(
gameId, clanId, playerPublicId, requestorPublicId, callback
);
```
#### Arguments
* `gameId`: public ID for the desired clan's game;
* `clanId`: public ID for the desired clan;
* `playerPublicId`: public id for the player that is leaving the clan;
* `requestorPublicId`: the public id of the clan member who is kicking the player.
## Hook Routes
### Create Hook
Creates a hook for the specified game for the given event. The hook URL will be called with the payload specified in [Khan's Docs](http://khan-api.readthedocs.io/en/latest/using_webhooks.html#event-types).
#### Signature
```
kublaiService.createHook(gameId, hookType, hookURL, callback);
```
#### Arguments
* `gameId`: public ID for the desired game;
* `hookType`: integer specifying the type of hook being created;
* `hookURL`: URL to be called when POSTing the payload for the event.
### Remove Hook By Public ID
Removes a hook for the specified game using its public ID.
#### Signature
```
kublaiService.removeHook(gameId, hookPublicId, callback);
```
#### Arguments
* `gameId`: public ID for the desired game;
* `hookPublicId`: Public ID for the Hook. This was returned when creating the Hook.
| topfreegames/kublai | docs/API.md | Markdown | mit | 18,835 |
# vim: fdm=indent
# author: Fabio Zanini
# date: 09/08/17
# content: Sparse table of gene counts
# Modules
import numpy as np
import pandas as pd
# Classes / functions
class CountsTableSparse(pd.SparseDataFrame):
'''Sparse table of gene expression counts
- Rows are features, e.g. genes.
- Columns are samples.
'''
_metadata = [
'name',
'_spikeins',
'_otherfeatures',
'_normalized',
'pseudocount',
'dataset',
]
_spikeins = ()
_otherfeatures = ()
_normalized = False
pseudocount = 0.1
dataset = None
@property
def _constructor(self):
return CountsTableSparse
@classmethod
def from_tablename(cls, tablename):
'''Instantiate a CountsTable from its name in the config file.
Args:
tablename (string): name of the counts table in the config file.
Returns:
CountsTable: the counts table.
'''
from ..config import config
from ..io import parse_counts_table_sparse
self = cls(parse_counts_table_sparse({'countsname': tablename}))
self.name = tablename
config_table = config['io']['count_tables'][tablename]
self._spikeins = config_table.get('spikeins', [])
self._otherfeatures = config_table.get('other', [])
self._normalized = config_table['normalized']
return self
@classmethod
def from_datasetname(cls, datasetname):
'''Instantiate a CountsTable from its name in the config file.
Args:
datasetename (string): name of the dataset in the config file.
Returns:
CountsTableSparse: the counts table.
'''
from ..config import config
from ..io import parse_counts_table_sparse
self = cls(parse_counts_table_sparse({'datasetname': datasetname}))
self.name = datasetname
config_table = config['io']['datasets'][datasetname]['counts_table']
self._spikeins = config_table.get('spikeins', [])
self._otherfeatures = config_table.get('other', [])
self._normalized = config_table['normalized']
return self
def to_npz(self, filename):
'''Save to numpy compressed file format'''
from .io.npz import to_counts_table_sparse
to_counts_table_sparse(self, filename)
def exclude_features(self, spikeins=True, other=True, inplace=False,
errors='raise'):
'''Get a slice that excludes secondary features.
Args:
spikeins (bool): Whether to exclude spike-ins
other (bool): Whether to exclude other features, e.g. unmapped reads
inplace (bool): Whether to drop those features in place.
errors (string): Whether to raise an exception if the features
to be excluded are already not present. Must be 'ignore'
or 'raise'.
Returns:
CountsTable: a slice of self without those features.
'''
drop = []
if spikeins:
drop.extend(self._spikeins)
if other:
drop.extend(self._otherfeatures)
out = self.drop(drop, axis=0, inplace=inplace, errors=errors)
if inplace and (self.dataset is not None):
self.dataset._featuresheet.drop(drop, inplace=True, errors=errors)
return out
def get_spikeins(self):
'''Get spike-in features
Returns:
CountsTable: a slice of self with only spike-ins.
'''
return self.loc[self._spikeins]
def get_other_features(self):
'''Get other features
Returns:
CountsTable: a slice of self with only other features (e.g.
unmapped).
'''
return self.loc[self._otherfeatures]
def log(self, base=10):
'''Take the pseudocounted log of the counts.
Args:
base (float): Base of the log transform
Returns:
A transformed CountsTableSparse with zeros at the zero-count items.
'''
from scipy.sparse import coo_matrix
coo = self.to_coo()
coobase = np.log(self.pseudocount) * coo_matrix((np.ones(coo.nnz), (coo.row, coo.col)), shape=coo.shape)
coolog = ((coo / self.pseudocount).log1p() + coobase) / np.log(base)
# NOTE: the entries that should be log(pseudocount) are zeros now
clog = CountsTableSparse(
coolog,
index=self.index,
columns=self.columns,
dtype=float,
default_fill_value=0)
return clog
def unlog(self, base=10):
'''Reverse the pseudocounted log of the counts.
Args:
base (float): Base of the log transform
Returns:
A transformed CountsTableSparse.
'''
from scipy.sparse import coo_matrix
coo = self.to_coo()
coobase = np.log(self.pseudocount) * coo_matrix((np.ones(coo.nnz), (coo.row, coo.col)), shape=coo.shape)
cooexp = (coo * np.log(base) - coobase).expm1() * self.pseudocount
cexp = CountsTableSparse(
cooexp,
index=self.index,
columns=self.columns,
dtype=float,
default_fill_value=0)
return cexp
def normalize(
self,
method='counts_per_million',
include_spikeins=False,
**kwargs):
'''Normalize counts and return new CountsTable.
Args:
method (string or function): The method to use for normalization.
One of 'counts_per_million', 'counts_per_thousand_spikeins',
'counts_per_thousand_features'm 'counts_per_million_column'.
If this argument is a function, its signature depends on the
inplace argument. It must take the CountsTable as input and
return the normalized one as output. You can end your function
by self[:] = <normalized counts>.
include_spikeins (bool): Whether to include spike-ins in the
normalization and result.
inplace (bool): Whether to modify the CountsTable in place or
return a new one.
Returns:
A new, normalized CountsTableSparse.
NOTE: if method == 'counts_per_million_column', you have to use an
additional keyword argument called 'column' that specifies the column
of the samplesheet containing the normalization baseline. For instance,
if your samplesheet has a column called 'total_counts' that you want to
use for normalization, call:
CountsTableSparse.normalize(
method='counts_per_million_column',
column='total_counts')
This requires the count table to be linked to a Dataset.
'''
import copy
if method == 'counts_per_million':
counts = self.exclude_features(spikeins=(not include_spikeins), other=True)
norm = counts.sum(axis=0)
counts_norm = 1e6 * counts / norm
elif method == 'counts_per_thousand_spikeins':
counts = self.exclude_features(spikeins=(not include_spikeins), other=True)
norm = self.get_spikeins().sum(axis=0)
counts_norm = 1e3 * counts / norm
elif method == 'counts_per_thousand_features':
if 'features' not in kwargs:
raise ValueError('Set features=<list of normalization features>')
counts = self.exclude_features(spikeins=(not include_spikeins), other=True)
norm = self.loc[kwargs['features']].sum(axis=0)
counts_norm = 1e3 * counts / norm
elif method == 'counts_per_million_column':
if 'column' not in kwargs:
raise ValueError('Specify a samplesheet column with column=<mycolumn>')
counts = self.exclude_features(spikeins=(not include_spikeins), other=True)
norm = self.dataset[kwargs['column']].values
counts_norm = 1e6 * counts / norm
elif callable(method):
counts_norm = method(self)
method = 'custom'
else:
raise ValueError('Method not understood')
# Shallow copy of metadata
for prop in self._metadata:
# dataset if special, to avoid infinite loops
if prop == 'dataset':
counts_norm.dataset = None
else:
setattr(counts_norm, prop, copy.copy(getattr(self, prop)))
counts_norm._normalized = method
return counts_norm
def get_statistics(self, axis='features', metrics=('mean', 'cv')):
'''Get statistics of the counts.
Args:
axis (str): 'features' or 'samples'
metrics (sequence of strings): any of 'mean', 'var', 'std', 'cv',
'fano', 'min', 'max'.
Returns:
pandas.DataFrame with features as rows and metrics as columns.
'''
if axis == 'features':
axn = 1
elif axis == 'samples':
axn = 0
else:
raise ValueError('axis must be features or samples')
st = {}
if 'mean' in metrics or 'cv' in metrics or 'fano' in metrics:
st['mean'] = self.mean(axis=axn)
if ('std' in metrics or 'cv' in metrics or 'fano' in metrics or
'var' in metrics):
st['std'] = self.std(axis=axn)
if 'var' in metrics:
st['var'] = st['std'] ** 2
if 'cv' in metrics:
st['cv'] = st['std'] / np.maximum(st['mean'], 1e-10)
if 'fano' in metrics:
st['fano'] = st['std'] ** 2 / np.maximum(st['mean'], 1e-10)
if 'min' in metrics:
st['min'] = self.min(axis=axn)
if 'max' in metrics:
st['max'] = self.max(axis=axn)
df = pd.concat([st[m] for m in metrics], axis=1)
df.columns = pd.Index(list(metrics), name='metrics')
return df
| iosonofabio/singlet | singlet/counts_table/counts_table_sparse.py | Python | mit | 10,070 |
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=3">
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="lib/tympanus/component.css">
<title></title>
</head>
<body>
<div class="container interactive-points">
<section class="interactive-points" id="interactive-1" tabindex="0">
<img class="static" src="lib/tympanus/map.png" alt="Map of London" />
<div class="backgrounds">
<div class="background__element" style="background-image: url(lib/tympanus/1.jpg)"></div>
<div class="background__element" style="background-image: url(lib/tympanus/2.jpg)"></div>
<div class="background__element" style="background-image: url(lib/tympanus/3.jpg)"></div>
<div class="background__element" style="background-image: url(lib/tympanus/4.jpg)"></div>
<div class="background__element" style="background-image: url(lib/tympanus/5.jpg)"></div>
<div class="background__element" style="background-image: url(lib/tympanus/6.jpg)"></div>
</div>
<svg class="points" viewBox="0 0 1885 1080" width="100%" height="100%">
<path class="point" d="M409.2,195.4L409.2,195.4c-7.1-7.1-18.6-7.1-25.7,0l0,0c-6.4,6.4-7.1,18.4-1.7,25.7l14.5,21l14.5-21C416.3,213.8,415.6,201.8,409.2,195.4z"/>
<path class="point" d="M1069.3,589.7L1069.3,589.7c-7.1-7.1-18.6-7.1-25.7,0l0,0c-6.4,6.4-7.1,18.4-1.7,25.7l14.5,21l14.5-21C1076.4,608.2,1075.7,596.1,1069.3,589.7z"/>
<path class="point" d="M1533.8,114.2L1533.8,114.2c-7.1-7.1-18.6-7.1-25.7,0l0,0c-6.4,6.4-7.1,18.4-1.7,25.7l14.5,21l14.5-21C1541,132.6,1540.2,120.6,1533.8,114.2z"/>
<path class="point" d="M878.9,247.4L878.9,247.4c-7.1-7.1-18.6-7.1-25.7,0l0,0c-6.4,6.4-7.1,18.4-1.7,25.7l14.5,21l14.5-21C886,265.8,885.3,253.8,878.9,247.4z"/>
<path class="point" d="M615.2,658.3L615.2,658.3c-7.1-7.1-18.6-7.1-25.7,0l0,0c-6.4,6.4-7.1,18.4-1.7,25.7l14.5,21l14.5-21C622.3,676.8,621.6,664.7,615.2,658.3z"/>
<path class="point" d="M183.5,524L183.5,524c-7.1-7.1-18.6-7.1-25.7,0l0,0c-6.4,6.4-7.1,18.4-1.7,25.7l14.5,21l14.5-21C190.6,542.5,189.9,530.4,183.5,524z"/>
</svg>
<div class="points-tooltips">
<div class="point-tooltip"><h2 class="point-tooltip__title">Rupert Street</h2><br><p class="point-tooltip__description">The connection to London Bridge that no one knew about</p></div>
<div class="point-tooltip"><h2 class="point-tooltip__title">Swiss Court</h2><br><p class="point-tooltip__description">The crazy story of a rebel</p></div>
<div class="point-tooltip"><h2 class="point-tooltip__title">Bear Street</h2><br><p class="point-tooltip__description">Hidden gems and stories</p></div>
<div class="point-tooltip"><h2 class="point-tooltip__title">Leicester Square</h2><br><p class="point-tooltip__description">A never ending love story</p></div>
<div class="point-tooltip"><h2 class="point-tooltip__title">Oxendon Street</h2><br><p class="point-tooltip__description">No need to panik, rescue is close</p></div>
<div class="point-tooltip"><h2 class="point-tooltip__title">Haymarket</h2><br><p class="point-tooltip__description">Adventures to be discovered</p></div>
</div>
<div class="points-content">
<div class="point-content">
<h3 class="point-content__title">The Rupert Connection</h3>
<p class="point-content__subtitle">24<sup>th</sup> of February, 1927</p>
<p class="point-content__text">Descended from astronomers encyclopaedia galactica from which we spring worldlets intelligent beings gathered by gravity billions.</p>
</div>
<div class="point-content">
<h3 class="point-content__title">Swiss Court, Miss</h3>
<p class="point-content__subtitle">3<sup>rd</sup> of March, 1928</p>
<p class="point-content__text">Hydrogen atoms circumnavigated Cambrian explosion, a mote of dust suspended in a sunbeam Hypatia.</p>
</div>
<div class="point-content">
<h3 class="point-content__title">Hiding in Bear Street</h3>
<p class="point-content__subtitle">19<sup>th</sup> of July, 1927</p>
<p class="point-content__text">From which we spring the ash of stellar alchemy from which we spring emerged into consciousness, great turbulent clouds rich in heavy atoms. </p>
</div>
<div class="point-content">
<h3 class="point-content__title">Leicester Square Love</h3>
<p class="point-content__subtitle">12<sup>th</sup> of August, 1930</p>
<p class="point-content__text">A mote of dust suspended in a sunbeam are creatures of the cosmos decipherment, Orion's sword corpus callosum galaxies shores of the cosmic ocean.</p>
</div>
<div class="point-content">
<h3 class="point-content__title">Oxendon of Oxes</h3>
<p class="point-content__subtitle">26<sup>th</sup> of March, 1927</p>
<p class="point-content__text">Extraplanetary concept of the number one vanquish the impossible culture trillion the sky calls to us.</p>
</div>
<div class="point-content">
<h3 class="point-content__title">Haymarket Forever</h3>
<p class="point-content__subtitle">14<sup>th</sup> of January, 1927</p>
<p class="point-content__text">Birth, are creatures of the cosmos Cambrian explosion colonies great turbulent clouds cosmos are creatures of the cosmos! Great turbulent clouds.</p>
</div>
</div>
</section>
</div>
<!-- scripts -->
<script src="lib/tympanus/lunar.js"></script>
<script src="lib/tympanus/imagesloaded.pkgd.min.js"></script>
<script src="lib/tympanus/main.js"></script>
<script>
(function() {
new PointsMap(document.querySelector('#interactive-1'), {
maxOpacityOnActive : 1,
activeOn : 90
});
})();
</script>
</body>
</html> | peace0kumi/portfolio | 00 animation/app/contents/background/ui/interactive-points-hover.html | HTML | mit | 6,235 |
/*
-----------------------------------------------------------------------------
This source file is part of fastbird engine
For the latest info, see http://www.jungwan.net/
Copyright (c) 2013-2015 Jungwan Byun
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-----------------------------------------------------------------------------
*/
#include "stdafx.h"
#include "RendererEnums.h"
#include "FBStringLib/StringLib.h"
namespace fb
{
SHADER_TYPE BindingShaderFromString(const char* szShader)
{
if (!szShader)
return SHADER_TYPE_PS;
if (_stricmp(szShader, "vs") == 0)
{
return SHADER_TYPE_VS;
}
if (_stricmp(szShader, "ps") == 0)
{
return SHADER_TYPE_PS;
}
if (_stricmp(szShader, "ds") == 0)
{
return SHADER_TYPE_DS;
}
if (_stricmp(szShader, "hs") == 0)
{
return SHADER_TYPE_HS;
}
if (_stricmp(szShader, "gs") == 0)
{
return SHADER_TYPE_GS;
}
if (_stricmp(szShader, "cs") == 0)
{
return SHADER_TYPE_CS;
}
Logger::Log(FB_ERROR_LOG_ARG, FormatString("%s is not valid SHADER_TYPE", szShader).c_str());
return SHADER_TYPE_PS;
}
FILL_MODE FillModeFromString(const char* str)
{
if (!str)
return FILL_MODE_SOLID;
if (_stricmp(str, "FILL_MODE_WIREFRAME") == 0)
{
return FILL_MODE_WIREFRAME;
}
if (_stricmp(str, "FILL_MODE_SOLID") == 0)
{
return FILL_MODE_SOLID;
}
Logger::Log(FB_ERROR_LOG_ARG, FormatString("%s is not vaild FILL_MODE", str).c_str());
return FILL_MODE_SOLID;
}
CULL_MODE CullModeFromString(const char* str)
{
if (!str)
return CULL_MODE_BACK;
if (_stricmp(str, "CULL_MODE_NONE") == 0)
{
return CULL_MODE_NONE;
}
if (_stricmp(str, "CULL_MODE_FRONT") == 0)
{
return CULL_MODE_FRONT;
}
if (_stricmp(str, "CULL_MODE_BACK") == 0)
{
return CULL_MODE_BACK;
}
Logger::Log(FB_ERROR_LOG_ARG, FormatString("%s is not vaild CULL_MODE", str).c_str());
return CULL_MODE_BACK;
}
int TextureTypeFromString(const char* str)
{
if (!str)
return TEXTURE_TYPE_DEFAULT;
if (_stricmp(str, "ColorRamp") == 0)
return TEXTURE_TYPE_COLOR_RAMP;
if (_stricmp(str, "Default") == 0)
return TEXTURE_TYPE_DEFAULT;
if (_stricmp(str, "RenderTarget") == 0)
return TEXTURE_TYPE_RENDER_TARGET;
if (_stricmp(str, "DepthStencil") == 0)
return TEXTURE_TYPE_DEPTH_STENCIL;
if (_stricmp(str, "1D") == 0) {
return TEXTURE_TYPE_DEFAULT | TEXTURE_TYPE_1D;
}
Logger::Log(FB_ERROR_LOG_ARG, FormatString("%s is not vaild TEXTURE_TYPE", str).c_str());
return TEXTURE_TYPE_DEFAULT;
}
TEXTURE_FILTER FilterFromString(const char* sz)
{
if (!sz)
return TEXTURE_FILTER_MIN_MAG_MIP_LINEAR;
if (_stricmp(sz, "MIN_MAG_MIP_POINT") == 0)
return TEXTURE_FILTER_MIN_MAG_MIP_POINT;
if (_stricmp(sz, "MIN_MAG_POINT_MIP_LINEAR") == 0)
return TEXTURE_FILTER_MIN_MAG_POINT_MIP_LINEAR;
if (_stricmp(sz, "MIN_POINT_MAG_LINEAR_MIP_POINT") == 0)
return TEXTURE_FILTER_MIN_POINT_MAG_LINEAR_MIP_POINT;
if (_stricmp(sz, "MIN_POINT_MAG_MIP_LINEAR") == 0)
return TEXTURE_FILTER_MIN_POINT_MAG_MIP_LINEAR;
if (_stricmp(sz, "MIN_LINEAR_MAG_MIP_POINT") == 0)
return TEXTURE_FILTER_MIN_LINEAR_MAG_MIP_POINT;
if (_stricmp(sz, "MIN_LINEAR_MAG_POINT_MIP_LINEAR") == 0)
return TEXTURE_FILTER_MIN_LINEAR_MAG_POINT_MIP_LINEAR;
if (_stricmp(sz, "MIN_MAG_LINEAR_MIP_POINT") == 0)
return TEXTURE_FILTER_MIN_MAG_LINEAR_MIP_POINT;
if (_stricmp(sz, "MIN_MAG_MIP_LINEAR") == 0)
return TEXTURE_FILTER_MIN_MAG_MIP_LINEAR;
if (_stricmp(sz, "ANISOTROPIC") == 0)
return TEXTURE_FILTER_ANISOTROPIC;
if (_stricmp(sz, "COMPARISON_MIN_MAG_MIP_POINT") == 0)
return TEXTURE_FILTER_COMPARISON_MIN_MAG_MIP_POINT;
if (_stricmp(sz, "COMPARISON_MIN_MAG_POINT_MIP_LINEAR") == 0)
return TEXTURE_FILTER_COMPARISON_MIN_MAG_POINT_MIP_LINEAR;
if (_stricmp(sz, "COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT") == 0)
return TEXTURE_FILTER_COMPARISON_MIN_POINT_MAG_LINEAR_MIP_POINT;
if (_stricmp(sz, "COMPARISON_MIN_POINT_MAG_MIP_LINEAR") == 0)
return TEXTURE_FILTER_COMPARISON_MIN_POINT_MAG_MIP_LINEAR;
if (_stricmp(sz, "COMPARISON_MIN_LINEAR_MAG_MIP_POINT") == 0)
return TEXTURE_FILTER_COMPARISON_MIN_LINEAR_MAG_MIP_POINT;
if (_stricmp(sz, "COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR") == 0)
return TEXTURE_FILTER_COMPARISON_MIN_LINEAR_MAG_POINT_MIP_LINEAR;
if (_stricmp(sz, "COMPARISON_MIN_MAG_LINEAR_MIP_POINT") == 0)
return TEXTURE_FILTER_COMPARISON_MIN_MAG_LINEAR_MIP_POINT;
if (_stricmp(sz, "COMPARISON_MIN_MAG_MIP_LINEAR") == 0)
return TEXTURE_FILTER_COMPARISON_MIN_MAG_MIP_LINEAR;
if (_stricmp(sz, "COMPARISON_ANISOTROPIC") == 0)
return TEXTURE_FILTER_COMPARISON_ANISOTROPIC;
Logger::Log(FB_ERROR_LOG_ARG, FormatString("%s is not vaild TEXTURE_FILTER", sz).c_str());
return TEXTURE_FILTER_MIN_MAG_MIP_LINEAR;
}
TEXTURE_ADDRESS_MODE AddressModeFromString(const char* sz)
{
if (!sz)
return TEXTURE_ADDRESS_CLAMP;
if (_stricmp(sz, "Wrap") == 0)
return TEXTURE_ADDRESS_WRAP;
if (_stricmp(sz, "Mirror") == 0)
return TEXTURE_ADDRESS_MIRROR;
if (_stricmp(sz, "Clamp") == 0)
return TEXTURE_ADDRESS_CLAMP;
if (_stricmp(sz, "Border") == 0)
return TEXTURE_ADDRESS_BORDER;
if (_stricmp(sz, "Mirror_Once") == 0)
return TEXTURE_ADDRESS_MIRROR_ONCE;
Logger::Log(FB_ERROR_LOG_ARG, FormatString("%s is not valid TEXTURE_ADDRESS_MODE", sz).c_str());
return TEXTURE_ADDRESS_CLAMP;
}
COMPARISON_FUNC ComparisonFuncFromString(const char* str)
{
if (!str)
return COMPARISON_LESS;
for (int i = 1; i <= 8; ++i)
{
if (_stricmp(str, STR_COMPARISON_FUNC[i - 1]) == 0)
{
return COMPARISON_FUNC(i);
}
}
Logger::Log(FB_ERROR_LOG_ARG, FormatString("%s is not valid COMPARISON_FUNC", str).c_str());
return COMPARISON_LESS;
}
BLEND BlendFromString(const char* str)
{
if (!str)
return BLEND_ONE;
for (int i = 1; i <= 19; i++)
{
if (_stricmp(str, STR_BLEND[i - 1]) == 0)
{
return BLEND(i);
}
}
Logger::Log(FB_ERROR_LOG_ARG, FormatString("%s is not valid Blend.", str).c_str());
return BLEND_ONE;
}
BLEND_OP BlendOpFromString(const char* str)
{
if (!str)
return BLEND_OP_ADD;
for (int i = 1; i <= 5; i++)
{
if (_stricmp(str, STR_BLEND_OP[i - 1]) == 0)
{
return BLEND_OP(i);
}
}
Logger::Log(FB_ERROR_LOG_ARG, FormatString("%s is not valid BlendOp.", str).c_str());
return BLEND_OP_ADD;
}
COLOR_WRITE_MASK ColorWriteMaskFromString(const char* str)
{
if (!str)
return COLOR_WRITE_MASK_ALL;
if (_stricmp(str, "COLOR_WRITE_MASK_RED") == 0)
{
return COLOR_WRITE_MASK_RED;
}
if (_stricmp(str, "COLOR_WRITE_MASK_GREEN") == 0)
{
return COLOR_WRITE_MASK_GREEN;
}
if (_stricmp(str, "COLOR_WRITE_MASK_BLUE") == 0)
{
return COLOR_WRITE_MASK_BLUE;
}
if (_stricmp(str, "COLOR_WRITE_MASK_ALPHA") == 0)
{
return COLOR_WRITE_MASK_ALPHA;
}
if (_stricmp(str, "0") == 0)
return COLOR_WRITE_MASK_NONE;
Logger::Log(FB_ERROR_LOG_ARG, FormatString("%s is not valid COLOR_WRITE_MASK", str).c_str());
return COLOR_WRITE_MASK_ALL;
}
DEPTH_WRITE_MASK DepthWriteMaskFromString(const char* str)
{
if (!str)
return DEPTH_WRITE_MASK_ALL;
if (_stricmp(str, "DEPTH_WRITE_MASK_ZERO") == 0)
{
return DEPTH_WRITE_MASK_ZERO;
}
if (_stricmp(str, "DEPTH_WRITE_MASK_ALL") == 0)
{
return DEPTH_WRITE_MASK_ALL;
}
Logger::Log(FB_ERROR_LOG_ARG, FormatString("%s is not valid DepthWriteMask", str).c_str());
return DEPTH_WRITE_MASK_ALL;
}
STENCIL_OP StencilOpFromString(const char* str)
{
if (!str)
return STENCIL_OP_KEEP;
for (int i = 1; i <= 8; ++i)
{
if (_stricmp(str, STR_STENCIL_OP[i - 1]) == 0)
return STENCIL_OP(i);
}
Logger::Log(FB_ERROR_LOG_ARG, FormatString("%s is not valid StencilOp", str).c_str());
return STENCIL_OP_KEEP;
}
RENDER_PASS RenderPassFromString(const char* str)
{
if (!str)
return PASS_NORMAL;
if (_stricmp(str, "NORMAL") == 0)
return PASS_NORMAL;
if (_stricmp(str, "GODRAY_OCC_PRE") == 0)
return PASS_GODRAY_OCC_PRE;
if (_stricmp(str, "GLOW") == 0)
return PASS_GLOW;
if (_stricmp(str, "DEPTH") == 0)
return PASS_DEPTH;
if (_stricmp(str, "DEPTH_ONLY") == 0)
return PASS_DEPTH_ONLY;
if (_stricmp(str, "SHADOW") == 0)
return PASS_SHADOW;
Logger::Log(FB_ERROR_LOG_ARG, FormatString("%s is not valid RENDER_PASS", str).c_str());
return PASS_NORMAL;
}
} | fastbird/fastbirdEngine | FBRenderer/RendererEnums.cpp | C++ | mit | 9,369 |
<?php
namespace AppBundle\Repository;
use Doctrine\ORM\EntityRepository;
use Doctrine\ORM\Tools\Pagination\Paginator;
use Doctrine\ORM\Query\ResultSetMappingBuilder;
use AppBundle\Utils\DataStoreIterator;
/**
* ProductsRepository
*
* This class was generated by the Doctrine ORM. Add your own custom
* repository methods below.
*/
class ProductsRepository extends EntityRepository
{
protected $brandFilter;
public function findLatestForHome($term, $locale)
{
$qb = $this->createQueryBuilder('p');
$query =
$qb->select("p,
MATCH_AGAINST(p.name,p.description,p.categoryMerchant , :term 'IN BOOLEAN MODE')
as Relevance")
->where("MATCH_AGAINST (p.name,p.description,p.categoryMerchant, :term2 'IN BOOLEAN MODE') > 0.8")
->setParameter("term", $term)
->setParameter("term2", $term)
->setMaxResults(100)
->orderBy('Relevance')->getQuery();
$set = $query->getResult();
$data = array();
$it = new DataStoreIterator($data);
foreach($set as $s){
$s[0]->setRelevance($s['Relevance']);
$s[0]->setOffers($s[0]);
$it->setPriceFilter($s[0]->getPrice());
$it->setBrandFilter($this->defineBrandFilter($s[0]->getBrand()));
$it->append($s[0]);
}
return $it;
}
public function findRestLatestForHome($term, $locale= "fr")
{
$qb = $this->createQueryBuilder('p');
$query =
$qb->select("p,
MATCH_AGAINST(p.name,p.description,p.categoryMerchant , :term 'IN BOOLEAN MODE')")
->where("MATCH_AGAINST (p.name,p.description,p.categoryMerchant, :term2 'IN BOOLEAN MODE') > 0.8")
->setParameter("term", $term)
->setParameter("term2", $term)
->setMaxResults(100)
->getQuery()
->orderBy('Relevance')->getQuery();
$result = $query->getResult();
return $result;
}
public function findForCategory($term, $locale)
{
$qb = $this->createQueryBuilder('p');
$query =
$qb->select("p,
MATCH_AGAINST(p.name,p.description,p.categoryMerchant , :term 'IN BOOLEAN MODE')
as Relevance")
->where("MATCH_AGAINST (p.name,p.description,p.categoryMerchant, :term2 'IN BOOLEAN MODE') > 0.8")
->setParameter("term", $term)
->setParameter("term2", $term)
->setMaxResults(100)
->orderBy('Relevance')->getQuery();
$set = $query->getResult();
$data = array();
$it = new DataStoreIterator($data);
foreach($set as $s){
$s[0]->setRelevance($s['Relevance']);
$s[0]->setOffers($s[0]);
$it->setPriceFilter($s[0]->getPrice());
$it->setBrandFilter($this->defineBrandFilter($s[0]->getBrand()));
$it->append($s[0]);
}
return $it;
}
public function findRestForCategory($term, $locale= "fr")
{
$qb = $this->createQueryBuilder('p');
$query =
$qb->select("p,
MATCH_AGAINST(p.name,p.description,p.categoryMerchant , :term 'IN BOOLEAN MODE')")
->where("MATCH_AGAINST (p.name,p.description,p.categoryMerchant, :term2 'IN BOOLEAN MODE') > 0.8")
->setParameter("term", $term)
->setParameter("term2", $term)
->setMaxResults(100)
->getQuery();
$result = $query->getResult();
return $result;
}
public function defineBrandFilter($brand){
if($brand != "" && $brand != null){
if(isset( $this->brandFilter[strtolower($brand)])){
$this->brandFilter[strtolower($brand)]['weight'] =
$this->brandFilter[strtolower($brand)]['weight'] + 1;
$this->brandFilter[strtolower($brand)]['name'] = $brand;
} else {
$this->brandFilter[strtolower($brand)]['name'] = $brand;
$this->brandFilter[strtolower($brand)]['weight'] = 1;
}
}
return $this->brandFilter;
}
/**
* Get the paginated list of published articles
*
* @param int $page
* @param int $maxperpage
* @param string $sortby
* @return Paginator
*/
public function getPaginatedProductsToValidate($page=1, $maxperpage=10)
{
$q = $this->_em->createQueryBuilder()
->select('produits')
->from('AppBundle:Products','produits')
->where('produits.status = :status ')
->setParameter('status' , "Validation" )
;
$q->setFirstResult(($page-1) * $maxperpage)
->setMaxResults($maxperpage);
return new Paginator($q);
}
public function ZnxImportCsv(array $produit, $feedId)
{
$repoFeed = $this->_em->getRepository('AppBundle\Entity\FeedCSV');
$site = $repoFeed->find($feedId);
$sitename = $site->getSitename();
$image = "";
if ($produit['ImageLargeURL'] != "" && $produit['ImageLargeURL'] !== null) {
$image = $produit['ImageLargeURL'];
} else if ($produit['ImageMediumURL'] != "" && $produit['ImageMediumURL'] !== null){
$image = $produit['ImageMediumURL'];
} else if ($produit['ImageSmallURL'] != "" && $produit['ImageSmallURL'] !== null){
$image = $produit['ImageSmallURL'];
}
$sql = <<<SQL
INSERT IGNORE
INTO products
(
id,
name,
ean,
price,
currency,
site_id,
promo,
`status`,
brand,
image,
source_id,
program,
actif,
locale,
category_merchant,
softdeleted,
createdAt,
updateAt,
description,
url,
short_url,
source_type,
logostore
) VALUES (
NULL,
:name,
:ean,
:price,
:currency,
:site_id,
:promo,
:status,
:brand,
:image,
:source_id,
:program,
:actif,
:locale,
:category_merchant,
:softdeleted,
NOW(),
NOW(),
:description,
:url,
:short_url,
:source_type,
:logostore
);
SQL;
$stmt = $this->_em->getConnection()->prepare($sql);
$stmt->bindValue("name", $produit['ProductName']);
$stmt->bindValue("ean", $produit['ProductEAN']);
$stmt->bindValue("price", $produit['ProductPrice']);
$stmt->bindValue("currency", $produit['CurrencySymbolOfPrice']);
$stmt->bindValue("site_id", $feedId);
$stmt->bindValue("promo", $produit['ProductPrice']);
$stmt->bindValue("status", "Validation");
$stmt->bindValue("brand", $produit['ProductManufacturerBrand']);
$stmt->bindValue("image", $image);
$stmt->bindValue("source_id", 'znx');
$stmt->bindValue("program", $sitename);
$stmt->bindValue("actif", 'Y');
$stmt->bindValue("locale", 'fr');
$stmt->bindValue("category_merchant", $produit['MerchantProductCategoryPath']);
$stmt->bindValue("softdeleted", NULL);
$stmt->bindValue("description", $produit['ProductLongDescription']);
$stmt->bindValue("url", $produit['ZanoxProductLink']);
$stmt->bindValue("short_url", md5($produit['ZanoxProductLink']));
$stmt->bindValue("source_type", 'csv');
$stmt->bindValue("logostore", NULL);
$stmt->execute();
}
public function TddImportCsv(array $produit, $feedId)
{
$repoFeed = $this->_em->getRepository('AppBundle\Entity\FeedCSV');
$site = $repoFeed->find($feedId);
$sitename = $site->getSitename();
$sql = <<<SQL
INSERT IGNORE
INTO products
(
id,
name,
ean,
price,
currency,
site_id,
promo,
`status`,
brand,
image,
source_id,
program,
actif,
locale,
category_merchant,
softdeleted,
createdAt,
updateAt,
description,
url,
short_url,
source_type,
logostore
) VALUES (
NULL,
:name,
:ean
:price,
:currency,
:site_id,
:promo,
:status,
:brand,
:image,
:source_id,
:program,
:actif,
:locale,
:category_merchant,
:softdeleted,
NOW(),
NOW(),
:description,
:url,
:short_url,
:source_type,
:logostore
);
SQL;
$stmt = $this->_em->getConnection()->prepare($sql);
$stmt->bindValue("name", $produit['name']);
$stmt->bindValue("ean", $produit['ean']);
$stmt->bindValue("price", $produit['price']);
$stmt->bindValue("currency", $produit['currency']);
$stmt->bindValue("site_id", $feedId);
$stmt->bindValue("promo", $produit['price']);
$stmt->bindValue("status", "Validation");
$stmt->bindValue("brand", $produit['brand']);
$stmt->bindValue("image", $produit['imageUrl']);
$stmt->bindValue("source_id", 'tdd');
$stmt->bindValue("program", $sitename);
$stmt->bindValue("actif", 'Y');
$stmt->bindValue("locale", 'fr');
$stmt->bindValue("category_merchant", $produit['merchantCategoryName']);
$stmt->bindValue("softdeleted", NULL);
$stmt->bindValue("description", $produit['description']);
$stmt->bindValue("url", $produit['productUrl']);
$stmt->bindValue("short_url", md5($produit['productUrl']));
$stmt->bindValue("source_type", 'csv');
$stmt->bindValue("logostore", NULL);
$stmt->execute();
}
public function EffImportCsv(array $produit, $feedId)
{
$repoFeed = $this->_em->getRepository('AppBundle\Entity\FeedCSV');
$site = $repoFeed->find($feedId);
$sitename = $site->getSitename();
$sql = <<<SQL
INSERT IGNORE
INTO products
(
id,
name,
ean,
price,
currency,
site_id,
promo,
`status`,
brand,
image,
source_id,
program,
actif,
locale,
category_merchant,
softdeleted,
createdAt,
updateAt,
description,
url,
short_url,
source_type,
logostore
) VALUES (
NULL,
:name,
:ean
:price,
:currency,
:site_id,
:promo,
:status,
:brand,
:image,
:source_id,
:program,
:actif,
:locale,
:category_merchant,
:softdeleted,
NOW(),
NOW(),
:description,
:url,
:short_url,
:source_type,
:logostore
);
SQL;
$stmt = $this->_em->getConnection()->prepare($sql);
$stmt->bindValue("name", $produit['name']);
$stmt->bindValue("ean", $produit['ean']);
$stmt->bindValue("price", $produit['price']);
$stmt->bindValue("currency", 'EUR' );
$stmt->bindValue("site_id", $feedId);
$stmt->bindValue("promo", $produit['price']);
$stmt->bindValue("status", "Validation");
$stmt->bindValue("brand", $produit['brand']);
$stmt->bindValue("image", $produit['url_image']);
$stmt->bindValue("source_id", 'tdd');
$stmt->bindValue("program", $sitename);
$stmt->bindValue("actif", 'Y');
$stmt->bindValue("locale", 'fr');
$stmt->bindValue("category_merchant", $produit['merchant_store_name']
. ' ' . $produit['merchant_univers_name'] . ' ' . $produit['merchant_category_name'] );
$stmt->bindValue("softdeleted", NULL);
$stmt->bindValue("description", $produit['description']);
$stmt->bindValue("url", $produit['productUrl']);
$stmt->bindValue("short_url", md5($produit['url_product']));
$stmt->bindValue("source_type", 'csv');
$stmt->bindValue("logostore", NULL);
$stmt->execute();
}
}
| ornythorink/copapi | src/AppBundle/Repository/ProductsRepository.php | PHP | mit | 15,913 |
package com.javarush.test.level08.lesson11.home09;
import java.util.Date;
class Solution {
public static void main(String[] args) {
String s = "MAY 1 2013";
boolean a = isDateOdd(s);
}
@SuppressWarnings("deprecation")
private static boolean isDateOdd(String date) {
boolean bool;
Date date1 = new Date(date);
Date ms = new Date(date);
ms.setHours(0);
ms.setMinutes(0);
ms.setSeconds(0);
ms.setMonth(0);
ms.setDate(1);
long num = date1.getTime() - ms.getTime();
long dayMs = 24 * 60 * 60 * 1000;
int day = (int) (num / dayMs);
bool = day % 2 == 0;
return bool;
}
}
| ailyenko/JavaRush | src/com/javarush/test/level08/lesson11/home09/Solution.java | Java | mit | 638 |
using System;
using System.Runtime.CompilerServices;
namespace HybridModelBinding
{
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true, Inherited = false)]
public class HybridBindPropertyAttribute : Attribute
{
/// <param name="name">Provide alternate name within `valueProvider` to bind to this property.</param>
/// <param name="order">Provide explicit order of binding when matched with other usages of `HybridPropertyAttribute` on the same property.</param>
public HybridBindPropertyAttribute(
string valueProvider,
[CallerMemberName]string name = default(string),
[CallerLineNumber]int order = default(int))
: this(new[] { valueProvider }, name, order)
{ }
/// <param name="name">Provide alternate name within all `valueProviders` to bind to this property.</param>
/// <param name="order">Provide explicit order of binding when matched with other usages of `HybridPropertyAttribute` on the same property.</param>
public HybridBindPropertyAttribute(
string[] valueProviders,
[CallerMemberName]string name = default(string),
[CallerLineNumber]int order = default(int))
{
ValueProviders = valueProviders;
Name = name;
Order = order;
}
/// <param name="name">Provide alternate name within all `valueProviders` to bind to this property.</param>
/// <param name="order">Provide explicit order of binding when matched with other usages of `HybridPropertyAttribute` on the same property.</param>
protected HybridBindPropertyAttribute(
HybridModelBinder.BindStrategy strategy,
string[] valueProviders,
[CallerMemberName]string name = default(string),
[CallerLineNumber]int order = default(int))
: this(valueProviders, name, order)
{
Strategy = strategy ?? throw new ArgumentNullException(nameof(strategy));
}
public string Name { get; private set; }
public int? Order { get; private set; }
public HybridModelBinder.BindStrategy Strategy { get; private set; }
public string[] ValueProviders { get; private set; }
}
}
| billboga/hybrid-model-binding | src/HybridModelBinding/HybridBindPropertyAttribute.cs | C# | mit | 2,284 |
using System;
/*Problem 1. Leap year
Write a program that reads a year from the console and checks whether it is a leap one.
Use System.DateTime.*/
namespace _01.Leap_year
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Please enter a year");
int year = int.Parse(Console.ReadLine());
bool isLeapYear = DateTime.IsLeapYear(year);
if (isLeapYear)
{
Console.WriteLine("The year is leap");
}
else
{
Console.WriteLine("The year isn't leap");
}
}
}
}
| VelislavLeonov/Telerik-Akademy | Homework Using Classes and Objects/01. Leap year/Program.cs | C# | mit | 649 |
# MongoMethodStorable
MongoMethodStorage allows you to store the output of methods in a Mongoid::Document class into MongoDB dynamic fields. It also lazily stores the output, in that the value is only stored the first time the method is called on a given object. Subsequent calls to the method will just read the attribute value from the document, eliminating the "cost" of executing the method.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'mongo_method_storable'
```
And then execute:
$ bundle
Or install it yourself as:
$ gem install mongo_method_storable
## Usage
`include MongoMethodStorable`
```ruby
def some_method
# complex/expensive algorithm
end
mongo_store :some_method
```
## Limitations
1. Methods can take no arguments (currently)
2. There is no option (currently) to force the method to be evaluated after the first time.
3. No tests have been written on this code (caveat: it *is* being used in at least one production application)
4. This is my first "real" published Ruby gem
5. A bunch of other limitations I'm sure I'll think of over time
## Contributing
1. Fork it ( https://github.com/BigGillyStyle/mongo_method_storable/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request
| BigGillyStyle/mongo_method_storable | README.md | Markdown | mit | 1,417 |
<!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.7.0_51) on Tue Aug 19 08:33:49 CEST 2014 -->
<title>PushDefaults</title>
<meta name="date" content="2014-08-19">
<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="PushDefaults";
}
//-->
</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="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../ec/gp/push/PushBuilder.html" title="class in ec.gp.push"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../ec/gp/push/PushInstruction.html" title="class in ec.gp.push"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?ec/gp/push/PushDefaults.html" target="_top">Frames</a></li>
<li><a href="PushDefaults.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="#field_summary">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field_detail">Field</a> | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">ec.gp.push</div>
<h2 title="Class PushDefaults" class="title">Class PushDefaults</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>ec.gp.push.PushDefaults</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../../ec/DefaultsForm.html" title="interface in ec">DefaultsForm</a></dd>
</dl>
<hr>
<br>
<pre>public final class <span class="strong">PushDefaults</span>
extends java.lang.Object
implements <a href="../../../ec/DefaultsForm.html" title="interface in ec">DefaultsForm</a></pre>
</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>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../ec/gp/push/PushDefaults.html#P_PUSH">P_PUSH</a></strong></code> </td>
</tr>
</table>
</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="../../../ec/gp/push/PushDefaults.html#PushDefaults()">PushDefaults</a></strong>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../ec/util/Parameter.html" title="class in ec.util">Parameter</a></code></td>
<td class="colLast"><code><strong><a href="../../../ec/gp/push/PushDefaults.html#base()">base</a></strong>()</code>
<div class="block">Returns the default base.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="P_PUSH">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>P_PUSH</h4>
<pre>public static final java.lang.String P_PUSH</pre>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#ec.gp.push.PushDefaults.P_PUSH">Constant Field Values</a></dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="PushDefaults()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>PushDefaults</h4>
<pre>public PushDefaults()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="base()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>base</h4>
<pre>public static final <a href="../../../ec/util/Parameter.html" title="class in ec.util">Parameter</a> base()</pre>
<div class="block">Returns the default base.</div>
</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="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../ec/gp/push/PushBuilder.html" title="class in ec.gp.push"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../ec/gp/push/PushInstruction.html" title="class in ec.gp.push"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?ec/gp/push/PushDefaults.html" target="_top">Frames</a></li>
<li><a href="PushDefaults.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="#field_summary">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field_detail">Field</a> | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| ashkanent/Disease_Gene_Association | bin/docs/classdocs/ec/gp/push/PushDefaults.html | HTML | mit | 9,675 |
/* ==== Google font ==== */
@import url('http://fonts.googleapis.com/css?family=Lato:400,300,700,900');
body {
background: #394864;
font-family: 'Lato', sans-serif;
font-weight: 300;
font-size: 16px;
color: #555;
line-height: 1.6em;
-webkit-font-smoothing: antialiased;
-webkit-overflow-scrolling: touch;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Lato', sans-serif;
font-weight: 300;
color: #444;
}
h1 {
font-size: 40px;
}
h3 {
font-weight: 400;
}
h4 {
font-weight: 400;
font-size: 20px;
}
p {
margin-bottom: 20px;
font-size: 16px;
}
a {
color: #ACBAC1;
word-wrap: break-word;
-webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
-moz-transition: color 0.1s ease-in, background 0.1s ease-in;
-ms-transition: color 0.1s ease-in, background 0.1s ease-in;
-o-transition: color 0.1s ease-in, background 0.1s ease-in;
transition: color 0.1s ease-in, background 0.1s ease-in;
}
a:hover,
a:focus {
color: #4F92AF;
text-decoration: none;
outline: 0;
}
a:before,
a:after {
-webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
-moz-transition: color 0.1s ease-in, background 0.1s ease-in;
-ms-transition: color 0.1s ease-in, background 0.1s ease-in;
-o-transition: color 0.1s ease-in, background 0.1s ease-in;
transition: color 0.1s ease-in, background 0.1s ease-in;
}
.alignleft {
text-align: left;
}
.alignright {
text-align: right;
}
.aligncenter {
text-align: center;
}
.btn {
display: inline-block;
padding: 10px 20px;
margin-bottom: 0;
font-size: 14px;
font-weight: normal;
line-height: 1.428571429;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 0;
}
.btn-theme {
color: #fff;
background-color: #4F92AF;
border-color: #4F92AF;
}
.btn-theme:hover {
color: #fff;
background-color: #444;
border-color: #444;
}
form.signup input {
height: 42px;
width: 200px;
border-radius: 0;
border: none;
}
form.signup button.btn {
font-weight: 700;
}
form.signup input.form-control:focus {
border-color: #fd680e;
}
/* wrapper */
#wrapper {
text-align: center;
padding: 50px 0;
background: url(../img/main-bg.jpg) no-repeat center top;
background-attachment: relative;
background-position: center center;
min-height: 650px;
width: 100%;
-webkit-background-size: 100%;
-moz-background-size: 100%;
-o-background-size: 100%;
background-size: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#wrapper h1 {
margin-top: 60px;
margin-bottom: 40px;
color: #fff;
font-size: 45px;
font-weight: 900;
letter-spacing: -1px;
}
h2.subtitle {
color: #fff;
font-size: 24px;
}
/* countdown */
#countdown {
font-size: 48px;
color: #fff;
line-height: 1.1em;
margin: 40px 0 60px;
}
/* footer */
p.copyright {
margin-top: 50px;
color: #fff;
text-align: center;
}
| duyetdev/jslab.xyz | style.css | CSS | mit | 3,217 |
<div class="viewer">
<div class="title"></div>
<div class="contents"></div>
</div> | jeros-mz/angular.mobile.prototype | pages/viewer.html | HTML | mit | 84 |
#!/bin/bash -x
#
# Update Apt so we download the latest version of the apps
#
sudo apt-get update -y &&
#
# Install all the essential tools
#
sudo apt-get install -y python-pip &&
sudo apt-get install -y ruby &&
sudo apt-get install -y wget &&
sudo apt-get install -y curl &&
#
# Move to the Admin home directory
#
cd /home/admin &&
#
# Find out the region the server is running
#
REGION=$(curl 169.254.169.254/latest/meta-data/placement/availability-zone/ | sed 's/[a-z]$//') &&
#
# Download the latest version of CodeDeploy agent
#
wget https://aws-codedeploy-$REGION.s3.amazonaws.com/latest/install &&
#
# Make the script executable
#
chmod +x ./install &&
#
# Install CodeDeploy with the default settings
#
sudo ./install auto &&
#
# Start the CodeDeploy agent
#
sudo service codedeploy-agent start &&
#
# Add Node repo to Apt source
#
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - &&
#
# Install the latest version of Node
#
sudo apt-get install -y nodejs &&
#
# Add
#
touch /home/admin/.env &&
echo TEST_ENV=Hello >> /home/admin/.env
exit 0
| davidgatti/How-to-think-about-the-AWS-infrastructure | 07_Auto_Scaling/user_data.sh | Shell | mit | 1,076 |
//
// QueueDestroyer.h
//
// Created by Craig Fortune on 04/08/2012.
//
#import <Foundation/Foundation.h>
#import "box2d.h"
// Base that that provides singleton management
// and simple queue management
@interface CFQueueDestroyer : NSObject
// There isn't an NSQueue class, but an NSMutableArray
// serves our needs just fine
@property (retain) NSMutableArray* destroyQueueArr;
// Singleton creation and destruction
+ (CFQueueDestroyer*) singleton;
+ (void) destroy;
// Simple default interface for adding and emptying
// the queue
- (BOOL) addToQueue:(id)object;
// emptyQueue should be done upon every simulation
// update if possible/sensible to do so
- (BOOL) emptyQueue;
@end
| craigfortune/CFQueueDestroyer | CFQueueDestroyer.h | C | mit | 690 |
require 'bluplate/persist'
require 'bluplate/user'
require 'bluplate/inbox'
require 'bluplate/task'
require 'bluplate/ticket'
require 'bluplate/settings'
module Bluplate
end
| mjording/bluplate | lib/bluplate.rb | Ruby | mit | 180 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Q&A autour de Google+</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<link href="/css/bootstrap.min.css" rel="stylesheet">
<link href="/css/hc.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif] d-->
</head>
<body>
<div class="nav-toggle"><i class="fa fa-bars fa-2x"></i> journocamp </div>
<div id = "wrapper">
<div class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<p class="navbar-brand"></p>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="/">Le #journocamp ?</a></li>
<li><a href="/soutiens_journocamp.html">Ils soutiennent #journocamp</a></li>
<li><a href="/about.html">Contactez-nous</a></li>
<li><li><span><a href="/jekyll/testing/2014/05/01/journocamp-les-decodeurs-le-monde-samuel-laurent.html">Les décodeurs @lemonde</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/investigations-gijn-association-francophone.html">Investigation & France</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/github-premier-pas-journaliste.html">Premier pas sur GitHub</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/enquetes-ouvertes.html">Enquêtes ouvertes</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/les-bases-des-newsgames-florent-maurin.html">Les newsgames</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/reportage-multimedia-video-legere.html">Reportage et vidéo légère</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/racontr-presentation-journocamp.html">racontr & les longs formats</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/mooc-journalisme-rue89-groupe-moniteur.html">MOOC sur le journalisme</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/crowdfunding-financement-participatif-ulule.html">Crowdfunding</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/journocamp-questions-reponses-google-plus-medias.html">Q&A autour de Google+</a></span></li>
</li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<!-- Sidebar -->
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<li><a href="/"><img src="/images/journocamp_github_200px.png"></a></li>
<li class="sidebar-brand"><a href="/"><h1 class="brand"></h1></a><h3></h3></li>
<hr />
<li><a href="/">Le #journocamp ?</a></li>
<li><a href="/soutiens_journocamp.html">Ils soutiennent #journocamp</a></li>
<li><a href="/about.html">Contactez-nous</a></li>
<hr />
<li><h5>Les compte-rendus / ateliers</h5></li>
<li>
<li><span><a href="/jekyll/testing/2014/05/01/journocamp-les-decodeurs-le-monde-samuel-laurent.html">. Les décodeurs @lemonde</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/investigations-gijn-association-francophone.html">. Investigation & France</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/github-premier-pas-journaliste.html">. Premier pas sur GitHub</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/enquetes-ouvertes.html">. Enquêtes ouvertes</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/les-bases-des-newsgames-florent-maurin.html">. Les newsgames</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/reportage-multimedia-video-legere.html">. Reportage et vidéo légère</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/racontr-presentation-journocamp.html">. racontr & les longs formats</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/mooc-journalisme-rue89-groupe-moniteur.html">. MOOC sur le journalisme</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/crowdfunding-financement-participatif-ulule.html">. Crowdfunding</a></span></li>
<li><span><a href="/jekyll/testing/2014/05/01/journocamp-questions-reponses-google-plus-medias.html">. Q&A autour de Google+</a></span></li>
</li>
<li><a href="https://www.dropbox.com/s/a24zqw7x1w56xsd/lintegrale_journocamp_1st_avril_2014_paris.pdf"><h6>Téléchargez l'Intégrale en pdf</h6></a></li>
<hr />
<div id="social-wrapper">
<li> <a href="http://www.twitter.com/newsresources"><i class="fa fa-twitter-square"></i> @twitter</a></li>
<li> <a href="https://plus.google.com/u/0/communities/116980293240150398389"><i class="fa fa-google-plus-square"></i> google+</a> </li>
<li> <a href="http://www.facebook.com/newsresources"><i class="fa fa-facebook-square"></i> facebook</a></li>
<li> <a href="http://www.github.com/newsresources"><i class="fa fa-github-square"></i> github</a> </li>
</div>
</ul>
</div>
<div class="container">
<div id="article">
<div class="article-title">Q&A autour de Google+</div>
<p class="meta"><small> <i class="fa fa-calendar-o"></i> 01 May 2014</small></p> <hr/>
<div class="post">
<h4>Initiateur : <a href="https://plus.google.com/u/0/110851518579967457822/about">Anne Cissé</a> - Google+</h4>
<h4>Rapporteur : <a href="https://twitter.com/StevenJambot">Steven Jambot</a> - indépendant / France 24</h4>
<h5>Editeur : <a href="https:twitter.com/chouing">Cédric Motte</a></h5>
<h6>A noter : Anne propose <a href="https://docs.google.com/presentation/d/1XDDEkaYcaZzTTotQrbeQqjPsm6TIt_1tdkngrYOXSsc/pub?start=false&loop=false&delayms=3000#slide=id.p">une série d'exemples qui illustrent l’atelier</a>.</h6>
<p><a href="https://docs.google.com/presentation/d/1XDDEkaYcaZzTTotQrbeQqjPsm6TIt_1tdkngrYOXSsc/pub?start=false&loop=false&delayms=3000#slide=id.p"><img src="/images/google_plus_post_ideal.png" alt="Présentation des meilleures pratiques de google+"></a></p>
<p>L’atelier commence par un tour de table afin de faire le point sur les utilisations et attentes vis-à-vis de google+ </p>
<h3>Remarques</h3>
<ol>
<li><p>Dispersion entre profil et page = On ne sait pas où poster.
Page adresse et page locale convergent maintenant. </p></li>
<li><p>Appli bugge sur le nouvel iOs.</p></li>
<li><p>Barrages API G+</p></li>
<li><p>Administration des pages YouTube sur Google+</p></li>
<li><p>Quel intérêt d’avoir une page G+ ? La Fonderie aimerait savoir.</p></li>
<li><p>CFI s’interroge à dupliquer notre communauté pour le monde arabe. </p></li>
<li><p>Comment promouvoir certains contenus au travers de G+ et les optimiser SEO</p></li>
<li><p>Poster sur G+ pour augmenter la visibilité du contenu créé ?</p></li>
<li><p>Google+ devient-il le nouveau forum ? </p></li>
<li><p>Quels leviers utiliser pour faire venir les utilisateurs sur la page d’une marque média.</p></li>
<li><p>Comment optimiser sa page G+ ?</p></li>
</ol>
<h3>Réponses - rapides, temps limité...</h3>
<h4>... mais <a href="https://docs.google.com/presentation/d/1XDDEkaYcaZzTTotQrbeQqjPsm6TIt_1tdkngrYOXSsc/pub?start=false&loop=false&delayms=3000#slide=id.p">une série d'exemples qui illustrent l’atelier</a>.</h4>
<p>Pour les journalistes, se mettre en leur nom propre sur G+ pour avoir authorship : gagnant pour le média et le journaliste. </p>
<p>G+ a 7 millions de visiteurs chiffres Mediamétrie = 2e réseau social en France, derrière Facebook mais devant Twitter. Plateforme n’a que deux ans, la visibilité et l’engagement de l’audience sera moindre mais surtout différent.</p>
<p>Contenus visuels qualitatifs passent super bien en HD sur la plateforme. Ressortira très bien et peut driver vers le contenu sur site du média.</p>
<p>Intérêts par communautés et hangouts : mode, jeunes, foot
Consultations apparaissent. Utiliser Webmaster tool ou Allmyplus pour connaître le nombre de +1. </p>
<p>Créer, animer, modérer : facile
Mais technique : bugs cachés + Pb de fluidité dans la com de Google. Reproche que l’on peut aussi faire à Twitter et Facebook. Compliqué pour suivre derrière.
Faciliter l’accès à l’API pour les marques !</p>
<p>Ce sont souvent les journalistes qui postent le plus.</p>
<p>Hangout vrai moyen d’interagir avec l’audience.
Ex. de <a href="http://www.lequipe.fr/hangout/hangout-voeckler.html">L’Equipe au premier jour du Tour de France avec Voekler</a>. </p>
<hr>
</div>
</div>
<a href="https://twitter.com/share" class="twitter-share-button " data-size="small" data-count="none">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<ul class="pager">
<li class="next"><a href="/jekyll/testing/2014/05/01/crowdfunding-financement-participatif-ulule.html">Newer →</a></li>
</ul>
<div id="disqus_thread">
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'journocampgithub'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</ul>
</div>
<footer>
<p class="text-muted credit">Ce premier #journocamp est soutenu par <a href="http://www.editions-eyrolles.com">Eyrolles</a> <a href="http://www.samsa.fr/">Samsa</a> <a href="http://www.cfi.fr/">CFI</a> <a href="http://www.wan-ifra.org/">Wan Ifra</a> <a href="http://racontr.com/">racontr</a> <a href="http://www.francemediasmonde.com/">France Medias Monde</a> <a href="http://www.metronews.fr">metronews</a> <a href="http://fr.tuto.com/">tuto.com</a> <a href="http://esj-pro.fr/">ESJ Pro</a> <a href="https://www.ulule.com/">ulule</a> <a href="http://www.lafonderie-idf.fr/">La Fonderie</a></p>
<p class="text-muted credit">CC/by · <a href="http://journocamp.org"> #journocamp </a> - Un projet porté par <a href="http://www.newsresources.org">Cédric Motte / newsresources</a>.</p>
</footer>
<!-- Bootstrap core JavaScript-->
<script src="/js/jquery-1.10.2.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/bootstrap.js"></script>
<script type="text/javascript" src="/js/hc.js"></script>
</body>
</html>
| NewsResources/journocamp_1st | _site/jekyll/testing/2014/05/01/journocamp-questions-reponses-google-plus-medias.html | HTML | mit | 11,868 |
Arduino Event Manager
=====================
This library brings the principle of Events/Hooks to Arduino. In short, it allows a user
to respond to certain "events" quite easily.
### Table of Contents
* Installation
* Usage
* Timed Events
* Event Arguments
* Limitations
1. Installation
---------------
Download the Event.cpp & Event.h file and move it to your Arduino sketch repository. Once this is done, include the library in your sketch.
``` cpp
#include "Event.h"
```
2. Usage
--------
First off, we need to initialize a new EventManager. The EventManager will be responsible for registering new subscribers and triggering events when they occur.
``` cpp
EventManager evtManager;
```
Now that we have a new EventManager. Let's start listening for a new event.
``` cpp
EventManager evtManager;
void setup()
{
evtManager.subscribe(Subscriber("led.on", &LEDListener));
}
```
Notice that we use a reference to a listener as our "callback". So we would need to create this callback. The callback struct needs to extend the EventTask interface.
``` cpp
EventManager evtManager;
int ledPin = 12;
struct LEDListener : public EventTask
{
using EventTask::execute;
void execute(Event evt)
{
digitalWrite(ledPin, HIGH);
}
} LEDListener;
void setup()
{
pinMode(ledPin, OUTPUT);
evtManager.subscribe(Subscriber("led.on", &LEDListener));
}
```
Now that we have a new listener registered for the event "led.on", we actually need to send a signal to trigger the event.
``` cpp
EventManager evtManager;
int ledPin = 12;
struct LEDListener : public EventTask
{
using EventTask::execute;
void execute(Event evt)
{
digitalWrite(ledPin, HIGH);
}
} LEDListener;
void setup()
{
pinMode(ledPin, OUTPUT);
evtManager.subscribe(Subscriber("led.on", &LEDListener));
}
void loop()
{
Event ledEvent = new Event("led.on");
evtManager.trigger(ledEvent);
}
```
There we go, an event to light the LED at pin 12 triggers every "loop" interval. This might seem a bit redundant, but it's just an example. Event's won't be of much use for small applications with one purpose, they do however make large applications with many commands easier to maintain.
3. Timed Events
---------------
You can set up intervals to trigger certain events every X amount of milliseconds.
``` cpp
void setup()
{
Event keepAlive = Event("event.keepAlive");
evtManager.triggerInterval(TimedTask(2000, keepAlive));
}
void loop()
{
evtManager.tick();
}
```
This piece of code will set up the EventManager to trigger a new "event.keepAlive" event every 2000 milliseconds (2 seconds). You must call the tick() function, so that the event manager knows where in time it is.
4. Event Arguments
------------------
You can also use one event to do multiple things. Let's say we want one LED event to either turn it on or off.
``` cpp
...
struct LEDListener : public EventTask
{
using EventTask::execute;
void execute(Event evt)
{
String extra = evt.extra;
if (extra == "on")
{
digitalWrite(ledPin, HIGH);
}
else
{
digitalWrite(ledPin, LOW);
}
}
} LEDListener;
...
void loop()
{
Event ledEvent = new Event("led.on", "on");
evtManager.trigger(ledEvent);
delay(1000);
Event ledEvent = new Event("led.on", "off");
evtManager.trigger(ledEvent);
delay(1000);
}
```
This will turn raise a new "on" event and one second after that, raise an event to turn the LED off again. Thus, this will result in a "blinking LED" sketch.
5. Limitations
--------------
This library was mainly written for programming with the Arduino UNO. Since it has limited memory, there is a hardcoded limit on the amount of events.
``` cpp
TimedTask _interval[5]; // 5 available interval slots
Subscriber _sub[10]; // 10 available subscriber slots
```
This can be changed in the Event.h header file. | arcturial/arduino-event | README.md | Markdown | mit | 3,858 |
/**
* 对Storage的封装
* Author : smohan
* Website : https://smohan.net
* Date: 2017/10/12
* 参数1:布尔值, true : sessionStorage, 无论get,delete,set都得申明
* 参数1:string key 名
* 参数2:null,用作删除,其他用作设置
* 参数3:string,用于设置键名前缀
* 如果是sessionStorage,即参数1是个布尔值,且为true,
* 无论设置/删除/获取都应该指明,而localStorage无需指明
*/
const MEMORY_CACHE = Object.create(null)
export default function () {
let isSession = false,
name, value, prefix
let args = arguments
if (typeof args[0] === 'boolean') {
isSession = args[0]
args = [].slice.call(args, 1)
}
name = args[0]
value = args[1]
prefix = args[2] === undefined ? '_mo_data_' : args[2]
const Storage = isSession ? window.sessionStorage : window.localStorage
if (!name || typeof name !== 'string') {
throw new Error('name must be a string')
}
let cacheKey = (prefix && typeof prefix === 'string') ? (prefix + name) : name
if (value === null) { //remove
delete MEMORY_CACHE[cacheKey]
return Storage.removeItem(cacheKey)
} else if (!value && value !== 0) { //get
if (MEMORY_CACHE[cacheKey]) {
return MEMORY_CACHE[cacheKey]
}
let _value = undefined
try {
_value = JSON.parse(Storage.getItem(cacheKey))
} catch (e) {}
return _value
} else { //set
MEMORY_CACHE[cacheKey] = value
return Storage.setItem(cacheKey, JSON.stringify(value))
}
}
| S-mohan/mblog | src/utils/store.js | JavaScript | mit | 1,514 |
#!/usr/bin/env python
# coding: utf8
"""
Dropbox Authentication for web2py
Developed by Massimo Di Pierro (2011)
Same License as Web2py License
"""
# mind here session is dropbox session, not current.session
import os
import re
import urllib
from dropbox import client, rest, session
from gluon import *
from gluon.tools import fetch
from gluon.storage import Storage
import gluon.contrib.simplejson as json
class DropboxAccount(object):
"""
from gluon.contrib.login_methods.dropbox_account import DropboxAccount
auth.settings.actions_disabled=['register','change_password','request_reset_password']
auth.settings.login_form = DropboxAccount(request,
key="...",
secret="...",
access_type="...",
url = "http://localhost:8000/%s/default/user/login" % request.application)
when logged in
client = auth.settings.login_form.client
"""
def __init__(self,
request,
key = "",
secret = "",
access_type="app_folder",
login_url = "",
on_login_failure=None,
):
self.request=request
self.key=key
self.secret=secret
self.access_type=access_type
self.login_url = login_url
self.on_login_failure = on_login_failure
self.sess = session.DropboxSession(
self.key,self.secret,self.access_type)
def get_user(self):
request = self.request
token = current.session.dropbox_token
try:
access_token = self.sess.obtain_access_token(token)
except:
access_token = None
if access_token:
user = Storage()
self.client = client.DropboxClient(self.sess)
data = self.client.account_info()
display_name = data.get('display_name','').split(' ',1)
user = dict(email = data.get('email',None),
first_name = display_name[0],
last_name = display_name[-1],
registration_id = data.get('uid',None))
if not user['registration_id'] and self.on_login_failure:
redirect(self.on_login_failure)
return user
return None
def login_form(self):
token = self.sess.obtain_request_token()
current.session.dropbox_token = token
dropbox_url = self.sess.build_authorize_url(token,self.login_url)
redirect(dropbox_url)
form = IFRAME(_src=dropbox_url,
_scrolling="no",
_frameborder="no",
_style="width:400px;height:240px;")
return form
def logout_url(self, next = "/"):
current.session.dropbox_token=None
current.session.auth=None
redirect('https://www.dropbox.com/logout')
return next
def put(self,filename,file):
return json.loads(self.client.put_file(filename,file))['bytes']
def get(self,filename,file):
return self.client.get_file(filename)
def dir(self,path):
return json.loads(self.client.metadata(path))
def use_dropbox(auth,filename='private/dropbox.key',**kwargs):
path = os.path.join(current.request.folder,filename)
if os.path.exists(path):
request = current.request
key,secret,access_type = open(path,'r').read().strip().split(':')
host = current.request.env.http_host
login_url = "http://%s/%s/default/user/login" % \
(host,request.application)
auth.settings.actions_disabled = \
['register','change_password','request_reset_password']
auth.settings.login_form = DropboxAccount(
request,key=key,secret=secret,access_type=access_type,
login_url = login_url,**kwargs)
| SEA000/uw-empathica | empathica/gluon/contrib/login_methods/dropbox_account.py | Python | mit | 3,886 |
/*
*
* UI reducer
*
*/
import { fromJS } from 'immutable';
import {
SET_PRODUCT_QUANTITY_SELECTOR,
} from './constants';
const initialState = fromJS({
product: {
quantitySelected: 1,
},
});
function uiReducer(state = initialState, action) {
switch (action.type) {
case SET_PRODUCT_QUANTITY_SELECTOR:
return state.setIn(['product', 'quantitySelected'], action.quantity);
default:
return state;
}
}
export default uiReducer;
| outdooricon/my-retail-example | app/global/reducers/ui/index.js | JavaScript | mit | 465 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.