chunk_uid
stringlengths
40
40
chunk_type
stringclasses
2 values
chunk_index
int64
0
6.71k
total_chunks
int64
1
6.71k
section_title
stringlengths
1
157
embed_text
stringlengths
1
83.3k
spans
dict
paper_doi
stringlengths
0
63
paper_id_arxiv
stringlengths
9
16
title
stringlengths
7
245
authors
listlengths
1
768
categories
listlengths
1
7
year
int64
2k
2.02k
language
stringclasses
2 values
discipline
stringclasses
8 values
dense_vector
listlengths
1.02k
1.02k
f5135cdabcce655edda88445d82dca5f7e27f758
subsection
38
69
Soundness of Andromeda
Universes The final example shows how to use coercions and operations to implement a universe à la Tarski. We postulate a universe U, whose elements should be thought of as names of types, with an operation El that converts the names to the corresponding types: constant U : Type constant El : U → Type Because El is a...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.020066088065505028, 0.006160975433886051, -0.017807699739933014, 0.03158692270517349, -0.016007091850042343, -0.020340755581855774, 0.015541681088507175, -0.01094860676676035, 0.016464874148368835, 0.019699862226843834, -0.027131181210279465, 0.012299061752855778, 0.01927259936928749, -...
3796de46271e53b23736668ac2df908c4bcf15a1
subsection
39
69
Soundness of Andromeda
It is difficult to do justice to all of them. Its overall design follows the tradition of LCF  and its descendants , , . However, LCF and many of its descendants use Church's simple type theory , whereas Andromeda is based on the dependent type theory of Martin-Löf . Consequently, Andromeda cannot advantageously integr...
{ "cite_spans": [ { "arxiv_id": "", "doi": "", "end": 120, "openalex_id": "", "raw": "Michael J. Gordon, Arthur J. Milnter, and Christopher P. Wadsworth. Edinburgh LCF: A Mechanized Logic of Computation. Number 78 in Lecture Notes in Computer Science. Springer-Verlag, 1979.", "...
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.0568031370639801, 0.0011274400167167187, -0.011453722603619099, -0.03050764836370945, -0.007890172302722931, -0.01900051161646843, 0.019610969349741936, 0.01661972515285015, 0.024448851123452187, 0.003376597072929144, -0.006207596976310015, 0.01620766520500183, 0.0066463639959692955, 0....
21b3a8ea115320c7d7bdb5f62ffd0fc7e3923d12
subsection
40
69
Soundness of Andromeda
This can be accomplished with a minor modification of AML: if we implement all calls of AML to the nucleus as operations (whose default handler is the nucleus), then the user can intercept them and do whatever they like: record them, communicate them, or modify them to obtain a proof translation. Alternatively, the |ju...
{ "cite_spans": [ { "arxiv_id": "", "doi": "", "end": 1414, "openalex_id": "", "raw": "Paolo Capriotti. Notions of type formers. In 23rd International Conference on Types for Proofs and Programs (TYPES). Budapest, Hungary, May 29–June 1 2017.", "source_ref_id": "7f1fd75a19aa109...
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.023870015516877174, -0.0007850472466088831, 0.011812910437583923, 0.027151377871632576, -0.01251496933400631, -0.03366832062602043, 0.018238278105854988, 0.01625419780611992, 0.044809695333242416, -0.0021309787407517433, -0.0208633691072464, -0.015178215689957142, -0.011606871150434017, ...
42e2743dd178ec85b29037340953c20c6336eb5b
subsection
41
69
Soundness of Andromeda
Syntax {Contexts} \Gamma , {}& \bullet & & \text{empty context}\\ \ \mid \ \ {}& \Gamma ,\, x\, {:}\, A & & \text{context $\Gamma $ extended with $x: A$} {Terms and types} s, t, A, B\ \mathrel {{:}{:}{=}}\ {}& \mathsf {Type}& & \text{universe}\\ \ \mid \ \ {}& \mathop {\textstyle \prod _{(x {:} A)}} B& & \text{product...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.055024102330207825, 0.043427228927612305, -0.03332574665546417, 0.027023762464523315, -0.011245912872254848, -0.0444038100540638, 0.011787609197199345, 0.03857485577464104, 0.037171024829149246, 0.01090258453041315, -0.034332841634750366, -0.00551232835277915, -0.034454915672540665, 0.0...
c150fcf3acef45b3ab7596ccbc1d60a31e8d8c1f
subsection
42
69
Soundness of Andromeda
We first define the map function to show how AML syntax works, and the auxiliary apply function that folds application of a function over a list of arguments: let rec map f xs = match xs with | [] ⇒ [] | ?x :: ?xs ⇒ (f x) :: (map f xs) end let rec apply f xs = match xs with | [] ⇒ f | ?x :: ?xs ⇒ apply (f x) xs end N...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.02819673903286457, -0.02825777232646942, -0.028959639370441437, 0.039274029433727264, -0.006053601857274771, -0.0136253722012043, 0.04409554973244667, 0.010070264339447021, -0.012221639044582844, 0.011718126013875008, -0.03274361789226532, -0.005138123407959938, 0.017149964347481728, 0....
2b1e37507d70e6f0409a860e3f77d0cdabff7473
subsection
43
69
The standard library
To test the viability of our design we implemented a small standard library in AML. By design, anything that is implemented in AML is safe: it may not work as expected, or diverge, but it will never produce an invalid judgment, or derive an invalid equality. (Of course, this does not say much until we have dealt with \...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.008488724939525127, 0.007470535580068827, -0.02018074318766594, -0.004980357363820076, -0.002490178681910038, -0.02608395367860794, 0.017862169072031975, 0.018243514001369476, 0.026983926072716713, 0.018990948796272278, 0.0018447532784193754, 0.0026770373806357384, -0.005823128391057253, ...
395d12b620d6c24a260c8b4501c100e17275b8a1
subsection
44
69
Equality checking
The most substantial part of the library is a user-extensible equality checking algorithm with rudimentary support for implicit arguments, based on similar ones by Stone and Harper  and Coquand . It computes a witness of equality \Gamma \vdash s ~ \equiv ~ t : A in two phases:The type directed phase computes the weak h...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1145/1183278.1183281", "end": 195, "openalex_id": "https://openalex.org/W2161017670", "raw": "Christopher A. Stone and Robert Harper. Extensional equivalence and singleton types. ACM Transactions on Computational Logic, 7(4):676–722, Oct...
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.026147454977035522, 0.003113972721621394, -0.03816857188940048, 0.002545715542510152, 0.0011479556560516357, -0.021021699532866478, 0.02518637664616108, 0.02724583074450493, 0.05690198764204979, 0.035910800099372864, -0.03046468459069729, 0.017955400049686432, -0.023279473185539246, 0.0...
3a4edf11bfe712ae070b65a131f4dec25c6b2190
subsection
45
69
Equality hints
The equality checking algorithm can be extended by the user with new rules, which we call equality hints. There are three kinds:an \eta -hint, or an extensionality hint, is a term whose type has the form \mathop {\textstyle \prod _{(x_1 {:} A_1)}} \cdots \mathop {\textstyle \prod _{(x_n {:} A_m)}} \mathop {\textstyle ...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.03035671077668667, -0.002324423985555768, -0.022973470389842987, 0.009907880797982216, -0.014438505284488201, -0.045306246727705, 0.0007694053347222507, 0.047563932836055756, 0.01748180389404297, 0.0032149129547178745, -0.06504573673009872, 0.027382057160139084, -0.03368221968412399, 0....
1ee3c98221fa634368273be5204b0e4625fef6f8
subsection
46
69
Equality hints
For instance, when we axiomatize simple products A\times B, the extensionality rule\mathop {\textstyle \prod _{(A {:} \mathsf {Type})}} \mathop {\textstyle \prod _{(B {:} \mathsf {Type})}} \mathop {\textstyle \prod _{(x, y {:} A\times B)}} \\ \mathsf {Eq}_{A}(\mathtt {fst}\,A\,B\,x,\mathtt {fst}\,A\,B\,y) \rightarrow \...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.039283107966184616, 0.0046929121017456055, -0.01608562283217907, 0.026066645979881287, -0.03117924928665161, -0.03485727310180664, -0.006325892638415098, 0.03598662465810776, 0.007928350940346718, 0.03311746194958687, -0.06635701656341553, -0.0000195537995750783, -0.014124521054327488, ...
f17793fe66655fe2617e7dc8f7a4be7249173e62
subsection
47
69
Implicit arguments
The standard library provides basic support for implicit arguments. In other systems these are usually implemented with meta-variables, which are not available in AML. In their place, we use ordinary fresh variables generated using the assume construct. We refer to these as implicit variables. We collect constraints th...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.025932738557457924, 0.0013185653369873762, -0.043902602046728134, 0.04466532915830612, 0.0076310895383358, -0.03914317861199379, -0.0015807528980076313, 0.025780193507671356, 0.05833340808749199, 0.0019068189430981874, -0.021493664011359215, -0.024971701204776764, -0.009755286388099194, ...
b043e6072de159a04cb96f667df39eca7860c298
subsection
48
69
Examples
In this section we show Andromeda at work through several examples.
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.013782179914414883, 0.02339765429496765, -0.017552057281136513, 0.0029762182384729385, -0.05247301980853081, -0.002291306620463729, 0.01739943027496338, 0.024801818653941154, 0.0176741573959589, 0.005456400103867054, 0.008478406816720963, 0.003918687347322702, 0.03238736093044281, -0.00...
25ca745f11f11084e618a7a5dc3d81d7bcce01da
subsection
49
69
Proving equality with handlers
As explained in §REF , when AML is faced with proving a non-trivial equality, it delegates it to user code by triggering the operation |equal|. To see how this works, let us walk through a computation that constructs a term witnessing symmetry of equality (without the standard library installed): λ (A : Type) (x y : A...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.032373275607824326, 0.0008500464027747512, 0.003442139830440283, 0.0025744535960257053, -0.01641547866165638, -0.007433496415615082, 0.045340895652770996, 0.0002491022169124335, 0.04875824227929115, 0.0021987741347402334, -0.012151421047747135, 0.003165624337270856, 0.0096875736489892, ...
d7a9f5dc24f7a201ac7d13669d82e758fd33a4b6
subsection
50
69
Dependent sums
Our second example shows how to axiomatize dependent sums. This time we use the standard library and rely on its equality checking. We start by postulating the type and term constructors: constant Σ : Π (A : Type) (B : A → Type), Type constant existT : Π (A : Type) (B : A → Type) (a : A), B a → Σ A B Next, we postula...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.04313231632113457, 0.01663631573319435, -0.004349862225353718, 0.016193697229027748, -0.01636158674955368, -0.05964653193950653, 0.04349862411618233, 0.008203687146306038, 0.05021419748663902, -0.014469015412032604, -0.032387394458055496, 0.042460761964321136, -0.005624295677989721, -0....
467bff0e1d89f65bc03706eb9890c287e93409b4
subsection
51
69
Natural numbers
The standard library provides functions for calculating weak head-normal forms that can be used as a computation device at the level of type-theoretic terms. We show how this is done by axiomatizing natural numbers and computing with them.We postulate the type of natural numbers and its constructors constant nat : Typ...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.011057618074119091, -0.015857648104429245, -0.01590343378484249, 0.005933263339102268, 0.012538072653114796, -0.08492007106542587, 0.06034758314490318, 0.016666555777192116, 0.05009124055504799, 0.022496797144412994, -0.0642242357134819, -0.004166638944298029, -0.03488987684249878, -0.0...
67c488d291ab744e5a12539a41fc1bc9fb05dd92
subsection
52
69
Natural numbers
The overall usability of the system depends on having a good standard library with sensible default settings.The definition of multiplication and its Peano axioms are derived similarly: constant ( * ) : nat → nat → nat constant multdef : ∏ (n m : nat), n * m ≡ natrect (λ , nat) O (λ x, x + n) mlet multO = now betas = ...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.02478655055165291, -0.004414722789078951, -0.029289033263921738, -0.02268030494451523, -0.0017141868593171239, -0.057051803916692734, 0.04404802247881889, 0.03595881536602974, 0.033425211906433105, -0.00480392063036561, -0.04639846831560135, 0.028663264587521553, -0.04023235663771629, -...
372413554038ce2512d973b4634291fb5916719a
subsection
53
69
Untyped
An example that cannot be done easily in proof assistants based on intensional type theory is in order. Let us axiomatize the untyped \lambda -calculus as a type that is judgmentally equal to its own function space, and show that it possesses a fixed-point operator.We first postulate that there is a type equal to its f...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.01665106974542141, 0.03739241138100624, -0.028586117550730705, 0.0014976041857153177, -0.0001255555107491091, -0.03479783609509468, 0.03577461838722229, 0.012209766544401646, 0.03574409335851669, 0.00521967513486743, -0.04224579408764839, -0.026769913733005524, 0.016040580347180367, 0.0...
fbed347323633c79ed4799fa114faa48bca75923
subsection
54
69
Universes
The final example shows how to use coercions and operations to implement a universe à la Tarski. We postulate a universe U, whose elements should be thought of as names of types, with an operation El that converts the names to the corresponding types: constant U : Type constant El : U → Type Because El is an eliminat...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.015247645787894726, 0.007459829095751047, -0.016140079125761986, 0.03539223596453667, -0.014339957386255264, -0.01816903054714203, 0.021494681015610695, -0.013203439302742481, 0.01460692472755909, 0.024255884811282158, -0.02439318224787712, 0.017177438363432884, 0.017391012981534004, -0...
08cc23f3af13d518ca99024efdce65f2be139875
subsection
55
69
Related work
Andromeda draws heavily on the experience and ideas from other proof assistants. It is difficult to do justice to all of them. Its overall design follows the tradition of LCF  and its descendants , , . However, LCF and many of its descendants use Church's simple type theory , whereas Andromeda is based on the dependent...
{ "cite_spans": [ { "arxiv_id": "", "doi": "", "end": 201, "openalex_id": "", "raw": "Michael J. Gordon, Arthur J. Milnter, and Christopher P. Wadsworth. Edinburgh LCF: A Mechanized Logic of Computation. Number 78 in Lecture Notes in Computer Science. Springer-Verlag, 1979.", "...
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.06408319622278214, -0.00658378517255187, -0.006549454759806395, -0.031431280076503754, -0.020674459636211395, -0.024336354807019234, 0.017378751188516617, 0.020125174894928932, 0.034482862800359726, -0.0003771563060581684, -0.00740389758720994, 0.014189849607646465, -0.0006389247137121856...
cf83ba92b7b51e6f929bfabaad13da4cfdee6d1d
subsection
56
69
Future work
We feel that Andromeda shows a promising way to design a proof assistant based on type theory with equality reflection, but much remains to be done.
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.027552369982004166, 0.03173251822590828, -0.005267140455543995, -0.0003487430512905121, -0.01640021987259388, -0.04039793834090233, 0.008589139208197594, 0.036492399871349335, 0.017391862347722054, 0.004813273902982473, 0.0057210070081055164, -0.015332299284636974, 0.0026183142326772213, ...
5ed4a3dace2fead57dffd3e0090964301a8e1d7f
subsection
57
69
Syntactic sugar and end-user support
AML turned out to be a useful tool for the implementers of the standard library. If we imagine that the end-user is a mathematician who just wants to do mathematics, without learning the intricacies of operations and handlers, then we need further support for creating a more user friendly environment. There ought to be...
{ "cite_spans": [ { "arxiv_id": "", "doi": "", "end": 528, "openalex_id": "", "raw": "William J. Bowman. Growing a proof assistant. In Higher-Order Programming with Effects, 2016.", "source_ref_id": "5bdd94a3b7fe0379915c493551b22095b81a2a70", "start": 480 } ] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.014554417692124844, -0.0017334860749542713, -0.03829307109117508, -0.011320102959871292, 0.010275052860379219, -0.05553257837891579, 0.03899485617876053, 0.00800950638949871, 0.03225161135196686, 0.019802551716566086, -0.01486716978251934, 0.0011270520044490695, 0.011968491598963737, -0...
203e1b0159e3892f1fa76c7f65bc406932978c8b
subsection
58
69
Formal verification of the meta-theoretic properties
While we carefully designed the underlying type theory and made sure it is precisely clear what the type-theoretic rules are, we have not formally verified that the system has the desired meta-theoretic properties, such as uniqueness of typing, validity of inversion principles, and well-behaved context joins. We expect...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.03636903688311577, 0.01235692948102951, -0.015232585370540619, 0.021891597658395767, -0.025430865585803986, -0.023112034425139427, -0.0028756558895111084, 0.03746743127703667, -0.011433973908424377, 0.006361530162394047, -0.024942690506577492, -0.05626216530799866, 0.0018687949050217867, ...
2fc7f24ec986d3ff3dddfce80d334f35b2844a70
subsection
59
69
Recording derivations
Like all LCF-style proof assistants, Andromeda does not record derivations, only their conclusions. (In fact, all practical proof assistants do this, though some implement type theories that allow derivations to be reconstructed.) There might be situations in which we wish to record or communicate the derivation. For i...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.049058131873607635, -0.0022023532073944807, 0.010418751277029514, -0.0037049108650535345, -0.040576688945293427, -0.03142405301332474, -0.005937772803008556, 0.01181452814489603, 0.018549343571066856, -0.011013672687113285, -0.0193425714969635, -0.005262766033411026, 0.007573806680738926,...
64d645dcd98731e75b4cf38446f5c3fade178d01
subsection
60
69
Removal of
A major forthcoming modification of the current system is elimination of \mathsf {Type}: \mathsf {Type}. The syntax of AML takes advantage of \mathsf {Type}: \mathsf {Type} to conflate term and type judgments within a single abstract type \mathtt {judgment}.But the nucleus does not rely on \mathsf {Type}: \mathsf {Type...
{ "cite_spans": [ { "arxiv_id": "", "doi": "", "end": 936, "openalex_id": "", "raw": "Paolo Capriotti. Notions of type formers. In 23rd International Conference on Types for Proofs and Programs (TYPES). Budapest, Hungary, May 29–June 1 2017.", "source_ref_id": "7f1fd75a19aa1099...
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.037865616381168365, 0.006918637081980705, 0.004847622476518154, 0.0021072474773973227, -0.006434256210923195, -0.04186271131038666, 0.024028342217206955, 0.025782791897654533, 0.036736663430929184, -0.009466404095292091, -0.005419726017862558, -0.015820564702153206, -0.020702514797449112,...
5417e6a6402ad3d06485ffee8e42f5cc87e21c72
subsection
61
69
The rules of type theory
In this appendix we give the formulation of type theory in a declarative way that minimizes the number of judgments, and so is better suited for a semantic account. We omit formal treatment of bound variables and substitution, which is standard.
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.04793946444988251, -0.005763568449765444, -0.030927209183573723, 0.039608798921108246, -0.019270382821559906, -0.047481734305620193, 0.025022508576512337, 0.03753376379609108, 0.04061580076813698, 0.013274135068058968, -0.02094872109591961, -0.019514504820108414, 0.01252651121467352, 0....
cda8e15eae9623c8167c702948c0cb8f36801e78
subsection
62
69
Syntax
{Contexts} \Gamma , {}& \bullet & & \text{empty context}\\ \ \mid \ \ {}& \Gamma ,\, x\, {:}\, A & & \text{context $\Gamma $ extended with $x: A$} {Terms and types} s, t, A, B\ \mathrel {{:}{:}{=}}\ {}& \mathsf {Type}& & \text{universe}\\ \ \mid \ \ {}& \mathop {\textstyle \prod _{(x {:} A)}} B& & \text{product}\\ \ \m...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.03162110969424248, 0.039465345442295074, -0.02920984849333763, 0.013467968441545963, -0.02389896661043167, -0.028553619980812073, 0.007874755188822746, 0.02765321172773838, 0.04425734654068947, -0.01196474488824606, -0.026783324778079987, -0.006051047705113888, -0.01398684736341238, -0....
e50de7606fc0a5c16803846edffa35231d8f5119
subsection
63
69
Judgments
& \Gamma \ \mathsf {ctx} & & \text{$\Gamma $ is a well formed context} \\ & \Gamma \vdash t : A & & \text{$t$ is a well formed term of type $A$ in context $\Gamma $} \\ & \Gamma \vdash s ~ \equiv ~ t : A & & \text{$s$ and $t$ are equal terms of type $A$ in context $\Gamma $} {We use the following abbreviations:} & \Gam...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ 0.003170094219967723, 0.02751229703426361, -0.04351917281746864, -0.002622671192511916, -0.018448345363140106, -0.06561446189880371, 0.017380202189087868, 0.023819575086236, 0.03341759741306305, 0.02174432761967182, -0.00949883833527565, 0.016754576936364174, -0.017883755266666412, 0.01765...
0f97ee6bc2404fcb827f0a5bdd7c191fec188896
subsection
64
69
Contexts
[ctx-empty] ctx[ctx-extend] ctxA typexdom() (,  x  :  A) ctx
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.012323852628469467, 0.00454799784347415, -0.019107695668935776, -0.0044449809938669205, -0.037421781569719315, -0.013827133923768997, 0.021106982603669167, 0.022221090272068977, 0.013682147487998009, -0.028432616963982582, 0.012148343026638031, 0.0017293456476181746, 0.005845245439559221,...
5d2b448105bec4eaa626fa0588203044f9beaf73
subsection
65
69
Terms and types
Conversion [term-ty-conv] t : AA B t : BVariable [term-var] (,  x  :  A) ctx ,  x  :  A x : A[term-var-skip] (,  y  :  B) ctxx : A ,  y  :  B x : AUniverse [ty-type] ctx Type typeProduct [ty-prod] A type,  x  :  A B type (x : A)B type[term-abs] ,  x  :  A t : B (x : A.B . t) : (x : A)B[term-app] s : (x ...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.021485090255737305, 0.019135158509016037, -0.015144852921366692, 0.02975562959909439, -0.027298882603645325, 0.009834617376327515, -0.042512401938438416, 0.01974553056061268, 0.033875640481710434, -0.0062410528771579266, 0.01963871531188488, -0.008880911394953728, 0.009208985604345798, ...
d901fa85e1f2a0cc1ff5e24bf6dbdde2a485a52e
subsection
66
69
Equality
General rules [eq-refl] t : A t     t : A[eq-sym] t     s : A s     t : A[eq-trans] s     t : At     u : A s     u : AConversion [eq-ty-conv] s     t : AA B s     t : BEquality reflection [eq-reflection] u : EqA(s,t) s     t : AComputation [prod-beta] ,  x  :  A s : Bt : A (x : A.B . s)@x:A.B t     s[t/...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.023242982104420662, 0.009965638630092144, -0.02954590506851673, 0.02179315686225891, -0.008202956058084965, -0.0292864628136158, -0.0069515286013484, 0.004173969384282827, 0.021197965368628502, 0.005894682835787535, -0.009591735899448395, 0.015856506302952766, -0.017779430374503136, 0.0...
73aacd734a4076b3849f10e1ff3f5bd7f6964620
subsection
67
69
Congruences
Type formers [cong-prod] A C,  x  :  A B D[x/y] (x : A)B (y : C)D[cong-eq] A Bs     u : At     v : A EqA(s,t) EqB(u,v)Products [cong-abs] A C,  x  :  A B D[x/y],  x  :  A s     t[x/y] : B (x : A.B . s)     (y : C.D . t) : (x : A)B[cong-app] A C,  x  :  A B D[x/y]s     u : (x : A)Bt     v : A (s@x:A.B t)     ...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.01492320280522108, 0.008270323276519775, -0.06149335950613022, 0.0054245381616055965, -0.003681209171190858, 0.011070330627262592, -0.004695925861597061, 0.022369544953107834, 0.012649626471102238, -0.0006551789701916277, -0.004283935762941837, -0.011367878876626492, 0.032257311046123505,...
f3cb9990066c9b301d33dbfd35b1c9f5ae2f1a2f
subsection
68
69
The auto tactic
We include here the complete code for implementing a simple auto tactic from § .We first define the map function to show how AML syntax works, and the auxiliary apply function that folds application of a function over a list of arguments: let rec map f xs = match xs with | [] ⇒ [] | ?x :: ?xs ⇒ (f x) :: (map f xs) end...
{ "cite_spans": [] }
1802.06217
Design and Implementation of the Andromeda Proof Assistant
[ "Andrej Bauer", "Gaëtan Gilbert", "Philipp G. Haselwarter", "Matija Pretnar", "Christopher A. Stone" ]
[ "cs.LO" ]
2,018
en
Computer Science
[ -0.03363334387540817, -0.025637032464146614, -0.023744774982333183, 0.04031728580594063, -0.007637699134647846, -0.01670985110104084, 0.057622279971838, 0.004154572729021311, -0.012032618746161461, 0.01519909780472517, -0.03857762739062309, -0.0015584415523335338, 0.015519560314714909, 0.0...
16c94c8b52255689a68376a589ed06ea253c67cf
abstract
0
25
Abstract
Accurately predicting the performance of coronagraphs and tolerancing optical surfaces for high-contrast imaging requires a detailed accounting of diffraction effects. Unlike simple Fraunhofer diffraction modeling, near and far-field diffraction effects, such as the Talbot effect, are captured by plane-to-plane propaga...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.03850666061043739, -0.01946691796183586, -0.012189707718789577, 0.003644326003268361, -0.0146535849198699, -0.023769166320562363, -0.017407329753041267, -0.00033587487996555865, 0.013372063636779785, 0.040947653353214264, -0.03359416127204895, 0.042839422821998596, -0.014745121821761131, ...
187c72f66ab457e14cad31426c45faee79d67165
subsection
1
25
INTRODUCTION
The Physical Optics Propagation in PYthon module (POPPY) , is an open-source library for modeling optical diffraction. POPPY was originally developed as the back-end diffraction code for the package WebbPSF, which simulates PSFs for the James Webb Space Telescope (JWST) and now also the Wide Field Infrared Survey Teles...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.06077289953827858, 0.010080487467348576, -0.031622663140296936, -0.004998273681849241, 0.019764166325330734, -0.019413141533732414, -0.0006576926680281758, -0.02278602309525013, 0.02066461741924286, 0.035071853548288345, -0.05305037647485733, 0.030584855005145073, -0.012476606294512749, ...
8cc891f459b6eb8dfe22f235ff62d965115d97b2
subsection
2
25
Implementing Fresnel Propagation Methods
POPPY supports optical simulations in two regimes, the standard Fraunhofer (far-field) and Fresnel (near-field) approximations . The methods used in Fraunhofer calculations have been previously presented. To quickly generate results in the Fraunhofer regime, for coronagraphs with a small focal plane mask size POPPY typ...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.029851822182536125, 0.004750194028019905, -0.0224804375320673, -0.0030943031888455153, 0.013849963434040546, 0.0023197736591100693, 0.04163382947444916, 0.01950441114604473, -0.002491467399522662, 0.033423054963350296, -0.05332426726818085, 0.042671624571084976, 0.019748598337173462, 0....
77cbd89c2b24f86ed7141094041822d753b8d641
subsection
3
25
Implementing Fresnel Propagation Methods
These effects must be taken into account when modeling high performance coronagraphs. [Figure: Example of the Talbot Effect calculated using the POPPY Fresnel module.In addition to edge effects, phase errors in the plane at Z=0 (top row) are partially converted into a similar pattern of amplitude errors at an intermedi...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ 0.005539881996810436, 0.01950404793024063, -0.04474637657403946, -0.009179722517728806, 0.012636425904929638, -0.04260978102684021, 0.03491804376244545, 0.015421628020703793, -0.028172513470053673, 0.02252580225467682, -0.046669311821460724, 0.03308667987585068, -0.004051897209137678, 0.00...
147752962f2616488c21978fbe569385cb73ff34
subsection
4
25
Computation Needs for Modeling Optical Propagation
Such calculations are dominated primarily by a sequence of Fourier transforms of large 2D arrays of complex floating point numbers. Additional significant computation costs come from evaluations of complex exponential functions, and the general array operations for creating and manipulating the arrays representing coro...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.016283228993415833, 0.01135400403290987, -0.03824346140027046, 0.0013162404065951705, 0.010743574239313602, 0.013345533050596714, -0.006863526068627834, -0.04352368414402008, 0.007542629726231098, 0.04462245851755142, -0.027072586119174957, -2.3844935981287563e-7, -0.007473956327885389, ...
3cd09452f6ac2ba19c2de5d2418aafffe23c62b8
subsection
5
25
Achieving High Performance in Scientific Python
As the Python language has become widespread in scientific, engineering, and educational computing, , , there have been widespread efforts towards enabling high performance numerical work. In fact astronomers played a significant role, in the early development and establishment of the numpy library, which has now becom...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.05604681372642517, 0.02088407427072525, -0.03234056755900383, 0.03359147533774376, -0.001474012853577733, -0.024011345580220222, -0.037344202399253845, 0.021768862381577492, 0.04478863626718521, 0.01845853216946125, -0.015712633728981018, 0.005095164757221937, -0.03270668536424637, 0.01...
7ad9df13f1035c6dde660928859ccb1204a0eddc
subsection
6
25
Achieving High Performance in Scientific Python
OpenCL works on a wider range of hardware, in particular the AMD GPUs available in typical Apple computers which are often used by many astronomers.Previous authors have implemented diffraction simulations directly in CUDA. We have combined the user friendly POPPY optical system and wavefront classes with optional high...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.040247902274131775, 0.010512055829167366, -0.030025728046894073, 0.015287489630281925, 0.03377894312143326, -0.031093716621398926, -0.004859346896409988, -0.016370734199881554, 0.0508972704410553, 0.013929618522524834, -0.02203107252717018, -0.009253355674445629, -0.029003510251641273, ...
01b924635f874599119eef158d494db6bd73f133
subsection
7
25
Profiling Enables Prioritization of Optimization Efforts
Efficiently targeting optimization work requires an accurate understanding of which parts of program dominate the costs.Hence the famous aphorism attributed to Donald Knuth: “Premature optimization is the root of all evil”. In order to decrease the overall run-time of POPPY calculations we therefore ran a set of test c...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.009505853056907654, 0.018050439655780792, -0.018645508214831352, 0.0002555747050791979, -0.014068052172660828, -0.01486147753894329, 0.021132593974471092, -0.018050439655780792, -0.010406086221337318, 0.0675632655620575, -0.06451162695884705, 0.01178695261478424, -0.03353750333189964, 0...
a7846c45a88bbc7832119ce2f6d1b8291ee90043
subsection
8
25
Accelerating the Discrete Fast Fourier Transform: GPUs and/or Intel MKL
The first area to optimize is the calculation of 2D Fourier transforms of large complex arrays. The default FFT option provided with NumPy is implemented via an interface to the FFTPACK C library. A generally faster library, FFTW offers parallelized computation of the discrete Fourier transform in O(N\log N) for any N ...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.021739935502409935, -0.004370871465653181, -0.03252599760890007, 0.04201528802514076, 0.009008724242448807, -0.008131499402225018, 0.011434443295001984, -0.022823119536042213, 0.0370112881064415, 0.04634801670908928, -0.011541236191987991, -0.001389258191920817, -0.004664551466703415, 0...
f879f9285942ae704b7c02232936fbe9ca7a6a76
subsection
9
25
Accelerating the Discrete Fast Fourier Transform: GPUs and/or Intel MKL
That said, ensuring that you have installed and are using a version of numpy that uses MKL can still be somewhat opaque and confusing. Users should observe the number of cores in use during FFT operations and check that conda has installed both the mkl and mkl_fft packages, and that numpy.__config__.show() reports that...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.02706320770084858, -0.005671221762895584, -0.02239503338932991, 0.017345471307635307, -0.003981678280979395, -0.029259994626045227, 0.033134885132312775, 0.0009196189348585904, 0.029214229434728622, 0.011617042124271393, -0.01443167682737112, 0.01164755318313837, -0.01884050853550434, 0...
c5e569e68e25403240eb30ac2cf20d80e0160102
subsection
10
25
Accelerating Evaluations of Exponential Expressions: NumExpr
After optimizing FFT runtime, the next most time-consuming operation is evaluations of exponential functions. This occurs both as the exponential term in the quadratic phase factor,\exp [i(x^2 + y^2)/z],where x, y and are N\times N arrays and z is a real number, and also in evaluating the complex phasor of a given opti...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.011471307836472988, 0.02315617725253105, -0.012302673421800137, 0.047258127480745316, -0.016886619850993156, -0.022256169468164444, 0.002844945527613163, 0.0009000095305964351, 0.054824311286211014, 0.031942710280418396, -0.02407144196331501, 0.01313403807580471, -0.014117946848273277, ...
1469ab16fac0da3355983dce74ac9c1190895ec8
subsection
11
25
Accelerating Fourier Array Shifting on the GPU
The FFT algorithm imposes certain fixed relationships on the locations of spatial frequencies within the output array, in particular locating the origin in the extreme corners of the array rather than in the center. Shifting the array contents to relocate the zero-frequency origin to the center of a Fourier transformed...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.020268449559807777, -0.02693811245262623, -0.041971564292907715, 0.058210745453834534, 0.011439158581197262, -0.0072114779613912106, 0.004548191092908382, 0.0033748953137546778, 0.03720970079302788, 0.038155969232320786, -0.033333051949739456, 0.010172381065785885, -0.0007497647311538458,...
1def2c9589242ff692566f32b4cebef11760f072
subsection
12
25
Reproducibility
The benchmarking results and figures reported here were generated in a Jupyter notebook which the reader is invited to review and test on other system. Benchmarking results were measured using the IPythonversion 6.1.0 in Python 3.6 %timeit magic command on default settings. For each configuration a mean and standard de...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.05540844798088074, 0.012997796759009361, -0.04973335564136505, 0.01017550565302372, -0.007482886780053377, -0.037010159343481064, -0.011388327926397324, 0.016231991350650787, 0.005167844705283642, 0.002564852824434638, -0.030221402645111084, 0.0420750267803669, -0.021495182067155838, 0....
7cd1085b61d3c4a472197d9a713bf143ffe0208f
subsection
13
25
Fresnel Optical System Run Times
Measured mean unoptimized run times for the Fresnel coronagraphic test system, Appendix , are plotted and tabulated in Fig. REF . The runtime increases approximately as the area of the array (\propto N^2). Notably, the N=2800 runs faster than the next power of two, indicating significant speed gains maybe found by not ...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.040558360517024994, -0.004684505984187126, -0.04287772625684738, -0.003355067688971758, -0.0391240194439888, 0.009231681004166603, -0.00864421110600233, 0.042328402400016785, 0.0196840800344944, 0.0594794936478138, -0.013649155385792255, 0.005630562547594309, -0.01371019147336483, 0.017...
ff2fc308baa082defab7863e0064d02ffe7b3fbe
subsection
14
25
Conclusions
In the initial, pre-optimization code state, calculation times were typically dominated by the FFTs (in plain NumPy or FFTW). After the optimizations described in this paper, the FFT has been accelerated enough that the calculations of complex exponentials are often a more substantial contributor.In the era of readily ...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.03547009825706482, -0.002781594404950738, -0.028403550386428833, 0.030631879344582558, 0.005109129007905722, -0.024145307019352913, 0.019474975764751434, -0.004311662167310715, 0.03559219837188721, 0.0623931847512722, -0.029838228598237038, -0.0014031979953870177, -0.0052999104373157024, ...
2a57c5e9b283ca10184c99b0956fe601ec28331e
subsection
15
25
Summary
For a realistic 10 plane optical system:An approximately 3\times speed-up was realized using optimized math libraries and a 5\times speed up was found using research-grade GPUs for some calculations. NumExpr library’s chunked, multicore array math provides significant speed gains. FFTW and Intel MKL-FFT provide large...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.048318445682525635, -0.002489559818059206, -0.030965927988290787, 0.025044400244951248, 0.022999336943030357, -0.0131479287520051, 0.01695571467280388, 0.0017226609634235501, 0.038703594356775284, 0.026356903836131096, -0.03040124662220478, 0.008638105355203152, -0.03940563276410103, 0....
0792b0dca163983d0a5eefb003d82eb66ff2948a
subsection
16
25
Summary
\ref{fig:talbot}.\begin{lstlisting}[frame=single]import poppyimport astropy.units as uwf_f = poppy.FresnelWavefront(beam_radius=2*u.cm,wavelength=0.5*u.um,npix=256,oversample=8)sineWFE = poppy.wfe.SineWaveWFE(spatialfreq=500,amplitude=5e-9)wf_f* = sineWFEwf_f *= poppy.CircularAperture(radius=wf_f.diam/2)Z_t = 2*((1/sin...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.04712185263633728, 0.01409993227571249, -0.02397293597459793, -0.03299139812588692, 0.015885313972830772, -0.021683987230062485, 0.01196357887238264, 0.0252089686691761, -0.0189525056630373, 0.04580951854586601, -0.026246625930070877, 0.05722375214099884, -0.010544429533183575, -0.01430...
8811f30fa0e99dd5e1c23ed309c680e1200ddafd
subsection
17
25
Summary
It makes use of data files on optical elements available in the WebbPSF reference data (\url{http://www.stsci.edu/~mperrin/software/webbpsf/webbpsf-data-0.7.0.tar.gz}).\begin{small}\begin{lstlisting}[frame=single]import os#export environment variable:os.environ['WEBBPSF_PATH'] = os.path.expanduser('~/STScI/WFIRST/webbp...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.06182674691081047, -0.007385031320154667, -0.061460547149181366, 0.013412071391940117, 0.013953741639852524, 0.00725152064114809, 0.012313471175730228, -0.013907967135310173, 0.011603958904743195, 0.031737323850393295, -0.050962816923856735, 0.05056610330939293, -0.025084692984819412, 0...
2ff73f4f0d497d64c57e6ea8e6bef3c089da3225
subsection
18
25
Summary
2016).\newblock \url{http://adsabs.harvard.edu/abs/2016ascl.soft02018P}.\bibitem{the_astropy_collaboration_astropy_2013}{The Astropy Collaboration}, Robitaille, T.~P., Tollerud, E.~J., Greenfield,P., Droettboom, M., Bray, E., Aldcroft, T., Davis, M., Ginsburg, A.,{Price-Whelan}, A.~M., Kerzendorf, W.~E., Conley, A., Cr...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.053887367248535156, 0.026333408430218697, -0.026058783754706383, -0.020032308995723724, 0.014783935621380806, 0.014448283240199089, -0.007006730884313583, -0.03188692033290863, 0.03475521504878998, 0.017057213932275772, 0.0053589860908687115, 0.014898362569510937, -0.006369755603373051, ...
8d596d4ece898a5a4be56f6e4742315d9952d0e3
subsection
19
25
Summary
2007).\newblock \url{http://www.opticsexpress.org/abstract.cfm?URI=oe-15-24-15935}.\bibitem{lawrence_optical_1992}Lawrence, G.~N., ``Optical {{Modeling}},'' in [{\em Applied {{Optics}} and{{Optical Engineering}}.}{\nolinebreak\hspace{0.1em}]},  Shannon, R.~R. andWyant., J.~C., eds.,  {\bf XI}, {Academic Press}, New Yor...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.07072929292917252, -0.0060873571783304214, -0.03158102557063103, -0.006358160637319088, -0.003346902085468173, 0.015203136019408703, -0.007498586550354958, -0.016126155853271484, 0.00639630202203989, 0.025508925318717957, -0.02227453887462616, 0.027080347761511803, -0.0049888864159584045,...
3d4e5a6e9767b56677d0d76079fccd08f88afe43
subsection
20
25
Summary
2017).\newblock\url{https://www.spiedigitallibrary.org/conference-proceedings-of-spie/10400/1040010/Optical-tolerances-for-the-PICTURE-C-mission--error-budget/10.1117/12.2274105.short}.\bibitem{lumbres_modeling_2018}Lumbres, J. and {et al.}, ``Modeling coronagraphic extreme wavefront controlsystems for high contrast im...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.07390223443508148, -0.0066212983801960945, -0.05165833607316017, -0.004359530285000801, 0.017407607287168503, 0.01380708534270525, -0.024028906598687172, -0.005293987691402435, -0.013532469980418682, 0.060995280742645264, -0.007918097078800201, 0.03737829998135567, 0.012708621099591255, ...
2774b2280a69fd702751de8b6f505d551a4d0c81
subsection
21
25
Summary
Rep. JPL Document D-74425, {JPL} (2013).\newblock \url{available\%0020from\%0020exep.jpl.nasa.gov/technology}.\bibitem{macintosh_gemini_2008}Macintosh, B.~A., Graham, J.~R., Palmer, D.~W., Doyon, R., Dunn, J., Gavel,D.~T., Larkin, J., Oppenheimer, B., Saddlemyer, L., and Sivaramakrishnan, A.,``The {{Gemini Planet Image...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.07100474089384079, -0.023978600278496742, -0.04600350186228752, 0.0073607126250863075, -0.013095886446535587, 0.003741409396752715, -0.010539288632571697, -0.03696764260530472, -0.012790621258318424, 0.008463484235107899, 0.013256151229143143, 0.017049074172973633, -0.01807171292603016, ...
08a28ac195b724836a081c617558c420abce33f6
subsection
22
25
Summary
2017).\newblock\url{https://www.spiedigitallibrary.org/conference-proceedings-of-spie/10398/103980A/The-Large-UV-Optical-Infrared-LUVOIR-surveyor--Decadal-Mission/10.1117/12.2273853.short}.\bibitem{cooley_1965}Cooley, J.~W. and Tukey, J.~W., ``{An algorithm for the machine calculation ofcomplex Fourier series},'' {\em ...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.03131168708205223, 0.0002839624648913741, -0.05337635800242424, 0.015823693946003914, 0.0009050557855516672, 0.024094130843877792, 0.008941836655139923, -0.015640584751963615, 0.003906331490725279, 0.04876810684800148, 0.02427724003791809, 0.00995656754821539, -0.015442216768860817, 0.0...
7dd8fc20fade39460e36ab7bb89c2950f76e46d8
subsection
23
25
Summary
Opt. A: Pure Appl. Opt.}~{\bf10}(7),  075308 (2008).\newblock \url{http://stacks.iop.org/1464-4258/10/i=7/a=075308}.\bibitem{pavlyk_accelerating_2017}Pavlyk, O., Nagorny, D., {Guzman-Ballen}, A., Malakhov, A., Liu, H., Totoni,E., Anderson, A., and Maidanov, S., ``Accelerating {{Scientific Python}} with{{Intel Optimizat...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.05353555083274841, 0.02182321436703205, -0.038366127759218216, -0.000544149661436677, -0.008172259666025639, -0.018771016970276833, 0.007649571169167757, -0.03479505702853203, 0.037542033940553665, 0.031193463131785393, -0.02772921696305275, 0.007397764828056097, -0.01782483607530594, 0...
1b694c5e7add74921ae4c618380dcdf4d331bab0
subsection
24
25
Summary
2014).\bibitem{douglas_douglase/poppy_benchmarking_2018}Douglas, E.~S., ``Douglase/poppy\_benchmarking: {{Initial}} release of notebookfor {{SPIE AST}} 2018.'' \url{https://zenodo.org/record/1286650} (June 2018).\bibitem{yamamoto_computational_2004}Yamamoto, A., Kitamura, Y., and Yamane, Y., ``Computational efficiencie...
{ "cite_spans": [] }
10.1117/12.2313441
1806.06467
Accelerated Modeling of Near and Far-Field Diffraction for Coronagraphic Optical Systems
[ "Ewan S. Douglas", "Marshall D. Perrin" ]
[ "astro-ph.IM" ]
2,018
en
Physics
[ -0.06567990034818649, -0.017335588112473488, -0.02647644840180874, 0.025316672399640083, -0.0017873509787023067, 0.0018760509556159377, 0.03482377901673317, -0.021623704582452774, 0.02252405695617199, 0.05887385457754135, -0.0006910009542480111, 0.040195368230342865, 0.00025799276772886515, ...
14f52a8371480147be5f9bd272275fabe11146c1
abstract
0
23
Abstract
In this paper, we present an analysis of more than 500K comments from open-source repositories of software systems. Our aim is to empirically determine how developers interact with each other under certain psychological conditions generated by politeness, sentiment and emotion expressed in developers' comments. Develop...
{ "cite_spans": [] }
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.06788276135921478, -0.03427712991833687, -0.0022148124407976866, 0.025623910129070282, -0.006398346740752459, -0.03964914754033089, -0.002548655727878213, -0.02214430831372738, 0.05149200186133385, 0.007100371643900871, -0.010545635595917702, 0.008500605821609497, -0.02324312925338745, ...
407752cc719d1595a65a29633eba496718a07559
subsection
1
23
Introduction
The study of emotions and psychological status of developers and people involved in the software-building system is gaining the attention of both practitioners and researchers . Feldt et al. focused on personality as one important psychometric factor and presented initial results from an empirical study investigating t...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.17705/1jais.00251", "end": 177, "openalex_id": "https://openalex.org/W2615021347", "raw": "W. Ke and P. Zhang. The effects of extrinsic motivations and satisfaction in open source software development. Journal of the Association for Info...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.052129633724689484, -0.03519055247306824, -0.005074093118309975, -0.013551262207329273, 0.010247379541397095, -0.0631781816482544, 0.013932773843407631, -0.014779726974666119, 0.01620657742023468, -0.002065880922600627, 0.00026658063870854676, 0.010987509973347187, -0.00015534642443526536...
3a4daa9f64583329a95ed84060a39ad3310ccde2
subsection
2
23
Introduction
Section 3 describes the dataset used for this study and our approach/rationale to evaluate affectiveness of comments posted by developers. In section 4, we present the methodology used for building the Markov chains. In Section 5, we present the results and elaborate on the research questions we address in Section 6. S...
{ "cite_spans": [] }
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ 0.0162831861525774, -0.03906743973493576, 0.0062530795112252235, 0.011453169398009777, -0.020205190405249596, -0.022540081292390823, 0.04651467129588127, 0.0008975209784694016, 0.0021803751587867737, 0.009309038519859314, -0.009667664766311646, 0.036717288196086884, -0.025012318044900894, ...
fdcea9f2d3751e67cff5c9834317c93c1effead7
subsection
3
23
Related Work
Several recent studies have demonstrated the importance and relationship of productivity and quality to human aspects associated with the software development process. Ortu et al. studied the effect of politeness , and emotions on the time required to fix any given issue. The authors demonstrated that emotions did have...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.7717/peerj-cs.73", "end": 274, "openalex_id": "https://openalex.org/W2213700299", "raw": "G. Destefanis, M. Ortu, S. Counsell, S. Swift, M. Marchesi, and R. Tonelli. Software development: do good manners matter? PeerJ Computer Science, 2...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.02725749835371971, -0.01916876807808876, -0.0047196983359754086, 0.02489192597568035, 0.0022759095299988985, -0.026479149237275124, 0.033575866371393204, -0.020130258053541183, 0.000815550156403333, 0.02663176693022251, -0.01301064807921648, -0.013476131483912468, -0.016986336559057236, ...
5f6982023c40ccd49d864eac35d6df96311116a7
subsection
4
23
Related Work
Jurado and Rodriguez  gathered the issues of nine high profile software projects hosted on GitHub. Through an analysis of the occurrence of Ekman's  basic emotions among the projects and issues, the authors discovered that in open source projects, sentiments expressed in the form of joy are almost one magnitude of orde...
{ "cite_spans": [ { "arxiv_id": "", "doi": "", "end": 98, "openalex_id": "", "raw": "F. Jurado and P. Rodriguez. Sentiment Analysis in monitoring software development processes: An exploratory case study on GitHub's project issues. Journal of Systems and Software, 104:82–89, 2015.", ...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.051244448870420456, -0.03839518502354622, -0.0013181177200749516, -0.003378272755071521, 0.014993350021541119, -0.0194112379103899, -0.0051313117146492004, 0.009728509932756424, 0.004425518214702606, 0.014108246192336082, -0.013864080421626568, -0.0030578041914850473, -0.02685831673443317...
f932d7964c7a3d3b8402a752f1d745018bd49182
subsection
5
23
Related Work
This would permit the team members to feel satisfied with the work carried out by the team without reducing the quality of the software products developed.Hidden Markov Models (HMMs) have been largely used in application for speech recognition, handwriting recognition, bioinformatic, textures and patterns detection. Ma...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1007/s12193-009-0026-4", "end": 1083, "openalex_id": "https://openalex.org/W2021435405", "raw": "N. Novielli. Hmm modeling of user engagement in advice-giving dialogues. Journal on Multimodal User Interfaces, 3(1-2):131–140, 2010.", ...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.013659166172146797, -0.03452182561159134, -0.002323584398254752, 0.016039982438087463, 0.007401894312351942, 0.004200765863060951, 0.006547242868691683, -0.015536347404122353, 0.019260186702013016, 0.02852400206029415, -0.06214538961648941, -0.0015748102450743318, -0.00038154094363562763,...
4534d059afb190054cc81c061234e1b94a91fd35
subsection
6
23
Dataset
We built our dataset from fifteen open-source, publicly available projects from a dataset proposed by Ortu et al. , extracted from the Jira ITS of four popular open source ecosystems (as well as the tools and infrastructure used for extraction), i.e., the Apache Software Foundation, Spring, JBoss and CodeHaus communiti...
{ "cite_spans": [ { "arxiv_id": "", "doi": "", "end": 324, "openalex_id": "", "raw": "M. Ortu, G. Destefanis, A. Murgia, M. Marchesi, R. Tonelli, and B. Adams. The Jira repository dataset: Understanding social aspects of software development. In Proceedings of the 11th International ...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.009851214475929737, -0.04611985757946968, -0.0164670180529356, 0.06186959147453308, 0.0015404445584863424, -0.04123622179031372, 0.01232355646789074, -0.009767276234924793, 0.005951934028416872, 0.017260609194636345, -0.01761162094771862, 0.018573086708784103, -0.023563554510474205, 0.0...
f9fa01a513249c08db8dc2a4f5148a49b2eb15b1
subsection
7
23
Affective Metrics
Henceforward, we consider the term “affective metric” as a definition indicating all those measures linked to human aspects and obtained from text written by developers (i.e., comments posted on issue tracking systems). This study is based on the affective metrics sentiment, politeness and emotions used by Ortu et al. ...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1109/msr.2015.35", "end": 388, "openalex_id": "https://openalex.org/W4249127983", "raw": "M. Ortu, B. Adams, G. Destefanis, P. Tourani, M. Marchesi, and R. Tonelli. Are bullies more productive? Empirical study of affectiveness vs. issue ...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.022208238020539284, -0.06612102687358856, -0.010997275821864605, -0.0021254275925457478, -0.0030335995834320784, -0.06236622855067253, -0.009219090454280376, -0.00947093591094017, 0.02480301633477211, -0.007566827815026045, -0.01444680243730545, -0.002239903202280402, 0.02152138575911522,...
0c5d4bb02b877611e3f3f7ff230af08ca3f9f316
subsection
8
23
Sentiment.
We measured sentiment using the SentiStrengthhttp://sentistrength.wlv.ac.uk tool, which is able to estimate the degree of positive and negative sentiment in short texts, even for informal language. SentiStrength, by default, detects two sentiment polarizations:Negative: -1 (slightly negative) to -5 (extremely negative)...
{ "cite_spans": [] }
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.07668235898017883, -0.015286103822290897, 0.012462410144507885, -0.004113434813916683, 0.0020815201569348574, -0.09927190840244293, 0.027824830263853073, -0.0017495453357696533, 0.028069041669368744, 0.027076931670308113, -0.017277952283620834, 0.01116503681987524, -0.011989250779151917, ...
8d791ebf00e541496a9bea094cc92f7e573638ad
subsection
9
23
Politeness.
To evaluate the level of politeness of comments related to a given issue, we used the tool developed by Danescu et al. ; the tool uses a machine learning approach and calculates the politeness of sentences providing, as a result, one of two possible labels: polite or impolite. The tool provides a level of confidence re...
{ "cite_spans": [ { "arxiv_id": "", "doi": "", "end": 277, "openalex_id": "https://openalex.org/W2963790016", "raw": "C. Danescu-Niculescu-Mizil, M. Sudhof, D. Jurafsky, J. Leskovec, and C. Potts. A computational approach to politeness with application to social factors. In Proceedin...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.04085412994027138, -0.027154723182320595, -0.005697915330529213, 0.02753611095249653, 0.013966375961899757, -0.03530114144086838, 0.026269907131791115, -0.0015036165714263916, 0.03966420516371727, 0.0599844790995121, -0.013554478995501995, 0.01734546199440956, -0.008482037112116814, -0....
b8560c9a71a313e36097277c0072f80ab3057ebb
subsection
10
23
Emotion.
The presence of emotion in software engineering artifacts have been analysed by Destefanis et al. and Ortu et al. .Ortu et al. provided a machine learning based approach for emotion detection in developers' comments based on Parrott’s emotional framework, which consists of six basic emotions: joy, sadness, love, anger...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.7717/peerj-cs.73", "end": 116, "openalex_id": "https://openalex.org/W2213700299", "raw": "G. Destefanis, M. Ortu, S. Counsell, S. Swift, M. Marchesi, and R. Tonelli. Software development: do good manners matter? PeerJ Computer Science, 2...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.00016006117220968008, -0.03557529300451279, -0.016475694254040718, -0.0005839908844791353, 0.007436945103108883, -0.02648315206170082, 0.02805444598197937, -0.004839735105633736, 0.01795545592904091, 0.013111906126141548, -0.0025037715677171946, -0.03133432939648628, 0.015789207071065903,...
823e7ceb8368f7ae631a1f3752853386c4d936b8
subsection
11
23
Affective Markov Chains
Markov Chains (MC) have been used to model behavioural aspects in social sciences , . Markov Chains provide a unique representation where the transitions between the different states of Sentiment, Politeness and Emotion, extracted from developers comments, can be modelled; it implicitly assumes “memorylessness” (throug...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1007/978-94-011-5014-9", "end": 85, "openalex_id": "https://openalex.org/W1746680969", "raw": "M. I. Jordan. Learning in Graphical Models:[proceedings of the NATO Advanced Study Institute: Ettore Mairona Center, Erice, Italy, September 2...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.012395614758133888, -0.04454793035984039, -0.023799579590559006, 0.004107716027647257, 0.020427972078323364, 0.002831921214237809, -0.00481331255286932, 0.00962662510573864, -0.003823570441454649, 0.018063271418213844, -0.024928534403443336, 0.03322787582874298, -0.004717961419373751, 0...
93db0de6efe78e341c72519d369360c15a419f53
subsection
12
23
Affective Markov Chains
Let us also consider other two transition sequences obtained from other two issues reports, [I,I] and [P,P]. Finally, we counted the frequency of each politeness-transition obtaining the corresponding MC. In our example, if we consider the polite state, we have two transition, P-N and P-P; hence, the transition from po...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1109/msr.2015.35", "end": 831, "openalex_id": "https://openalex.org/W4249127983", "raw": "M. Ortu, B. Adams, G. Destefanis, P. Tourani, M. Marchesi, and R. Tonelli. Are bullies more productive? Empirical study of affectiveness vs. issue ...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.030318638309836388, -0.030196571722626686, -0.019820790737867355, 0.02148396708071232, 0.013877606019377708, -0.046874113380908966, 0.014404023997485638, 0.033995937556028366, 0.02320817857980728, 0.02697702683508396, -0.004825500771403313, -0.005000973120331764, 0.009254280477762222, -...
6b0db3aeb59487db5a9cdcca662d71e7ddc0ab9a
subsection
13
23
Results
Existing research has already explored links between productivity (as measured by issue fixing time) and discrete emotions, sentiment and politeness , . The dynamic of an issue resolution involves complex interactions between different stakeholders such as users, developer and managers. A model able to describe such in...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.7717/peerj-cs.73", "end": 152, "openalex_id": "https://openalex.org/W2213700299", "raw": "G. Destefanis, M. Ortu, S. Counsell, S. Swift, M. Marchesi, and R. Tonelli. Software development: do good manners matter? PeerJ Computer Science, 2...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.04091464728116989, -0.03609398379921913, 0.006117365323007107, 0.03215812146663666, 0.0048626190982759, -0.05629196763038635, 0.00011250765965087339, -0.033195480704307556, 0.04857279732823372, 0.0038805606309324503, -0.011540615931153297, 0.001197539153508842, -0.012295751832425594, -0...
a554b0f7513716533e684c71cf849cadf5f98ad0
subsection
14
23
Politeness
Figure REF shows the general Politeness' MC describing the probability of changing from a state to another. Figures REF , REF , REF , show the boxplots and beanplots obtained considering all the projects in the corpus. Each single boxplot and beanplot shows the statistics for an array of 15 probabilities (one probabili...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.18637/jss.v028.c01", "end": 220, "openalex_id": "https://openalex.org/W2145680370", "raw": "P. Kampstra et al. Beanplot: A boxplot alternative for visual comparison of distributions. Journal of statistical software, 28(1):1–9, 2008.", ...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.05726011097431183, -0.02173198200762272, -0.043219782412052155, 0.008996491320431232, 0.009400913491845131, -0.07801537215709686, -0.018801826983690262, 0.027363372966647148, 0.030583491548895836, 0.006131196394562721, -0.001402124878950417, 0.0212588831782341, -0.008431825786828995, 0....
2ca51e1a29fec53414dfb7e7659bf0d01b2a4ffb
subsection
15
23
Sentiment
Figures REF , REF , REF , show the boxplots and beanplots obtained considering all the projects in the corpus. Each single boxplot and beanplot shows the statistics for an array of 15 probabilities (one probability for project). Figure REF shows the general Sentiment MC which describes the probability of changing from ...
{ "cite_spans": [] }
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.07446828484535217, -0.029360037297010422, -0.01003338024020195, 0.006767763290554285, 0.01067429594695568, -0.06921888142824173, 0.0008917500381357968, 0.04950309544801712, 0.014054362662136555, -0.0017920838436111808, -0.024309011176228523, 0.003488793270662427, -0.010735335759818554, ...
dc8de9209932e49a389f5a7766f5aa0a1967966a
subsection
16
23
Sentiment
It is interesting to analyze if the same behaviours occur for emotions.We built the MCs for emotions as presented in Sec. to analyze the probabilities of shifting from an emotion to another when developers communicate. [Table: Transition Matrix for Emotion MC][Table: Transition Matrix for Emotion MC, with absolute tran...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1145/2597073.2597086", "end": 1171, "openalex_id": "https://openalex.org/W2000471262", "raw": "A. Murgia, P. Tourani, B. Adams, and M. Ortu. Do developers feel emotions? An exploratory analysis of emotions in software artifacts. In Proce...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.036013342440128326, -0.04184262081980705, -0.01707581803202629, -0.011513588018715382, -0.00267620338127017, -0.0536232590675354, -0.005806388799101114, 0.020890790969133377, 0.023393413051962852, 0.0167095810174942, -0.0029566038865596056, -0.00854553934186697, 0.0008688600501045585, 0...
12d81b7d9f98901e827f435712f5d240408d8102
subsection
17
23
Discussion
In this paper, we presented MC models describing how developers interacted with each other, analyzing comments posted on an issue tracking system. We selected the 15 most commented projects from the Jira issue report dataset of Ortu et al. , , which contained 700,000 issues from 1000 open source projects and two millio...
{ "cite_spans": [ { "arxiv_id": "", "doi": "", "end": 337, "openalex_id": "", "raw": "M. Ortu, G. Destefanis, A. Murgia, M. Marchesi, R. Tonelli, and B. Adams. The Jira repository dataset: Understanding social aspects of software development. In Proceedings of the 11th International ...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.048800308257341385, -0.057193104177713394, -0.033479634672403336, 0.04904446005821228, 0.0008421409875154495, -0.02490372210741043, -0.039186738431453705, 0.0012551047839224339, 0.044039301574230194, 0.0015240558423101902, -0.018998242914676666, 0.0009995059808716178, -0.03631792590022087...
cb137e0d3ac189729100edb90e3927be03b9eae0
subsection
18
23
Discussion
On the other hand, New Feature issue typologies were those with higher politeness; Trivial issue typologies were those characterised by lower politeness (these might be related to minor programming mistakes and/or poor knowledge of programming practices). A further factor could be related to the number of developers in...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1109/wetsom.2015.10", "end": 631, "openalex_id": "https://openalex.org/W4238509251", "raw": "M. Ortu, G. Destefanis, M. Kassab, and M. Marchesi. Measuring and understanding the effectiveness of Jira developers communities. In Proceedings...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.05061468109488487, -0.04481794312596321, -0.02202760800719261, 0.03172951564192772, 0.0009505507186986506, -0.029182003811001778, -0.00034799499553628266, 0.030097277835011482, 0.008923926390707493, 0.0008957296377047896, -0.03996698930859566, 0.010815493762493134, -0.019678402692079544, ...
ca8138072ef02fcf20ac08be86e7f2c933c471d0
subsection
19
23
Threats to validity
Several threats to validity need to be considered. Threats to external validity are related to generalisation of our conclusions. With regard to the system studied in this work, we considered only open-source systems and this could affect the generality of the study; our results are not meant to be representative of al...
{ "cite_spans": [ { "arxiv_id": "", "doi": "", "end": 827, "openalex_id": "https://openalex.org/W2963790016", "raw": "C. Danescu-Niculescu-Mizil, M. Sudhof, D. Jurafsky, J. Leskovec, and C. Potts. A computational approach to politeness with application to social factors. In Proceedin...
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.04320097714662552, 0.007623477838933468, -0.020959796383976936, -0.026390427723526955, -0.021905580535531044, -0.0658997967839241, 0.005831064190715551, -0.013546069152653217, 0.026848066598176956, 0.019556375220417976, -0.01615460403263569, 0.020975051447749138, -0.010220570489764214, ...
d23e4dbd18153677b95a21c2ab45bba27f4da017
subsection
20
23
Conclusions and future work
This paper presented an analysis of more than 500K comments from open-source issue tracking system repositories. We empirically determined how developers interacted with each other under certain psychological conditions generated by politeness, sentiment and emotions of a comment posted on a issue tracking system. Resu...
{ "cite_spans": [] }
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.04176700860261917, -0.08084921538829803, 0.006208609323948622, 0.029090462252497673, -0.00028244787245057523, -0.04060766100883484, 0.009724787436425686, -0.00450772512704134, 0.05360455438494682, 0.017634281888604164, -0.017130879685282707, 0.008458658121526241, -0.002280557993799448, ...
34d631749d4eacb6c942bacf52c9ca6597c0b4a7
subsection
21
23
Appendix
In this section we present all the matrices for all the fifteen systems in our corpus. P is the transition matrix for Politeness, S for Sentiment and E for Emotions.
{ "cite_spans": [] }
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ 0.014182107523083687, -0.007106311619281769, -0.026197610422968864, 0.018477173522114754, 0.00027821611729450524, -0.08739656955003738, 0.022596774622797966, 0.01302251685410738, 0.03729001805186272, 0.006023009307682514, -0.003846868174150586, 0.029142362996935844, -0.013526023365557194, ...
1f3d1d6c47426203ee0df7a2fb287c9db734ebb2
subsection
22
23
Appendix
The states for P, S and E are the following:P=\begin{bmatrix} polite&neutral&impolite\\ \end{bmatrix}S=\begin{bmatrix} positive&neutral&negative\\ \end{bmatrix}E=\begin{bmatrix} sadness&anger&joy&love&neutral\\ \end{bmatrix}The following matrices are the transition matrices for Politeness, Sentiment and Emotion for HBa...
{ "cite_spans": [] }
1803.06502
Analysing Developers Affectiveness through Markov chain Models
[ "Giuseppe Destefanis", "Marco Ortu", "Steve Counsell", "Stephen Swift", "Roberto Tonelli", "Michele Marchesi" ]
[ "cs.SE" ]
2,018
en
Computer Science
[ -0.054837435483932495, 0.0011271884432062507, -0.021376529708504677, -0.020308464765548706, 0.012862537056207657, -0.03951835259795189, 0.007735831663012505, -0.0009526745416224003, 0.006137550808489323, 0.025191040709614754, -0.007472630124539137, 0.0300888754427433, -0.003127900417894125, ...
efb1dec6e0d934636cca0d93e775b483ad8593cd
abstract
0
57
Abstract
We define operators on semistandard shifted tableaux and use Stembridge's local characterization for regular graphs to prove they define a crystal structure. This gives a new proof that Schur $P$-polynomials are Schur positive. We define queer crystal operators (also called odd Kashiwara operators) to construct a conne...
{ "cite_spans": [] }
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ -0.035972245037555695, 0.007292083464562893, -0.04707817733287811, 0.015369820408523083, -0.006369131617248058, -0.03034299984574318, 0.025918932631611824, 0.007612446788698435, 0.03722318634390831, 0.045247528702020645, -0.011891587637364864, -0.035209473222494125, -0.0033485612366348505, ...
09c9cc3bb547ab9b09a841ded09dac6fcf970ae0
subsection
1
57
Introduction
Kashiwara introduced crystal bases to study representations of quantized universal enveloping Lie algebras. Canonical bases, developed independently by Lusztig , study the same problem from a geometric viewpoint. A crystal graph is a directed, colored graph with vertex set given by the crystal basis and directed edges ...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1215/s0012-7094-91-06321-0", "end": 108, "openalex_id": "https://openalex.org/W1988032111", "raw": "M. Kashiwara, On crystal bases of the Q-analogue of universal enveloping algebras, Duke Math. J. 63 (1991), no. 2, 465–516. MR 1115118", ...
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ 0.02141205593943596, -0.004029068164527416, -0.05909300222992897, 0.005356829613447189, 0.009675868786871433, -0.05201160907745361, 0.049905505031347275, -0.0024857367388904095, 0.04196946322917938, -0.0003743866691365838, -0.004761626478284597, 0.02998908795416355, -0.014139893464744091, ...
ef5994498513aef0070897d74bd72140124bd43a
subsection
2
57
Introduction
Lie superalgebras are algebras with a \mathbb {Z}/2\mathbb {Z} grading, allowing for two families of variables (one commuting and one not) to interact. Originally arising from mathematical physics in connection with supersymmetry, Lie superalgebras were formalized mathematically and classified by Kac . One well-studied...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1016/0001-8708(77)90017-2", "end": 303, "openalex_id": "https://openalex.org/W4213269858", "raw": "V. G. Kac, Lie superalgebras, Advances in Math. 26 (1977), no. 1, 8–96.", "source_ref_id": "86df74957b0ba42515380ada1e17187a942d7582...
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ -0.015005421824753284, 0.0017164309974759817, -0.07140353322029114, -0.006129566114395857, 0.019040942192077637, -0.0317959301173687, 0.008353297598659992, 0.02709672413766384, 0.02727981097996235, 0.024701349437236786, 0.004035519901663065, 0.005275164730846882, -0.03475582227110863, 0.01...
3009cec01a416744268ace44c355079f2b316546
subsection
3
57
Introduction
Our results and constructions were first announced in , where we conjectured that our axioms were sufficient. While that conjecture is false, we expect that a refinement might be true.
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.48550/arxiv.1802.07352", "end": 109, "openalex_id": "https://openalex.org/W2788559123", "raw": "Sami Assaf and Ezgi Kantarci Oguz, Crystal graphs for shifted tableaux, Sém. Lothar. Combin. 80B (2018), Art. 26, 12pp.", "source_ref_i...
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ -0.0029076349455863237, 0.016468966379761696, -0.03751688450574875, 0.045056894421577454, -0.023734237998723984, -0.06587586551904678, -0.02055949717760086, 0.0278095044195652, -0.007639219053089619, 0.030740033835172653, 0.00033388196607120335, -0.0045255315490067005, -0.035013724118471146,...
a9217874bd0c2e04448e8a953fba6389afaa843c
subsection
4
57
Crystals for the quantum general linear Lie algebra
Kashiwara , introduced crystal bases in his study of the representation theory of quantized universal enveloping algebra U_q(\mathfrak {g}) for Lie algebra \mathfrak {g}. In this section, we review the theory of crystal bases and crystal graphs, focusing solely on the case of U_q(\mathfrak {gl}(r)) to simplify the expo...
{ "cite_spans": [ { "arxiv_id": "", "doi": "", "end": 171, "openalex_id": "", "raw": "Masaki Kashiwara, Crystalizing the q-analogue of universal enveloping algebras, Comm. Math. Phys. 133 (1990), no. 2, 249–260.", "source_ref_id": "f14169fd1042fbf50587c71b729ae8bfb867c834", ...
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ 0.006549057550728321, 0.020963087677955627, -0.02367882989346981, 0.013090486638247967, 0.013777051120996475, -0.06200435757637024, 0.04052253067493439, 0.00034304361906833947, 0.005481068976223469, 0.009184700436890125, 0.013128628954291344, -0.015096778981387615, -0.01914750598371029, 0....
b288be820d2dec19ec15624876d96bcf5645a7e0
subsection
5
57
Crystal bases and crystal graphs
We use the language of root systems to define crystal bases of type A_{r+1}, though the exposition is self-contained and no familiarity with Lie theory is assumed; see for further details. Let \mathbf {e}_1, \mathbf {e}_2, \ldots , \mathbf {e}_{r+1} be the standard basis for V = \mathbb {R}^{r+1} with the usual inner p...
{ "cite_spans": [ { "arxiv_id": "", "doi": "", "end": 189, "openalex_id": "https://openalex.org/W2491288446", "raw": "Daniel Bump and Anne Schilling, Crystal Bases: Representations and Combinatorics, World Scientific, 2017.", "source_ref_id": "0f9ece08f5356971175d28011da422c6d6...
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ 0.003666929667815566, 0.00999204907566309, -0.046619392931461334, 0.04124962165951729, 0.02079261653125286, -0.05153151601552963, 0.0034552658908069134, 0.05473507568240166, 0.006761795375496149, 0.004744316451251507, -0.044758278876543045, 0.011311610229313374, -0.049090709537267685, 0.01...
763e86b23d9d08f9c7541f435fae8cce7beabc50
subsection
6
57
Crystal bases and crystal graphs
The weight lattice is \Lambda = \mathbb {Z}^{r+1}, and the dominant weights \Lambda ^{+} \subset \Lambda are those \lambda \in \Lambda such that \lambda _1 \ge \lambda _2 \ge \cdots \ge \lambda _{r+1} \ge 0.Definition 2.1 A crystal of dimension r+1 is a nonempty set \mathcal {B} not containing 0 together with crystal o...
{ "cite_spans": [] }
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ 0.023896506056189537, 0.014847573824226856, -0.039796989411115646, -0.004337536171078682, 0.028276005759835243, -0.024461111053824425, 0.029954560101032257, 0.044985249638557434, 0.00907945167273283, 0.022568922489881516, -0.015396918170154095, 0.003406701609492302, -0.04486317187547684, -...
ca35083c55db7b3a4769242c79dd403c4f092e66
subsection
7
57
Crystal bases and crystal graphs
The weight map is \mathrm {wt}\left(\,\raisebox {-0.3}{\vtop { {&\hbox{t}o 0pt{\usebox 2\hss }\vbox to 12{ \vss \hbox{t}o 12{\hss #\hss } \vss }\cr i\crcr }}}\,\right) = \mathbf {e}_i.Definition 2.2 The character of a crystal \mathcal {B} is the polynomial\mathrm {ch}(\mathcal {B}) = \sum _{b \in B} x_1^{\mathrm {wt}...
{ "cite_spans": [] }
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ 0.013982498086988926, 0.0009745031129568815, -0.044640250504016876, -0.03756127879023552, 0.013440895825624466, -0.013234933838248253, 0.03167230263352394, 0.059652555733919144, 0.007345960475504398, 0.011297370307147503, -0.0028033650014549494, 0.02454756200313568, 0.0022712978534400463, ...
e8df989a587a6a1b013e209cc0b7a8b83a97331a
subsection
8
57
Crystal bases and crystal graphs
The i-string through b is the maximal pathe_i^{\varepsilon _i} x {\stackrel{i}{\longrightarrow }} \cdots {\stackrel{i}{\longrightarrow }} e_i x {\stackrel{i}{\longrightarrow }} x {\stackrel{i}{\longrightarrow }} f_i x {\stackrel{i}{\longrightarrow }} \cdots {\stackrel{i}{\longrightarrow }} f_i^{\varphi _i} x .For examp...
{ "cite_spans": [] }
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ 0.022782709449529648, 0.00951441377401352, -0.05206604674458504, 0.0036070081405341625, 0.03003106079995632, -0.01048340369015932, -0.005607934202998877, 0.00986538641154766, 0.021348299458622932, 0.05823095887899399, -0.030320994555950165, 0.027757367119193077, -0.01052155252546072, 0.000...
21e4ec9a3e0e3d264ce887a24f71e97e8d351f75
subsection
9
57
Crystal bases and crystal graphs
Then \mathrm {ch}(\mathcal {B}(\lambda )) is precisely the character of the irreducible representation indexed by \lambda , which corresponds to the Schur polynomial s_{\lambda }(x_1,\ldots ,x_{r+1}) defined in §REF . Even more compelling is the remarkable fact that the following combinatorial procedure on crystals cor...
{ "cite_spans": [] }
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ 0.013404772616922855, 0.014167708344757557, -0.032836735248565674, 0.01330559141933918, -0.00026869625435210764, -0.0059089334681630135, 0.016113193705677986, 0.02568040043115616, 0.02712997794151306, 0.06365931779146194, -0.01078027579933405, 0.0438840351998806, -0.0007901148637756705, 0....
c4c83a4ffb510018344ab3db8d7152c24095e9a0
subsection
10
57
Crystals on Young tableaux
A partition \lambda is a weakly decreasing sequence of positive integers, \lambda = (\lambda _1,\lambda _2, \ldots , \lambda _{\ell }), where \lambda _1 \ge \lambda _2 \ge \cdots \ge \lambda _{\ell } > 0. By extending \lambda with trailing 0s until it has length r+1, we may identify partitions with dominant weights \La...
{ "cite_spans": [] }
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ -0.02457006648182869, 0.0006686186534352601, -0.03845749795436859, 0.023089759051799774, 0.009713569656014442, -0.0330856554210186, 0.051459793001413345, 0.016115522012114525, 0.04169280827045441, 0.04413455352187157, 0.006588898599147797, 0.01202559843659401, -0.03726714476943016, 0.05646...
ccf6a8b4ddcdef47b7553761be47b4d48cf25f58
subsection
11
57
Crystals on Young tableaux
This was done by Kashiwara and Nakashima and Littelman , though our presentation is again simplified to the case of the general linear group.For a word w of length k, a positive integer r \leqslant k, and a positive integer i, definem_i(w,r) = \mathrm {wt}(w_{1} w_{2} \cdots w_{r})_{i} - \mathrm {wt}(w_{1} w_{2} \cdots...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1006/jabr.1994.1114", "end": 142, "openalex_id": "https://openalex.org/W2050358923", "raw": "Masaki Kashiwara and Toshiki Nakashima, Crystal graphs for representations of the q-analogue of classical Lie algebras, J. Algebra 165 (1994), n...
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ -0.0031915022991597652, -0.0036092782393097878, -0.045997314155101776, 0.018588164821267128, 0.04743186756968498, -0.02237294614315033, 0.014086104929447174, 0.024555301293730736, 0.031407587230205536, 0.036901626735925674, -0.03427669778466225, -0.037359464913606644, -0.010270800441503525, ...
0ae50238b65179c0f456bbb64b175d15c3239db9
subsection
12
57
Crystals on Young tableaux
The string length \varepsilon _i(T) is given by\max \lbrace r \mid \mathrm {wt}(w_{r} w_{r+1} \cdots w_{n})_{i+1} - \mathrm {wt}(w_{r} w_{r+1} \cdots w_{n})_{i} \rbrace ,which also coincides with the number of i-free entries equal to i+1. Moreover, the largest index to attain the maximum in (REF ), if positive, is the ...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1006/jabr.1994.1114", "end": 732, "openalex_id": "https://openalex.org/W2050358923", "raw": "Masaki Kashiwara and Toshiki Nakashima, Crystal graphs for representations of the q-analogue of classical Lie algebras, J. Algebra 165 (1994), n...
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ 0.0014300873735919595, -0.002932632341980934, -0.03322378918528557, 0.014239856041967869, 0.029913613572716713, -0.030844124034047127, -0.006639418657869101, -0.012470361776649952, 0.009404254145920277, 0.03578650578856468, -0.022332243621349335, 0.015094094909727573, -0.02915089949965477, ...
1494d0bb54f9e6c603d7c34f6b86b83f59d65ee1
subsection
13
57
Local characterization of crystals
Establishing that a given directed graph structure on a combinatorial set is a normal crystal is difficult. To simplify this greatly, Stembridge gave a local characterization of crystals that arise from representations for simply-laced types.In order to define Stembridge's axioms for type A_{r+1}, we first introduce no...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1090/s0002-9947-03-03042-3", "end": 243, "openalex_id": "https://openalex.org/W1996171755", "raw": ", A local characterization of simply-laced crystals, Trans. Amer. Math. Soc. 355 (2003), no. 12, 4807–4823 (electronic).", "source_...
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ -0.010039074346423149, -0.027233660221099854, -0.020200204104185104, -0.002223700750619173, -0.009215199388563633, -0.052239805459976196, -0.009444053284823895, 0.019406843930482864, 0.02854575775563717, 0.03341272473335266, -0.02497563138604164, 0.0007523584645241499, -0.026669152081012726,...
deb194d3b83828c4962c835ee2cfa33efcd9cae1
subsection
14
57
Local characterization of crystals
\end{array}Definition 2.12 () A directed, colored graph \mathcal {X} is regular if the following hold:(A1) all monochromatic directed paths have finite length; (A2) for every vertex x, there is at most one edge x {\stackrel{i}{\longleftarrow }} y and at most one edge x {\stackrel{i}{\longrightarrow }} z; (A3) assuming...
{ "cite_spans": [] }
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ -0.023918159306049347, -0.02667912095785141, -0.021874133497476578, -0.012569237500429153, -0.01429293118417263, -0.028677385300397873, -0.005636326503008604, 0.005571497138589621, 0.0032967552542686462, 0.04576178640127182, 0.002873458666726947, -0.009739633649587631, 0.01899114064872265, ...
a517e02b72703cade050eb076e3ccbcb865bba66
subsection
15
57
Local characterization of crystals
When |i-j| \ge 2, there is no change (left case), but when j = i\pm 1, the length changes by 1, either by decreasing the tail when \Delta _i \varepsilon (x,j) = -1 (middle case) or by increasing the head when \Delta _i \varphi (x,j) = -1 (right case). [Figure: An illustration of axioms A3 and A4, where f_j {\swarrow },...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1090/s0002-9947-03-03042-3", "end": 1178, "openalex_id": "https://openalex.org/W1996171755", "raw": ", A local characterization of simply-laced crystals, Trans. Amer. Math. Soc. 355 (2003), no. 12, 4807–4823 (electronic).", "source...
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ -0.018406691029667854, -0.000985391321592033, -0.022374965250492096, -0.008829412050545216, -0.014400259591639042, -0.030830444768071175, -0.026373766362667084, 0.018620368093252182, 0.006295821163803339, 0.0021558417938649654, -0.018528791144490242, -0.006921587511897087, -0.012484803795814...
8bc96f093025019d31e086cf6fc42b6b42e9f9ca
subsection
16
57
A crystal for shifted tableaux
Schur P-polynomials arise as characters of tensor representations of the queer Lie superalgebra , characters of projective representations of the symmetric group , and representatives for cohomology classes dual to Schubert cycles in isotropic Grassmannians . Stanley conjectured that Schur P-polynomials are Schur posit...
{ "cite_spans": [ { "arxiv_id": "", "doi": "", "end": 259, "openalex_id": "", "raw": "A. N. Sergeev, Tensor algebra of the identity representation as a module over the Lie superalgebras {\\rm Gl}(n,\\,m) and Q(n), Mat. Sb. (N.S.) 123(165) (1984), no. 3, 422–430.", "source_ref_i...
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ -0.038219619542360306, -0.026756787672638893, -0.03815856948494911, 0.009677012450993061, 0.005311672575771809, -0.00980675220489502, 0.05848945304751396, 0.03364059329032898, 0.044111303985118866, 0.020025616511702538, -0.013958403840661049, 0.027687856927514076, -0.013874455355107784, -0...
de0f324707edd041d31c9ba3c6e7b102241128d0
subsection
17
57
Shifted tableaux
A partition \gamma is strict if \gamma _1 > \gamma _2 > \cdots > \gamma _{\ell } > 0. We identify a strict partition \gamma with its shifted Young diagram, the collection of cells with \gamma _i cells in row i shifted \ell (\gamma )-i cells to the left.A semistandard shifted tableau of shape \gamma is a filling of the ...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1016/0097-3165(87)90047-1", "end": 1858, "openalex_id": "https://openalex.org/W1999096883", "raw": "Bruce E. Sagan, Shifted tableaux, Schur Q-functions, and a conjecture of R. Stanley, J. Combin. Theory Ser. A 45 (1987), no. 1, 62–103. M...
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ -0.05218212306499481, -0.03130927309393883, -0.043332524597644806, 0.014067811891436577, 0.005725538358092308, -0.04568224400281906, 0.05764446035027504, 0.011763864196836948, 0.03198062255978584, 0.041074350476264954, -0.012595421634614468, 0.004066238645464182, -0.025709612295031548, 0.0...
ebffc14caa2580b0a63f753d6be644002a551605
subsection
18
57
Shifted tableaux
That is, Schur P-polynomials are Schur positive.For example, our previous computation can we written asP_{(3,1)}(x_1,x_2,x_3) & = & s_{(3,1)}(x_1,x_2,x_3) + s_{(2,2)}(x_1,x_2,x_3) + s_{(2,1,1)}(x_1,x_2,x_3).Stembridge expanded on the idea of shifted insertion in his study of projective representations of the symmetric ...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.1016/0001-8708(89)90005-4", "end": 435, "openalex_id": "https://openalex.org/W2046091890", "raw": "John R. Stembridge, Shifted tableaux and the projective representations of symmetric groups, Adv. Math. 74 (1989), no. 1, 87–134. MR 99141...
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ -0.02606835775077343, -0.01373625360429287, -0.0278540700674057, -0.013369954191148281, -0.0071886396035552025, -0.011195046827197075, 0.054090313613414764, 0.025152606889605522, 0.02986872009932995, 0.015689853578805923, -0.03519533574581146, 0.0303418580442667, -0.029487159103155136, -0....
e49efe4d844cc6fcad1d083dd38110064a7de2b8
subsection
19
57
Crystals on shifted tableaux
We give a new proof of the Schur positivity of Schur P-polynomials by constructing a crystal graph on semistandard shifted tableaux. We note that Hawkes, Paramonov, and Schilling recently constructed a crystal on semistandard shifted tableaux in the context of type B/C Stanley symmetric functions. Their construction us...
{ "cite_spans": [ { "arxiv_id": "", "doi": "10.37236/6952", "end": 299, "openalex_id": "https://openalex.org/W2962877690", "raw": "Graham Hawkes, Kirill Paramonov, and Anne Schilling, Crystal analysis of type C Stanley symmetric functions, Electron. J. Combin. 24 (2017), no. 3, Paper...
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ 0.008905982598662376, 0.0021196543239057064, -0.05067328363656998, 0.012080694548785686, 0.04044704884290695, -0.030342917889356613, 0.03559340536594391, 0.008913613855838776, 0.04536174610257149, 0.03403657302260399, -0.0032166852615773678, -0.00572363892570138, 0.005693112965673208, 0.01...
e5da7e2f2ce134efc3522b7cc62ad78fc0cfbc9b
subsection
20
57
Crystals on shifted tableaux
This observation helps to make the following well-defined.Definition 3.5 The shifted lowering operators, denoted by \overline{f}_i, act on semistandard shifted tableaux by: \overline{f}_i(T)=0 if m_i(w(T)) \leqslant 0; otherwise, letting p be the smallest index such that m_i(w(T),p) = m_i(w(T)), letting x denote the en...
{ "cite_spans": [] }
1803.06317
A local characterization of crystals for the quantum queer superalgebra
[ "Sami Assaf", "Ezgi Kantarci Oguz" ]
[ "math.CO", "math.RT" ]
2,018
en
Mathematics
[ -0.005017031915485859, -0.0024665482342243195, -0.04880446568131447, 0.04898759350180626, 0.04932333528995514, 0.011621200479567051, 0.007588498760014772, 0.025989368557929993, 0.023242400959134102, 0.037297721952199936, -0.026660850271582603, -0.05564136058092117, 0.0020926555152982473, 0...