π
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Parameter Point : Set.(* Define congruence of segments, written as AB β‘ CD *) | |
Parameter Cong : Point -> Point -> Point -> Point -> Prop. | |
Notation "A B β‘ C D" := (Cong A B C D) (at level 70).(* Define betweenness: B is between A and C, written A-B-C *) | |
Parameter Bet : Point -> Point -> Point -> Prop. | |
Notation "A - B - C" := (Bet A B C) (at level 70).(* Define perpendicularity: line AB β₯ CD *) | |
Parameter Perp : Point -> Point -> Point -> Point -> Prop. | |
Notation "A B β₯ C D" := (Perp A B C D) (at level 70).(* Congruence is an equivalence relation *) | |
Axiom Cong_refl : forall A B, A B β‘ A B. | |
Axiom Cong_sym : forall A B C D, A B β‘ C D -> C D β‘ A B. | |
Axiom Cong_trans : forall A B C D E F, A B β‘ C D -> C D β‘ E F -> A B β‘ E F.(* Identity axiom for congruence *) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Volume VIII: Consciousness | |
========================== | |
Kuhn arrays all the theories on a linear spectrum, simplistically and roughly, | |
from the most physical on the left (at the beginning) to the least physical | |
on the right (near the end). | |
* Physicalism | |
* Non-Reductive Physicalism | |
* Integrated Information Theory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Π¦Ρ ΡΠΈΡΡΠ΅ΠΌΠ° ΡΠΈΠΏΡΠ² Ρ ΡΡΠ½Π΄Π°ΠΌΠ΅Π½ΡΠΎΠΌ Ρ Π°Π»Π³Π΅Π±ΡΠ°ΡΡΠ½ΠΎΡ Π³Π΅ΠΎΠΌΠ΅ΡΡΡΡ ΡΠΎΠΌΡ ΡΠΎ ΠΊΠ²Π°Π½ΡΠΎΡ ΡΠ·Π°Π³Π°Π»ΡΠ½Π΅Π½Π½Ρ Pi | |
Ρ Π½Π΅ΡΡΠΈΠ²ΡΠ°Π»ΡΠ½ΠΈΠΌ ΡΠ·ΠΎΠΌΠΎΡΡΡΠ·ΠΌΠΎΠΌ Π΄ΠΎ ΡΠΎΠ·ΡΠ°ΡΡΠ²Π°Π½Π½Ρ Fiber Bundle, Π²ΠΈΠΊΠΎΡΠΈΡΡΠΎΠ²ΡΡΡΡΡΡ ΡΠΊ | |
ΠΎΡΠ½ΠΎΠ²Π½ΠΈΠΉ ΠΏΡΠΈΠΌΡΡΠΈΠ² Π°Π»Π³Π΅Π±ΡΠ°ΡΡΠ½ΠΎΡ Π³Π΅ΠΎΠΌΠ΅ΡΡΡΡ. | |
type term = | |
I) ΠΠΎΠ²Π° ΡΠΊΠ»Π°Π΄Π°ΡΡΡΡΡ Π· 5 ΡΠ»ΡΠ². 2 ΡΠ»ΠΎΠ²Π° ΡΠ½ΡΠ²Π΅ΡΡΠ°Π»ΡΠ½Ρ Π΄Π»Ρ Π²ΡΡΡ ΡΠΈΠΏΡΠ·ΠΎΠ²Π°Π½ΠΈΡ ΠΌΠΎΠ² ΠΏΡΠΎΠ³ΡΠ°ΠΌΡΠ²Π°Π½Π½Ρ. | |
1) ΠΠ΅ΡΡΠ΅ ΡΠ»ΠΎΠ²ΠΎ --- ΡΠ΅ "ΠΠΌΡΠ½Π½Π°" --- ΡΠ½ΡΡΡΡΠΈΠ²Π½ΠΎ ΠΏΡΠΈΡΠΎΠ΄Π½Ρ ΠΏΠΎΠ½ΡΡΡΡ, ΡΠΊΠ΅ ΠΏΠΎΠΊΠ°Π·ΡΡ ΡΠΌΠ΅Π½ΠΎΠ²Π°Π½Π΅ Π°Π»ΡΠ°Π²ΡΡΠ°ΠΌΠΈ Π°Π±ΠΎ ΡΠΈΡΠ»Π°ΠΌΠΈ ΠΌΡΡΡΠ΅ Π² ΠΏΡΠΎΠ³ΡΠ°ΠΌΡ-ΡΠ΅ΡΠ΅Π½Π½Ρ, ΡΠΎ ΠΌΠΎΠΆΠ΅ ΠΌΡΡΡΠΈΡΠΈ ΡΠ½ΡΡ ΠΏΡΠΎΠ³ΡΠ°ΠΌΠΈ-ΡΠ΅ΡΠ΅Π½Π½Ρ. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./gradlew bootRun | |
> Task :bootRun | |
. ____ _ __ _ _ | |
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ | |
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ | |
\\/ ___)| |_)| | | | | || (_| | ) ) ) ) | |
' |____| .__|_| |_|_| |_\__, | / / / / | |
=========|_|==============|___/=/_/_/_/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* Type System *) | |
type exp = | |
| EVar of string | ELam of exp * (string * exp) | EApp of exp * exp | |
| EPi of exp * (string * exp) | ESig of exp * (string * exp) | EPair of string * exp * exp | |
| EId of exp | ERef of exp | |
| EInt | EIntConst of Z.t | ERat | ERatConst of exp * exp | ERatLt of exp * exp | |
| EReal | ECut of exp * exp * exp option * exp option * exp option * exp option * exp option * exp option * exp option | |
| ERealLt of exp * exp | ERealEq of exp * exp | ERealOps of real_op * exp * exp | |
| EIm of exp | EInf of exp | EIndIm of exp * exp | |
| EDisc of exp | EHub of exp | EBase of exp | ESpoke of exp * exp | EIndDisc of exp * exp * exp * exp * exp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Let build a Type System for mechanical verification of BROUWERβS FIXED-POINT THEOREM IN REAL-COHESIVE HOMOTOPY TYPE THEORY https://arxiv.org/pdf/1509.07584 by Shulman | |
Here is proposed CCHM(HoTT)/Cohesive (Im) core: Extend if needed and produce proof therm of Brower's Fixed Point Theorem in this type theory to verify mechanically. Then we will build a specialized type checker for these purposes. | |
type exp = | |
| EPre of Z.t | EKan of Z.t | EVar of name | EHole (* cosmos *) | |
| EPi of exp * (name * exp) | ELam of exp * (name * exp) | EApp of exp * exp (* pi *) | |
| ESig of exp * (name * exp) | EPair of tag * exp * exp | EFst of exp | ESnd of exp (* sigma *) | |
| EId of exp | ERef of exp | EJ of exp | EField of exp * string (* strict equality *) | |
| EPathP of exp | EPLam of exp | EAppFormula of exp * exp (* path equality *) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Let's build a Simplicial HoTT extension to CCHM/CHM/HTS type systems targeting GAP replacement, infinity-gategorical framework like Rezk prover (Riehl, Shulman) for Simplex and Simplicial types built into type checker. Then gradually extent type inference rules for Group, Monoid, Category, Chain, Ring, Field. As eliminators I propose Face, Degeneracies, Composition, as Introduction inference rule I propose Simplicial Object with common syntax: | |
def <name> : <type> := Π (context), conditions β’ <n> (elements | constraints) | |
def chain : Chain := Π (context), conditions β’ n (Cβ, Cβ, ..., Cβ | ββ, ββ, ..., ββββ) | |
def simplicial : Simplicial := Π (context), conditions β’ n (sβ, sβ, ..., sβ | facemaps, degeneracies) | |
def group : Group := Π (context), conditions β’ n (generators | relations) | |
def cat : Category := Π (context), conditions β’ n (objects | morphisms | coherence) | |
Consider examples: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aim_spu_module.self | |
appldr | |
creserved_0 | |
default.spp | |
emer_init.self | |
eurus_fw.bin | |
hdd_copy.self | |
isoldr | |
lv0 | |
lv1.self |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BDIT_FIRMWARE_PACKAGE.pkg | |
BDPT_FIRMWARE_PACKAGE_301R.pkg | |
BDPT_FIRMWARE_PACKAGE_302R.pkg | |
BDPT_FIRMWARE_PACKAGE_303R.pkg | |
BDPT_FIRMWARE_PACKAGE_304R.pkg | |
BDPT_FIRMWARE_PACKAGE_306R.pkg | |
BDPT_FIRMWARE_PACKAGE_308R.pkg | |
BLUETOOTH_FIRMWARE.pkg | |
CORE_OS_PACKAGE.pkg | |
MULTI_CARD_FIRMWARE.pkg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
βββ CP_Update | |
βΒ Β βββ Readme_CP_e.txt | |
βΒ Β βββ Readme_CP_j.txt | |
βΒ Β βββ license | |
βΒ Β βΒ Β βββ ps3tool_license_e.txt | |
βΒ Β βΒ Β βββ ps3tool_license_j.txt | |
βΒ Β βββ reftool_cp_133.bin | |
βββ HW_doc | |
βΒ Β βββ Readme-RSX_Doc_e.txt |
NewerOlder