bolognese 0.3 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/{LICENSE → LICENSE.md} +0 -0
  4. data/README.md +81 -1
  5. data/lib/bolognese.rb +1 -0
  6. data/lib/bolognese/author_utils.rb +1 -0
  7. data/lib/bolognese/cli.rb +6 -6
  8. data/lib/bolognese/crossref.rb +23 -19
  9. data/lib/bolognese/datacite.rb +21 -17
  10. data/lib/bolognese/datacite_utils.rb +14 -5
  11. data/lib/bolognese/doi_utils.rb +2 -3
  12. data/lib/bolognese/metadata.rb +11 -5
  13. data/lib/bolognese/orcid.rb +1 -1
  14. data/lib/bolognese/schema_org.rb +157 -0
  15. data/lib/bolognese/utils.rb +31 -1
  16. data/lib/bolognese/version.rb +1 -1
  17. data/spec/crossref_spec.rb +86 -26
  18. data/spec/datacite_spec.rb +43 -2
  19. data/spec/{doi_spec.rb → doi_utils_spec.rb} +2 -2
  20. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/crossref/as_crossref.yml +8 -8
  21. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/crossref/as_datacite.yml +12 -12
  22. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/crossref/as_schema_org.yml +12 -12
  23. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/datacite/as_datacite.yml +10 -10
  24. data/spec/fixtures/vcr_cassettes/Bolognese_CLI/read/datacite/as_schema_org.yml +16 -16
  25. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/doi_registration_agency/crossref.yml +931 -4
  26. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/doi_registration_agency/datacite.yml +931 -4
  27. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/doi_registration_agency/medra.yml +931 -4
  28. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/doi_registration_agency/not_found.yml +931 -4
  29. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/DOI_with_ORCID_ID.yml +506 -0
  30. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/DOI_with_SICI_DOI.yml +31 -94
  31. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/DOI_with_data_citation.yml +138 -14992
  32. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/date_in_future.yml +19 -2405
  33. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/journal_article.yml +107 -884
  34. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/not_found_error.yml +92 -2
  35. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/posted_content.yml +89 -5415
  36. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata_as_datacite_xml/DOI_with_ORCID_ID.yml +506 -0
  37. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata_as_datacite_xml/DOI_with_data_citation.yml +137 -671
  38. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata_as_string/DOI_with_data_citation.yml +719 -0
  39. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/SICI_doi.yml +930 -0
  40. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/doi.yml +930 -0
  41. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/doi_from_url_without_doi_proxy.yml +930 -0
  42. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/doi_prefix_too_long.yml +930 -0
  43. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/doi_prefix_with_string.yml +930 -0
  44. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/doi_with_protocol.yml +930 -0
  45. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/dx_doi_org_url.yml +930 -0
  46. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/https_url.yml +930 -0
  47. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_doi/not_valid_doi_prefix.yml +930 -0
  48. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_ids/doi.yml +930 -0
  49. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_ids/url.yml +930 -0
  50. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_url/doi.yml +930 -0
  51. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/normalize_url/url.yml +930 -0
  52. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attribute/array.yml +930 -0
  53. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attribute/hash.yml +930 -0
  54. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attribute/nil.yml +930 -0
  55. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attribute/string.yml +930 -0
  56. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attributes/array.yml +930 -0
  57. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attributes/hash.yml +930 -0
  58. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attributes/nil.yml +930 -0
  59. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/parse_attributes/string.yml +930 -0
  60. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/get_metadata/BlogPosting.yml +248 -78
  61. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/get_metadata/Dataset.yml +1687 -105
  62. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/get_metadata/Date.yml +458 -0
  63. data/spec/fixtures/vcr_cassettes/Bolognese_Datacite/get_metadata_as_string/Dataset.yml +173 -0
  64. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/crossref.yml +4 -4
  65. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/crossref_doi_not_url.yml +4 -4
  66. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/datacite.yml +4 -4
  67. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/datacite_doi_http.yml +4 -4
  68. data/spec/fixtures/vcr_cassettes/Bolognese_Metadata/find_PID_provider/orcid.yml +2 -2
  69. data/spec/fixtures/vcr_cassettes/Bolognese_SchemaOrg/get_metadata/BlogPosting.yml +632 -0
  70. data/spec/fixtures/vcr_cassettes/Bolognese_SchemaOrg/get_metadata/not_found_error.yml +93 -0
  71. data/spec/metadata_spec.rb +11 -5
  72. data/spec/schema_org_spec.rb +31 -0
  73. data/spec/utils_spec.rb +87 -0
  74. metadata +35 -6
  75. data/lib/bolognese/pid_utils.rb +0 -23
  76. data/spec/fixtures/vcr_cassettes/Bolognese_Crossref/get_metadata/DOI_test.yml +0 -843
@@ -0,0 +1,458 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://doi.org/10.4230/lipics.tqc.2013.93
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Maremma - https://github.com/datacite/maremma
12
+ Accept:
13
+ - application/vnd.datacite.datacite+xml
14
+ response:
15
+ status:
16
+ code: 303
17
+ message: ''
18
+ headers:
19
+ Server:
20
+ - Apache-Coyote/1.1
21
+ Vary:
22
+ - Accept
23
+ Location:
24
+ - http://data.datacite.org/10.4230%2Flipics.tqc.2013.93
25
+ Expires:
26
+ - Sat, 18 Feb 2017 08:28:49 GMT
27
+ Content-Type:
28
+ - text/html;charset=utf-8
29
+ Content-Length:
30
+ - '191'
31
+ Date:
32
+ - Sat, 18 Feb 2017 08:05:59 GMT
33
+ body:
34
+ encoding: UTF-8
35
+ string: |-
36
+ <html><head><title>Handle Redirect</title></head>
37
+ <body><a href="http://data.datacite.org/10.4230%2Flipics.tqc.2013.93">http://data.datacite.org/10.4230%2Flipics.tqc.2013.93</a></body></html>
38
+ http_version:
39
+ recorded_at: Sat, 18 Feb 2017 08:06:00 GMT
40
+ - request:
41
+ method: get
42
+ uri: http://data.datacite.org/10.4230%2Flipics.tqc.2013.93
43
+ body:
44
+ encoding: US-ASCII
45
+ string: ''
46
+ headers:
47
+ User-Agent:
48
+ - Maremma - https://github.com/datacite/maremma
49
+ Accept:
50
+ - application/vnd.datacite.datacite+xml
51
+ response:
52
+ status:
53
+ code: 301
54
+ message: ''
55
+ headers:
56
+ Server:
57
+ - openresty/1.11.2.2
58
+ Date:
59
+ - Sat, 18 Feb 2017 08:06:00 GMT
60
+ Content-Type:
61
+ - text/html
62
+ Content-Length:
63
+ - '191'
64
+ Connection:
65
+ - keep-alive
66
+ Location:
67
+ - https://data.datacite.org/10.4230%2Flipics.tqc.2013.93
68
+ body:
69
+ encoding: UTF-8
70
+ string: "<html>\r\n<head><title>301 Moved Permanently</title></head>\r\n<body
71
+ bgcolor=\"white\">\r\n<center><h1>301 Moved Permanently</h1></center>\r\n<hr><center>openresty/1.11.2.2</center>\r\n</body>\r\n</html>\r\n"
72
+ http_version:
73
+ recorded_at: Sat, 18 Feb 2017 08:06:00 GMT
74
+ - request:
75
+ method: get
76
+ uri: https://data.datacite.org/10.4230%2Flipics.tqc.2013.93
77
+ body:
78
+ encoding: US-ASCII
79
+ string: ''
80
+ headers:
81
+ User-Agent:
82
+ - Maremma - https://github.com/datacite/maremma
83
+ Accept:
84
+ - application/vnd.datacite.datacite+xml
85
+ response:
86
+ status:
87
+ code: 200
88
+ message: ''
89
+ headers:
90
+ Server:
91
+ - openresty/1.11.2.2
92
+ Date:
93
+ - Sat, 18 Feb 2017 08:06:00 GMT
94
+ Content-Type:
95
+ - application/vnd.datacite.datacite+xml
96
+ Content-Length:
97
+ - '1919'
98
+ Connection:
99
+ - keep-alive
100
+ Cache-Control:
101
+ - no-transform, max-age=3600
102
+ Last-Modified:
103
+ - Wed, 13 Nov 2013 13:42:17 GMT
104
+ Vary:
105
+ - Accept
106
+ Access-Control-Allow-Origin:
107
+ - "*"
108
+ Access-Control-Allow-Methods:
109
+ - GET, POST, OPTIONS
110
+ body:
111
+ encoding: UTF-8
112
+ string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<resource xmlns=\"http://datacite.org/schema/kernel-2.1\"
113
+ xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://datacite.org/schema/kernel-2.1
114
+ http://schema.datacite.org/meta/kernel-2.1/metadata.xsd\">\n<identifier identifierType=\"DOI\">10.4230/LIPIcs.TQC.2013.93</identifier>\n<creators>\n<creator>\n<creatorName>Johnston,
115
+ Nathaniel</creatorName>\n</creator>\n</creators>\n<titles>\n\t<title>The Minimum
116
+ Size of Qubit Unextendible Product Bases</title>\n</titles>\n<publisher>Schloss
117
+ Dagstuhl - Leibniz-Zentrum fuer Informatik GmbH, Wadern/Saarbruecken, Germany</publisher>\n<publicationYear>2013</publicationYear>\n<subjects>\n\t<subject>Computer
118
+ Science</subject>\n\t<subject subjectScheme=\"DDC\">000 Computer science,
119
+ knowledge, general works</subject>\n</subjects>\n<contributors>\n\t<contributor
120
+ contributorType=\"Editor\">\n\t\t<contributorName>Herbstritt, Marc</contributorName>\n\t</contributor>\n</contributors>\n<dates>\n\t<date
121
+ dateType=\"Available\">2013-11-05</date>\n</dates>\n<language>eng</language>\n<resourceType
122
+ resourceTypeGeneral=\"Text\">ConferencePaper</resourceType>\n<sizes>\n\t<size>13
123
+ pages</size>\n</sizes>\n<formats>\n\t<format>application/pdf</format>\n</formats>\n<version>1.0</version>\n<rights>Creative
124
+ Commons Attribution 3.0 Unported license (CC-BY 3.0)</rights>\n<descriptions>\n\t<description
125
+ descriptionType=\"Other\">\n\tWe investigate the problem of constructing unextendible
126
+ product bases in the qubit case - that is, when each local dimension equals
127
+ 2. The cardinality of the smallest unextendible product basis is known in
128
+ all qubit cases except when the number of parties is a multiple of 4 greater
129
+ than 4 itself. We construct small unextendible product bases in all of the
130
+ remaining open cases, and we use graph theory techniques to produce a computer-assisted
131
+ proof that our constructions are indeed the smallest possible.\n\t</description>\n</descriptions>\n</resource>\n"
132
+ http_version:
133
+ recorded_at: Sat, 18 Feb 2017 08:06:00 GMT
134
+ - request:
135
+ method: get
136
+ uri: https://doi.org/10.4230/lipics.tqc.2013.93
137
+ body:
138
+ encoding: US-ASCII
139
+ string: ''
140
+ headers:
141
+ User-Agent:
142
+ - Maremma - https://github.com/datacite/maremma
143
+ Accept:
144
+ - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5
145
+ response:
146
+ status:
147
+ code: 303
148
+ message: ''
149
+ headers:
150
+ Server:
151
+ - Apache-Coyote/1.1
152
+ Vary:
153
+ - Accept
154
+ Location:
155
+ - http://drops.dagstuhl.de/opus/volltexte/2013/4317/
156
+ Expires:
157
+ - Sat, 18 Feb 2017 08:28:49 GMT
158
+ Content-Type:
159
+ - text/html;charset=utf-8
160
+ Content-Length:
161
+ - '185'
162
+ Date:
163
+ - Sat, 18 Feb 2017 08:05:59 GMT
164
+ body:
165
+ encoding: UTF-8
166
+ string: |-
167
+ <html><head><title>Handle Redirect</title></head>
168
+ <body><a href="http://drops.dagstuhl.de/opus/volltexte/2013/4317/">http://drops.dagstuhl.de/opus/volltexte/2013/4317/</a></body></html>
169
+ http_version:
170
+ recorded_at: Sat, 18 Feb 2017 08:06:00 GMT
171
+ - request:
172
+ method: get
173
+ uri: http://drops.dagstuhl.de/opus/volltexte/2013/4317/
174
+ body:
175
+ encoding: US-ASCII
176
+ string: ''
177
+ headers:
178
+ User-Agent:
179
+ - Maremma - https://github.com/datacite/maremma
180
+ Accept:
181
+ - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5
182
+ response:
183
+ status:
184
+ code: 200
185
+ message: ''
186
+ headers:
187
+ Date:
188
+ - Sat, 18 Feb 2017 08:06:00 GMT
189
+ Server:
190
+ - Apache/2.0.55 (Unix) Embperl/2.0.1 mod_ssl/2.0.55 OpenSSL/0.9.8o PHP/5.1.4
191
+ mod_perl/2.0.2 Perl/v5.8.8
192
+ Last-Modified:
193
+ - Fri, 06 Nov 2015 12:44:15 GMT
194
+ Etag:
195
+ - '"15601a-1ddd-99e225c0"'
196
+ Accept-Ranges:
197
+ - bytes
198
+ Content-Length:
199
+ - '7645'
200
+ Content-Type:
201
+ - text/html
202
+ body:
203
+ encoding: UTF-8
204
+ string: "<HTML>\n<HEAD>\n<meta http-equiv=\"Content-Type\" content=\"text/html;
205
+ charset=iso-8859-1\">\n<META NAME=\"DC.Publisher\" CONTENT=\"Schloss Dagstuhl
206
+ - Leibniz-Zentrum fuer Informatik\">\n<META NAME=\"citation_conference_title\"
207
+ CONTENT=\"8th Conference on the Theory of Quantum Computation, Communication
208
+ and Cryptography (TQC 2013)\">\n<META NAME=\"citation_journal_title\" CONTENT=\"LIPIcs
209
+ - Leibniz International Proceedings in Informatics\">\n<META NAME=\"citation_issn\"
210
+ CONTENT=\"1868-8969\">\n<META NAME=\"citation_isbn\" CONTENT=\"978-3-939897-55-2\">\n<META
211
+ NAME=\"citation_volume\" CONTENT=\"22\">\n<META NAME=\"citation_doi\" CONTENT=\"10.4230/LIPIcs.TQC.2013.93\">\n<META
212
+ NAME=\"citation_startpage\" CONTENT=\"93\">\n<META NAME=\"citation_lastpage\"
213
+ CONTENT=\"105\">\n<META NAME=\"DC.Title\" LANG=\"eng\" CONTENT=\"The Minimum
214
+ Size of Qubit Unextendible Product Bases\">\n<META NAME=\"citation_title\"
215
+ CONTENT=\"The Minimum Size of Qubit Unextendible Product Bases\">\n<META NAME=\"DC.Creator.PersonalName\"
216
+ CONTENT=\"Johnston, Nathaniel\">\n<META NAME=\"citation_author\" CONTENT=\"Johnston,
217
+ Nathaniel\">\n<META NAME=\"DC.Subject\" SCHEME=\"SWD\" CONTENT=\"unextendible
218
+ product basis; quantum entanglement; graph factorization\">\n<META NAME=\"DC.Subject\"
219
+ SCHEME=\"DDC-Sachgruppe\" CONTENT=\"004\">\n<META NAME=\"DC.Date.Creation_of_intellectual_content\"
220
+ CONTENT=\"2013\">\n<META NAME=\"citation_date\" CONTENT=\"2013\">\n<META NAME=\"DC.Date.Creation_of_present_form\"
221
+ SCHEME=\"ISO8601\" CONTENT=\"2013-11-05\">\n<META NAME=\"DC.Type\" CONTENT=\"InProceedings\">\n<META
222
+ NAME=\"DC.Format\" SCHEME=\"IMT\" CONTENT=\"application/pdf\">\n<META NAME=\"DC.Identifier\"
223
+ SCHEME=\"urn:nbn:de\" CONTENT=\"urn:nbn:de:0030-drops-43173\">\n<META NAME=\"DC.Identifier\"
224
+ SCHEME=\"URL\" CONTENT=\"http://drops.dagstuhl.de/opus/volltexte/2013/4317/index.html\">\n<META
225
+ NAME=\"citation_pdf_url\" CONTENT=\"http://drops.dagstuhl.de/opus/volltexte/2013/4317/\">\n<META
226
+ NAME=\"DC.Source\" CONTENT=\"DROPS-IDN/4317\">\n<META NAME=\"DC.Language\"
227
+ SCHEME=\"ISO639-2\" CONTENT=\"eng\">\n<META NAME=\"DC.Description\" LANG=\"eng\"
228
+ CONTENT=\"We investigate the problem of constructing unextendible product
229
+ bases in the qubit case - that is, when each local dimension equals 2. The
230
+ cardinality of the smallest unextendible product basis is known in all qubit
231
+ cases except when the number of parties is a multiple of 4 greater than 4
232
+ itself. We construct small unextendible product bases in all of the remaining
233
+ open cases, and we use graph theory techniques to produce a computer-assisted
234
+ proof that our constructions are indeed the smallest possible.\">\n<TITLE>DROPS
235
+ - The Minimum Size of Qubit Unextendible Product Bases</TITLE></HEAD>\n<BODY
236
+ BGCOLOR=\"#FFFFFF\" TEXT=\"#000000\" LINK=\"#606060\" VLINK=\"#303030\" itemscope
237
+ itemtype=\"http://schema.org/WebPage\">\n<IMG SRC=\"/opus/Icons/drops-logo.png\"
238
+ ALIGN=TOP BORDER=0 VSPACE=0 HSPACE=0>\n </H2>\n </TD>\n </TR>\n</TABLE>\n<FONT
239
+ FACE=arial, arial, helvetica>\n<HR>\n<div itemscope itemtype=\"http://schema.org/ScholarlyArticle\"
240
+ itemid=\"http://drops.dagstuhl.de/opus/volltexte/2013/4317/\">\n<span style=\"display:none\"
241
+ itemprop=\"provider\">Schloss Dagstuhl - Leibniz-Zentrum fuer Informatik GmbH</span>\n<span
242
+ style=\"display:none\" itemprop=\"publisher\">Schloss Dagstuhl - Leibniz-Zentrum
243
+ fuer Informatik GmbH</span>\n<span style=\"display:none\" itemprop=\"learningResourceType\">scholarly
244
+ article </span>\n<span style=\"display:none\" itemprop=\"inLanguage\">en</span>\n<span
245
+ style=\"display:none\" itemprop=\"copyrightHolder\">Johnston, Nathaniel</span>\n<span
246
+ style=\"display:none\" itemprop=\"publishingPrinciples\">http://www.dagstuhl.de/lipics</span>\n<FONT
247
+ SIZE=-1><A HREF=/doku/urheberrecht1.html>License</A><BR>\nwhen quoting this
248
+ document, please refer to the following<BR>\nDOI: <a itemprop=\"url\" href=\"http://dx.doi.org/10.4230/LIPIcs.TQC.2013.93\"><B>10.4230/LIPIcs.TQC.2013.93</B></a><BR>\nURN:
249
+ <a href=\"http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:0030-drops-43173\"><B>urn:nbn:de:0030-drops-43173</B></a><BR>\nURL:
250
+ <a itemprop=\"url\" href=\"http://drops.dagstuhl.de/opus/volltexte/2013/4317/\"><B>http://drops.dagstuhl.de/opus/volltexte/2013/4317/</a></B>
251
+ \n</FONT>\n<HR>\n<font face=arial, arial, helvetica>\n<B><A itemprop=\"author\"
252
+ HREF=\"/opus/ergebnis.php?wer=opus&suchart=teil&Lines_Displayed=10&sort=o.date_year+DESC%2C+o.title&suchfeld1=freitext&suchwert1=&opt1=AND&opt2=AND&suchfeld3=date_year&suchwert3=&startindex=0&page=0&dir=2&suche=&suchfeld2=oa.person&suchwert2=Johnston%2C%20Nathaniel\">Johnston,
253
+ Nathaniel</A></B>\n\n</B><P>\n<H3 itemprop=\"name\">The Minimum Size of Qubit
254
+ Unextendible Product Bases</H3>\n<TABLE> \n<TR><TD><font face=arial, arial,
255
+ helvetica>\npdf-format: </TD>\n\n<TD><TABLE BORDER=3 CELLPADDING=4 CELLSPACING=4>\n<TR>\n\n<TD><font
256
+ face=arial, arial, helvetica>\n<A itemprop=\"url\" HREF=\"http://drops.dagstuhl.de/opus/volltexte/2013/4317/pdf/20.pdf\">20.pdf
257
+ (0.5 MB) </A>\n</TD>\n</TR>\n</TABLE>\n</TD>\n</TR>\n</TABLE>\n<P>\n<HR>\n\n<div
258
+ itemprop=\"about\">\n<H3>Abstract</H3>\nWe investigate the problem of constructing
259
+ unextendible product bases in the qubit case - that is, when each local dimension
260
+ equals 2. The cardinality of the smallest unextendible product basis is known
261
+ in all qubit cases except when the number of parties is a multiple of 4 greater
262
+ than 4 itself. We construct small unextendible product bases in all of the
263
+ remaining open cases, and we use graph theory techniques to produce a computer-assisted
264
+ proof that our constructions are indeed the smallest possible. \n</div>\n<HR><P>
265
+ \n<H3>BibTeX - Entry</H3>\n<PRE><tt>@InProceedings{johnston:LIPIcs:2013:4317,\n
266
+ \ author =\t{Nathaniel Johnston},\n title =\t{{The Minimum Size of Qubit
267
+ Unextendible Product Bases}},\n booktitle =\t{8th Conference on the Theory
268
+ of Quantum Computation, Communication and Cryptography (TQC 2013)},\n pages
269
+ =\t{93--105},\n series =\t{Leibniz International Proceedings in Informatics
270
+ (LIPIcs)},\n ISBN =\t{978-3-939897-55-2},\n ISSN =\t{1868-8969},\n year
271
+ =\t{2013},\n volume =\t{22},\n editor =\t{Simone Severini and Fernando Brandao},\n
272
+ \ publisher =\t{Schloss Dagstuhl--Leibniz-Zentrum fuer Informatik},\n address
273
+ =\t{Dagstuhl, Germany},\n URL =\t\t{http://drops.dagstuhl.de/opus/volltexte/2013/4317},\n
274
+ \ URN =\t\t{urn:nbn:de:0030-drops-43173},\n doi =\t\t{http://dx.doi.org/10.4230/LIPIcs.TQC.2013.93},\n
275
+ \ annote =\t{Keywords: unextendible product basis; quantum entanglement; graph
276
+ factorization}\n}\n</tt></PRE> \n<HR><P> \n<TABLE BORDER=0> \n<TR> \n<TD VALIGN=TOP><font
277
+ face=arial, arial, helvetica>\n<B>Keywords:</B></TD> \n<TD></TD><TD><font
278
+ face=arial, arial, helvetica>\nunextendible product basis; quantum entanglement;
279
+ graph factorization </TD>\n</TR> \n<TR> \n<TD VALIGN=TOP><font face=arial,
280
+ arial, helvetica>\n<B>Seminar:</B></TD>\n<TD></TD><TD><font face=arial, arial,
281
+ helvetica>\n8th Conference on the Theory of Quantum Computation, Communication
282
+ and Cryptography (TQC 2013) \n</TR> \n<TR> \n<TD VALIGN=TOP><font face=arial,
283
+ arial, helvetica>\n<B>Related Scholarly Article:</B></TD> \n<TD></TD><TD><font
284
+ face=arial, arial, helvetica>\n<a href=\"\"></a> </TD>\n</TR> \n<TR> \n<TD
285
+ VALIGN=TOP><font face=arial, arial, helvetica>\n<B>Issue date:</B></TD> \n<TD></TD><TD><font
286
+ face=arial, arial, helvetica>\n2013 </TD>\n</TR> \n<TR> \n<TD VALIGN=TOP><font
287
+ face=arial, arial, helvetica>\n<B>Date of publication:</B></TD> \n<TD></TD><TD><font
288
+ face=arial, arial, helvetica>\n<span itemprop=\"copyrightYear\">2013</span>
289
+ </TD>\n<span style=\"display:none\" itemprop=\"datePublished\">2013</span>
290
+ </TD>\n</TR> \n</TABLE> \n</div> \n<P>\n<HR>\n<CENTER>\n<A HREF=\"/opus\">DROPS-Home</A>
291
+ |\n<A HREF=\"/opus/suche/index.php\">Fulltext Search</A> |\n<A HREF=\"/opus/doku/imprint.php\">Imprint</A>\n<IMG
292
+ alt=\"Published by LZI\" SRC=\"/opus/Icons/logo_t.png\" ALIGN=\"right\" BORDER=0
293
+ VSPACE=0 HSPACE=10>\n</CENTER>\n<BR><BR>\n<BR><BR>\n</tr>\n</table>\n</BODY>\n</HTML>"
294
+ http_version:
295
+ recorded_at: Sat, 18 Feb 2017 08:06:00 GMT
296
+ - request:
297
+ method: get
298
+ uri: https://doi.org/10.4230/lipics.tqc.2013.93
299
+ body:
300
+ encoding: US-ASCII
301
+ string: ''
302
+ headers:
303
+ User-Agent:
304
+ - Maremma - https://github.com/datacite/maremma
305
+ Accept:
306
+ - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5
307
+ response:
308
+ status:
309
+ code: 303
310
+ message: ''
311
+ headers:
312
+ Server:
313
+ - Apache-Coyote/1.1
314
+ Vary:
315
+ - Accept
316
+ Location:
317
+ - http://drops.dagstuhl.de/opus/volltexte/2013/4317/
318
+ Expires:
319
+ - Sat, 18 Feb 2017 08:28:49 GMT
320
+ Content-Type:
321
+ - text/html;charset=utf-8
322
+ Content-Length:
323
+ - '185'
324
+ Date:
325
+ - Sat, 18 Feb 2017 08:06:00 GMT
326
+ body:
327
+ encoding: UTF-8
328
+ string: |-
329
+ <html><head><title>Handle Redirect</title></head>
330
+ <body><a href="http://drops.dagstuhl.de/opus/volltexte/2013/4317/">http://drops.dagstuhl.de/opus/volltexte/2013/4317/</a></body></html>
331
+ http_version:
332
+ recorded_at: Sat, 18 Feb 2017 08:06:01 GMT
333
+ - request:
334
+ method: get
335
+ uri: http://drops.dagstuhl.de/opus/volltexte/2013/4317/
336
+ body:
337
+ encoding: US-ASCII
338
+ string: ''
339
+ headers:
340
+ User-Agent:
341
+ - Maremma - https://github.com/datacite/maremma
342
+ Accept:
343
+ - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5
344
+ response:
345
+ status:
346
+ code: 200
347
+ message: ''
348
+ headers:
349
+ Date:
350
+ - Sat, 18 Feb 2017 08:06:01 GMT
351
+ Server:
352
+ - Apache/2.0.55 (Unix) Embperl/2.0.1 mod_ssl/2.0.55 OpenSSL/0.9.8o PHP/5.1.4
353
+ mod_perl/2.0.2 Perl/v5.8.8
354
+ Last-Modified:
355
+ - Fri, 06 Nov 2015 12:44:15 GMT
356
+ Etag:
357
+ - '"15601a-1ddd-99e225c0"'
358
+ Accept-Ranges:
359
+ - bytes
360
+ Content-Length:
361
+ - '7645'
362
+ Content-Type:
363
+ - text/html
364
+ body:
365
+ encoding: UTF-8
366
+ string: "<HTML>\n<HEAD>\n<meta http-equiv=\"Content-Type\" content=\"text/html;
367
+ charset=iso-8859-1\">\n<META NAME=\"DC.Publisher\" CONTENT=\"Schloss Dagstuhl
368
+ - Leibniz-Zentrum fuer Informatik\">\n<META NAME=\"citation_conference_title\"
369
+ CONTENT=\"8th Conference on the Theory of Quantum Computation, Communication
370
+ and Cryptography (TQC 2013)\">\n<META NAME=\"citation_journal_title\" CONTENT=\"LIPIcs
371
+ - Leibniz International Proceedings in Informatics\">\n<META NAME=\"citation_issn\"
372
+ CONTENT=\"1868-8969\">\n<META NAME=\"citation_isbn\" CONTENT=\"978-3-939897-55-2\">\n<META
373
+ NAME=\"citation_volume\" CONTENT=\"22\">\n<META NAME=\"citation_doi\" CONTENT=\"10.4230/LIPIcs.TQC.2013.93\">\n<META
374
+ NAME=\"citation_startpage\" CONTENT=\"93\">\n<META NAME=\"citation_lastpage\"
375
+ CONTENT=\"105\">\n<META NAME=\"DC.Title\" LANG=\"eng\" CONTENT=\"The Minimum
376
+ Size of Qubit Unextendible Product Bases\">\n<META NAME=\"citation_title\"
377
+ CONTENT=\"The Minimum Size of Qubit Unextendible Product Bases\">\n<META NAME=\"DC.Creator.PersonalName\"
378
+ CONTENT=\"Johnston, Nathaniel\">\n<META NAME=\"citation_author\" CONTENT=\"Johnston,
379
+ Nathaniel\">\n<META NAME=\"DC.Subject\" SCHEME=\"SWD\" CONTENT=\"unextendible
380
+ product basis; quantum entanglement; graph factorization\">\n<META NAME=\"DC.Subject\"
381
+ SCHEME=\"DDC-Sachgruppe\" CONTENT=\"004\">\n<META NAME=\"DC.Date.Creation_of_intellectual_content\"
382
+ CONTENT=\"2013\">\n<META NAME=\"citation_date\" CONTENT=\"2013\">\n<META NAME=\"DC.Date.Creation_of_present_form\"
383
+ SCHEME=\"ISO8601\" CONTENT=\"2013-11-05\">\n<META NAME=\"DC.Type\" CONTENT=\"InProceedings\">\n<META
384
+ NAME=\"DC.Format\" SCHEME=\"IMT\" CONTENT=\"application/pdf\">\n<META NAME=\"DC.Identifier\"
385
+ SCHEME=\"urn:nbn:de\" CONTENT=\"urn:nbn:de:0030-drops-43173\">\n<META NAME=\"DC.Identifier\"
386
+ SCHEME=\"URL\" CONTENT=\"http://drops.dagstuhl.de/opus/volltexte/2013/4317/index.html\">\n<META
387
+ NAME=\"citation_pdf_url\" CONTENT=\"http://drops.dagstuhl.de/opus/volltexte/2013/4317/\">\n<META
388
+ NAME=\"DC.Source\" CONTENT=\"DROPS-IDN/4317\">\n<META NAME=\"DC.Language\"
389
+ SCHEME=\"ISO639-2\" CONTENT=\"eng\">\n<META NAME=\"DC.Description\" LANG=\"eng\"
390
+ CONTENT=\"We investigate the problem of constructing unextendible product
391
+ bases in the qubit case - that is, when each local dimension equals 2. The
392
+ cardinality of the smallest unextendible product basis is known in all qubit
393
+ cases except when the number of parties is a multiple of 4 greater than 4
394
+ itself. We construct small unextendible product bases in all of the remaining
395
+ open cases, and we use graph theory techniques to produce a computer-assisted
396
+ proof that our constructions are indeed the smallest possible.\">\n<TITLE>DROPS
397
+ - The Minimum Size of Qubit Unextendible Product Bases</TITLE></HEAD>\n<BODY
398
+ BGCOLOR=\"#FFFFFF\" TEXT=\"#000000\" LINK=\"#606060\" VLINK=\"#303030\" itemscope
399
+ itemtype=\"http://schema.org/WebPage\">\n<IMG SRC=\"/opus/Icons/drops-logo.png\"
400
+ ALIGN=TOP BORDER=0 VSPACE=0 HSPACE=0>\n </H2>\n </TD>\n </TR>\n</TABLE>\n<FONT
401
+ FACE=arial, arial, helvetica>\n<HR>\n<div itemscope itemtype=\"http://schema.org/ScholarlyArticle\"
402
+ itemid=\"http://drops.dagstuhl.de/opus/volltexte/2013/4317/\">\n<span style=\"display:none\"
403
+ itemprop=\"provider\">Schloss Dagstuhl - Leibniz-Zentrum fuer Informatik GmbH</span>\n<span
404
+ style=\"display:none\" itemprop=\"publisher\">Schloss Dagstuhl - Leibniz-Zentrum
405
+ fuer Informatik GmbH</span>\n<span style=\"display:none\" itemprop=\"learningResourceType\">scholarly
406
+ article </span>\n<span style=\"display:none\" itemprop=\"inLanguage\">en</span>\n<span
407
+ style=\"display:none\" itemprop=\"copyrightHolder\">Johnston, Nathaniel</span>\n<span
408
+ style=\"display:none\" itemprop=\"publishingPrinciples\">http://www.dagstuhl.de/lipics</span>\n<FONT
409
+ SIZE=-1><A HREF=/doku/urheberrecht1.html>License</A><BR>\nwhen quoting this
410
+ document, please refer to the following<BR>\nDOI: <a itemprop=\"url\" href=\"http://dx.doi.org/10.4230/LIPIcs.TQC.2013.93\"><B>10.4230/LIPIcs.TQC.2013.93</B></a><BR>\nURN:
411
+ <a href=\"http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:0030-drops-43173\"><B>urn:nbn:de:0030-drops-43173</B></a><BR>\nURL:
412
+ <a itemprop=\"url\" href=\"http://drops.dagstuhl.de/opus/volltexte/2013/4317/\"><B>http://drops.dagstuhl.de/opus/volltexte/2013/4317/</a></B>
413
+ \n</FONT>\n<HR>\n<font face=arial, arial, helvetica>\n<B><A itemprop=\"author\"
414
+ HREF=\"/opus/ergebnis.php?wer=opus&suchart=teil&Lines_Displayed=10&sort=o.date_year+DESC%2C+o.title&suchfeld1=freitext&suchwert1=&opt1=AND&opt2=AND&suchfeld3=date_year&suchwert3=&startindex=0&page=0&dir=2&suche=&suchfeld2=oa.person&suchwert2=Johnston%2C%20Nathaniel\">Johnston,
415
+ Nathaniel</A></B>\n\n</B><P>\n<H3 itemprop=\"name\">The Minimum Size of Qubit
416
+ Unextendible Product Bases</H3>\n<TABLE> \n<TR><TD><font face=arial, arial,
417
+ helvetica>\npdf-format: </TD>\n\n<TD><TABLE BORDER=3 CELLPADDING=4 CELLSPACING=4>\n<TR>\n\n<TD><font
418
+ face=arial, arial, helvetica>\n<A itemprop=\"url\" HREF=\"http://drops.dagstuhl.de/opus/volltexte/2013/4317/pdf/20.pdf\">20.pdf
419
+ (0.5 MB) </A>\n</TD>\n</TR>\n</TABLE>\n</TD>\n</TR>\n</TABLE>\n<P>\n<HR>\n\n<div
420
+ itemprop=\"about\">\n<H3>Abstract</H3>\nWe investigate the problem of constructing
421
+ unextendible product bases in the qubit case - that is, when each local dimension
422
+ equals 2. The cardinality of the smallest unextendible product basis is known
423
+ in all qubit cases except when the number of parties is a multiple of 4 greater
424
+ than 4 itself. We construct small unextendible product bases in all of the
425
+ remaining open cases, and we use graph theory techniques to produce a computer-assisted
426
+ proof that our constructions are indeed the smallest possible. \n</div>\n<HR><P>
427
+ \n<H3>BibTeX - Entry</H3>\n<PRE><tt>@InProceedings{johnston:LIPIcs:2013:4317,\n
428
+ \ author =\t{Nathaniel Johnston},\n title =\t{{The Minimum Size of Qubit
429
+ Unextendible Product Bases}},\n booktitle =\t{8th Conference on the Theory
430
+ of Quantum Computation, Communication and Cryptography (TQC 2013)},\n pages
431
+ =\t{93--105},\n series =\t{Leibniz International Proceedings in Informatics
432
+ (LIPIcs)},\n ISBN =\t{978-3-939897-55-2},\n ISSN =\t{1868-8969},\n year
433
+ =\t{2013},\n volume =\t{22},\n editor =\t{Simone Severini and Fernando Brandao},\n
434
+ \ publisher =\t{Schloss Dagstuhl--Leibniz-Zentrum fuer Informatik},\n address
435
+ =\t{Dagstuhl, Germany},\n URL =\t\t{http://drops.dagstuhl.de/opus/volltexte/2013/4317},\n
436
+ \ URN =\t\t{urn:nbn:de:0030-drops-43173},\n doi =\t\t{http://dx.doi.org/10.4230/LIPIcs.TQC.2013.93},\n
437
+ \ annote =\t{Keywords: unextendible product basis; quantum entanglement; graph
438
+ factorization}\n}\n</tt></PRE> \n<HR><P> \n<TABLE BORDER=0> \n<TR> \n<TD VALIGN=TOP><font
439
+ face=arial, arial, helvetica>\n<B>Keywords:</B></TD> \n<TD></TD><TD><font
440
+ face=arial, arial, helvetica>\nunextendible product basis; quantum entanglement;
441
+ graph factorization </TD>\n</TR> \n<TR> \n<TD VALIGN=TOP><font face=arial,
442
+ arial, helvetica>\n<B>Seminar:</B></TD>\n<TD></TD><TD><font face=arial, arial,
443
+ helvetica>\n8th Conference on the Theory of Quantum Computation, Communication
444
+ and Cryptography (TQC 2013) \n</TR> \n<TR> \n<TD VALIGN=TOP><font face=arial,
445
+ arial, helvetica>\n<B>Related Scholarly Article:</B></TD> \n<TD></TD><TD><font
446
+ face=arial, arial, helvetica>\n<a href=\"\"></a> </TD>\n</TR> \n<TR> \n<TD
447
+ VALIGN=TOP><font face=arial, arial, helvetica>\n<B>Issue date:</B></TD> \n<TD></TD><TD><font
448
+ face=arial, arial, helvetica>\n2013 </TD>\n</TR> \n<TR> \n<TD VALIGN=TOP><font
449
+ face=arial, arial, helvetica>\n<B>Date of publication:</B></TD> \n<TD></TD><TD><font
450
+ face=arial, arial, helvetica>\n<span itemprop=\"copyrightYear\">2013</span>
451
+ </TD>\n<span style=\"display:none\" itemprop=\"datePublished\">2013</span>
452
+ </TD>\n</TR> \n</TABLE> \n</div> \n<P>\n<HR>\n<CENTER>\n<A HREF=\"/opus\">DROPS-Home</A>
453
+ |\n<A HREF=\"/opus/suche/index.php\">Fulltext Search</A> |\n<A HREF=\"/opus/doku/imprint.php\">Imprint</A>\n<IMG
454
+ alt=\"Published by LZI\" SRC=\"/opus/Icons/logo_t.png\" ALIGN=\"right\" BORDER=0
455
+ VSPACE=0 HSPACE=10>\n</CENTER>\n<BR><BR>\n<BR><BR>\n</tr>\n</table>\n</BODY>\n</HTML>"
456
+ http_version:
457
+ recorded_at: Sat, 18 Feb 2017 08:06:01 GMT
458
+ recorded_with: VCR 3.0.3