diff --git a/img/favicons/cambridge_favicon.ico b/img/favicons/cambridge_favicon.ico new file mode 100644 index 00000000..8ed48b2a Binary files /dev/null and b/img/favicons/cambridge_favicon.ico differ diff --git a/img/favicons/chapman_favicon.ico b/img/favicons/chapman_favicon.ico new file mode 100644 index 00000000..7fa40cfe Binary files /dev/null and b/img/favicons/chapman_favicon.ico differ diff --git a/img/favicons/citeseerx_favicon.ico b/img/favicons/citeseerx_favicon.ico new file mode 100644 index 00000000..b2035b5b Binary files /dev/null and b/img/favicons/citeseerx_favicon.ico differ diff --git a/img/favicons/huskiecommons_favicon.ico b/img/favicons/huskiecommons_favicon.ico new file mode 100644 index 00000000..8ca044ab Binary files /dev/null and b/img/favicons/huskiecommons_favicon.ico differ diff --git a/img/favicons/kent_favicon.ico b/img/favicons/kent_favicon.ico new file mode 100644 index 00000000..49f779d3 Binary files /dev/null and b/img/favicons/kent_favicon.ico differ diff --git a/img/favicons/uky_favicon.ico b/img/favicons/uky_favicon.ico new file mode 100644 index 00000000..132258ec Binary files /dev/null and b/img/favicons/uky_favicon.ico differ diff --git a/img/favicons/uow_favicon.ico b/img/favicons/uow_favicon.ico new file mode 100644 index 00000000..638b0bd9 Binary files /dev/null and b/img/favicons/uow_favicon.ico differ diff --git a/img/favicons/utktrace_favicon.ico b/img/favicons/utktrace_favicon.ico new file mode 100644 index 00000000..3bd2ed4b Binary files /dev/null and b/img/favicons/utktrace_favicon.ico differ diff --git a/scrapi/harvesters/cambridge.py b/scrapi/harvesters/cambridge.py new file mode 100644 index 00000000..848f8062 --- /dev/null +++ b/scrapi/harvesters/cambridge.py @@ -0,0 +1,18 @@ +''' +Harvester for the DSpace at Cambridge (production) for the SHARE project + +Example API call: https://www.repository.cam.ac.uk/oai/request?verb=ListRecords&metadataPrefix=oai_dc +''' +from __future__ import unicode_literals + +from scrapi.base import OAIHarvester + + +class CambridgeHarvester(OAIHarvester): + short_name = 'cambridge' + long_name = 'DSpace at Cambridge (production)' + url = 'https://www.repository.cam.ac.uk' + + base_url = 'https://www.repository.cam.ac.uk/oai/request' + property_list = ['date', 'identifier', 'type', 'format', 'setSpec'] + timezone_granularity = True diff --git a/scrapi/harvesters/chapman.py b/scrapi/harvesters/chapman.py new file mode 100644 index 00000000..eebfaaee --- /dev/null +++ b/scrapi/harvesters/chapman.py @@ -0,0 +1,18 @@ +''' +Harvester for the Chapman University Digital Commons for the SHARE project + +Example API call: http://digitalcommons.chapman.edu/do/oai/?verb=ListRecords&metadataPrefix=oai_dc +''' +from __future__ import unicode_literals + +from scrapi.base import OAIHarvester + + +class ChapmanHarvester(OAIHarvester): + short_name = 'chapman' + long_name = 'Chapman University Digital Commons' + url = 'http://digitalcommons.chapman.edu' + + base_url = 'http://digitalcommons.chapman.edu/do/oai/' + property_list = ['date', 'source', 'identifier', 'type', 'format', 'setSpec'] + timezone_granularity = True diff --git a/scrapi/harvesters/citeseerx.py b/scrapi/harvesters/citeseerx.py new file mode 100644 index 00000000..46e9de65 --- /dev/null +++ b/scrapi/harvesters/citeseerx.py @@ -0,0 +1,18 @@ +''' +Harvester for the "CiteSeerX Scientific Literature Digital Library and Search Engine" for the SHARE project + +Example API call: http://citeseerx.ist.psu.edu/oai2?verb=ListRecords&metadataPrefix=oai_dc +''' +from __future__ import unicode_literals + +from scrapi.base import OAIHarvester + + +class CiteseerxHarvester(OAIHarvester): + short_name = 'citeseerx' + long_name = 'CiteSeerX Scientific Literature Digital Library and Search Engine' + url = 'http://citeseerx.ist.psu.edu' + + base_url = 'http://citeseerx.ist.psu.edu/oai2' + property_list = ['rights', 'format', 'source', 'date', 'identifier', 'type', 'setSpec'] + timezone_granularity = False diff --git a/scrapi/harvesters/huskiecommons.py b/scrapi/harvesters/huskiecommons.py new file mode 100644 index 00000000..29d11df2 --- /dev/null +++ b/scrapi/harvesters/huskiecommons.py @@ -0,0 +1,18 @@ +''' +Harvester for the Huskie Commons for the SHARE project + +Example API call: http://commons.lib.niu.edu/oai/request?verb=ListRecords&metadataPrefix=oai_dc +''' +from __future__ import unicode_literals + +from scrapi.base import OAIHarvester + + +class HuskiecommonsHarvester(OAIHarvester): + short_name = 'huskiecommons' + long_name = 'Huskie Commons @ Northern Illinois University' + url = 'http://commons.lib.niu.edu' + + base_url = 'http://commons.lib.niu.edu/oai/request' + property_list = ['date', 'identifier', 'type', 'setSpec'] + timezone_granularity = True diff --git a/scrapi/harvesters/kent.py b/scrapi/harvesters/kent.py new file mode 100644 index 00000000..48d3808c --- /dev/null +++ b/scrapi/harvesters/kent.py @@ -0,0 +1,18 @@ +''' +Harvester for the Digital Commons @ Kent State University Libraries for the SHARE project + +Example API call: http://digitalcommons.kent.edu/do/oai/?verb=ListRecords&metadataPrefix=oai_dc +''' +from __future__ import unicode_literals + +from scrapi.base import OAIHarvester + + +class KentHarvester(OAIHarvester): + short_name = 'kent' + long_name = 'Digital Commons @ Kent State University Libraries' + url = 'http://digitalcommons.kent.edu' + + base_url = 'http://digitalcommons.kent.edu/do/oai/' + property_list = ['date', 'source', 'identifier', 'type', 'setSpec'] + timezone_granularity = True diff --git a/scrapi/harvesters/uky.py b/scrapi/harvesters/uky.py new file mode 100644 index 00000000..acbff2e8 --- /dev/null +++ b/scrapi/harvesters/uky.py @@ -0,0 +1,18 @@ +''' +Harvester for the UKnowledge for the SHARE project + +Example API call: http://uknowledge.uky.edu/do/oai/?verb=ListRecords&metadataPrefix=oai_dc +''' +from __future__ import unicode_literals + +from scrapi.base import OAIHarvester + + +class UkyHarvester(OAIHarvester): + short_name = 'uky' + long_name = 'UKnowledge @ University of Kentucky' + url = 'http://uknowledge.uky.edu' + + base_url = 'http://uknowledge.uky.edu/do/oai/' + property_list = ['date', 'source', 'identifier', 'type', 'format', 'setSpec'] + timezone_granularity = True diff --git a/scrapi/harvesters/uow.py b/scrapi/harvesters/uow.py new file mode 100644 index 00000000..8612b3d3 --- /dev/null +++ b/scrapi/harvesters/uow.py @@ -0,0 +1,18 @@ +''' +Harvester for Research Online @ University of Wollongong for the SHARE project + +Example API call: http://ro.uow.edu.au/do/oai/?verb=ListRecords&metadataPrefix=oai_dc +''' +from __future__ import unicode_literals + +from scrapi.base import OAIHarvester + + +class UowHarvester(OAIHarvester): + short_name = 'uow' + long_name = 'Research Online @ University of Wollongong' + url = 'http://ro.uow.edu.au' + + base_url = 'http://ro.uow.edu.au/do/oai/' + property_list = ['date', 'source', 'identifier', 'type', 'format', 'setSpec'] + timezone_granularity = True diff --git a/scrapi/harvesters/utktrace.py b/scrapi/harvesters/utktrace.py new file mode 100644 index 00000000..fb5803b2 --- /dev/null +++ b/scrapi/harvesters/utktrace.py @@ -0,0 +1,34 @@ +''' +Harvester for the Trace: Tennessee Research and Creative Exchange for the SHARE project +Example API call: http://trace.tennessee.edu/do/oai/?verb=ListRecords&metadataPrefix=oai_dc +''' +from __future__ import unicode_literals + +from scrapi.base import OAIHarvester + + +class UtkTraceHarvester(OAIHarvester): + short_name = 'utktrace' + long_name = 'Trace: Tennessee Research and Creative Exchange' + url = 'http://trace.tennessee.edu' + + base_url = 'http://trace.tennessee.edu/do/oai/' + property_list = ['date', 'source', 'identifier', 'type', 'format', 'setSpec'] + timezone_granularity = True + + approved_sets = [u'utk_accopubs', u'utk_agrieconpubs', u'utk_animpubs', u'utk_anthpubs', + u'utk_architecpubs', u'utk_audipubs', u'utk_aviapubs', u'utk_biocpubs', u'utk_compmedpubs', + u'utk_biospubs', u'utk_botapubs', u'utk_statpubs', u'utk_cssjpapers', u'catalyst', + u'utk_chembiopubs', u'utk_chempubs', u'utk_chilpubs', u'utk_civipubs', u'utk_claspubs', + u'utk_lawpubl', u'utk-lawjournals', u'utk_compmatdata', u'utk_datasets', u'utk_davisbacon', + u'utk_rotcarmypubs', u'utk_biolpubs', u'utk_eartpubs', u'utk_ecolpubs', u'utk_econpubs', + u'utk_edleadpubs', u'utk_educpubs', u'utk_elecutsipubs', u'utk_englpubs', u'utk_entopubs', + u'utk_compmedpeer', u'utk_smalpeer', u'utk_largpeer', u'utk_famipubs', u'utk_foodpubs', + u'utk_forepubs', u'gamut', u'utk_geno', u'utk_indupubs', u'utk_induengipubs', u'utk_nuclearpubs', + u'utk_instpubs', u'utk_intepubs', u'ijns', u'utk_exerpubs', u'utk_largpubs', u'utk_latipubs', + u'utk_mtaspubs', u'utk_manapubs', u'utk_markpubs', u'utk_matepubs', u'utk_mathutsipubs', + u'utk_mechutsipubs', u'utk_micrpubs', u'utk_modepubs', u'utk_molecularsimulation', + u'utk_nuclpubs', u'utk_libfac', u'utk_artfac', u'utk_artpeer', u'utk_libpub', + u'utk_physastrpubs', u'utk_psycpubs', u'utk_bakecentpubs', u'pursuit', u'utk_relipubs', + u'utk_infosciepubs', u'utk_jourpubs', u'utk_socipubs', u'utk_socopubs', u'rgsj', u'jaepl', + u'utk_theapubs', u'utk_theopubs', u'utgradmedpubs', u'vernacular'] diff --git a/tests/vcr/cambridge.yaml b/tests/vcr/cambridge.yaml new file mode 100644 index 00000000..0082baca --- /dev/null +++ b/tests/vcr/cambridge.yaml @@ -0,0 +1,2484 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.4.1 CPython/2.7.9 Darwin/13.4.0] + method: GET + uri: https://www.repository.cam.ac.uk/oai/request?verb=ListRecords&metadataPrefix=oai_dc&from=2015-10-04T00:00:00Z&until=2015-10-06T00:00:00Z + response: + body: {string: !!python/unicode "2015-10-06T15:37:06Z\n + \ http://www.repository.cam.ac.uk/oai/request\n + \ \n \n
\n oai:dspace-production:1810/219499\n + \ 2015-10-05T10:15:26Z\n com_1810_198272\n + \ col_1810_219496\n
\n + \ \nWord Order, Focus, + and Clause Linking in Greek Tragic Poetry\nFraser, + Bruce L.\nhistorical linguistics\nAncient + Greek literature\nword order\nsyntax\nGreek + tragedy\ncomplementation\nfocalisation\nclausal + subordination\ncomparing poetry and prose\nenclitics\ntopic + and focus\nThe thesis comprises an investigation + of three aspects of sentence structure in Classical Greek (henceforth CG) + dramatic poetry: order of the main sentence elements (subject, verb, and object) + within the clause, the emphatic position at the start of the clause, and the + structure of inter-clausal linking. It is argued that these three features, + usually considered separately, are interdependent, and that intra-clausal + word order is directly related to the structure of compound and complex sentences. + \ The discussion undertakes a systematic survey of subject, verb, and object + order in a corpus of texts, proposes an explanation for the observed order, + and develops a model which explains how prominence within the clause is exploited + in clause linking to produce the complement structures observed in Homeric + and tragic complementation.\nThis work was + supported by the British Academy and by the Cambridge Faculty of Classics.\n2009-10-13T09:10:26Z\n2009-10-13T09:10:26Z\n1999-11-16\nThesis\ndoctoral\nPhD\nhttp://www.dspace.cam.ac.uk/handle/1810/219499\nen\nUniversity + of Cambridge\nDarwin College\nFaculty + of Classics\n\n\n
\n + \ \n
\n oai:dspace-production:1810/246283\n + \ 2015-10-05T10:06:19Z\n com_1810_198272\n + \ col_1810_198273\n
\n + \ \nA New Edition + of IG IX,2 69\nScarborough, Matthew J. C.\nThis + is the final version of the article. It first appeared from the University + of Cologne, in Zeitschrift f?r Papyrologie und Epigraphik Vol. 193, pp.166-171.\nIn + early April 2013 I had the opportunity to examine stone EM 10300 in the Epigraphical + Museum Athens. The inscription, originally from Lamia in the southern periphery + of Thessaly, was first published by Stephanos A. KOUMANOUDIS in the Greek + periodical ???????? ??? ????????? 24 October 1864 (No. 541) after a copy made + in situ by A. BLASTOS. Two years later the stone had been brought to the + National Archaeological Museum in Athens, and P. EUSTRATIADIS made a revised + publication of the text in the same periodical, 22 December 1866 (No. 617), + based on an autopsy of the stone. Because ???????? ??? ????????? did not + have wide circulation, Basilius LATISCHEW (Vasilii LATYSHEV) re-published + the inscription in the Mitteilungen des Deutschen arch?ologischen Instituts + No. 7 1882, along with one other Lamian proxeny decree (now IG IX,2 60), made + on the basis of his own autopsy of the stone and provided in his publication + an apparatus and minimal commentary on the dating of the inscription. The + inscription was last edited in IG IX,2 (1908) by Otto KERN from a squeeze. + \ For the reason that no substantial commentary on this inscription currently + exists, and because some relatively recently proposed restorations seem unlikely + based on the examination of the actual stone, I present here a new edition + of the text with a brief philological commentary.\n2014-11-05T10:22:22Z\n2014-11-05T10:22:22Z\n2015\nArticle\npublished + version\nScarborough. Zeitschrift f?r Papyrologie + und Epigraphik (2015) Vol. 193, pp.166-171\nhttp://www.repository.cam.ac.uk/handle/1810/246283\nen\nUniversity + of Cologne\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248122\n + \ 2015-10-05T10:07:29Z\n com_1810_198272\n + \ col_1810_198273\n
\n + \ \nOn the Phonology + and Orthography of the Thessalian Mid-Long Vowels\nScarborough, + Matthew J. C.\nThis is the final published version + of the article. It was originally published in the 11th International Conference + on Greek Linguistics (Scarborough, Matthew J. C. 2014. \"On the Phonology + and Orthography of the Thessalian Mid-Long Vowels\" In: 11th International + Conference on Greek Linguistics (Rhodes, 26-29 September 2013): Selected + Papers / ????????, ed. by G. Kotzoglou, K. Nikolou, E. Karantzola, K. Frantzi, + I. Galantomos, M. Georgalidou, V. Kourti-Kazoulis, C. Papadopoulou & + E. Vlachou, 1535-48. Rhodes: Department of Mediterranean Studies, University + of the Aegean.). The final version is available at http://www.rhodes.aegean.gr/Assets/announcements/diafora/ICGL-Conf.html\nIn + all attested periods of the Ancient Thessalian dialect there are two mid-long + vowels, written as <E> and <O> in the archaic epichoric alphabet + and <EI> and <OY> in the Ionic alphabet. Traditionally the Ionic + alphabet spellings have been explained as raised mid-high vowels /e?/ and + /o?/. This paper problematizes this assumption, examining evidence from inscriptions + transitional between the two scripts, and proposes that the spellings <??> + and <??> may be plausibly interpreted instead as a specifically Thessalian + standardized orthography for central-mid vowels /e??/ and /o??/.\n2015-06-01T11:28:36Z\n2015-06-01T11:28:36Z\n2014\nArticle\npublished + version\nScarborough, Matthew J. C. 2014. \"On the + Phonology and Orthography of the Thessalian Mid-Long Vowels\" In: 11th International + Conference on Greek Linguistics (Rhodes, 26-29 September 2013): Selected + Papers / ????????, ed. by G. Kotzoglou, K. Nikolou, E. Karantzola, K. Frantzi, + I. Galantomos, M. Georgalidou, V. Kourti-Kazoulis, C. Papadopoulou & + E. Vlachou, 1535-48. Rhodes: Department of Mediterranean Studies, University + of the Aegean.\n978-960-87197-9-8\nhttp://www.rhodes.aegean.gr/Assets/announcements/diafora/ICGL-Conf.html\nhttp://www.repository.cam.ac.uk/handle/1810/248122\nen\nRhodes: + Department of Mediterranean Studies, University of the Aegean\n\n\n + \
\n \n
\n oai:dspace-production:1810/248330\n + \ 2015-10-05T17:15:40Z\n com_1810_221790\n + \ col_1810_227528\n
\n + \ \nThe effectiveness + of policy on consumer choices for private road passenger transport emissions + reductions in six major economies\nMercure, J. F.\nLam, + A.\nPolicy effectiveness\nEmissions + reductions\nPassenger road transport\nVehicle + choices\nThis is the final version of the article. + It first appeared from IOP via http://dx.doi.org/10.1088/1748-9326/10/6/064008\nThe + effectiveness of fiscal policy to in uence vehicle purchases for emissions + reductions in private passenger road transport depends on its ability to incentivise + consumers to make choices oriented towards lower emissions vehicles. However, + car purchase choices are known to be strongly socially determined, and this + sector is highly diverse due to significant socio-economic differences between + consumer groups. Here, we present a comprehensive dataset and analysis of + the structure of the 2012 private passenger vehicle eet-years in six major + economies across the World (UK, USA, China, India, Japan and Brazil) in terms + of price, engine size and emissions distributions. We argue that choices and + aggregate elasticities of substitution can be predicted using this data, enabling + to evaluate the effectiveness of potential fiscal and technological change + policies on eet-year emissions reductions. We provide tools to do so based + on the distributive structure of prices and emissions in segments of a diverse + market, both for conventional as well as unconventional engine technologies. + We find that markets differ significantly between nations, and that correlations + between engine sizes, emissions and prices exist strongly in some markets + and not strongly in others. We furthermore find that markets for unconventional + engine technologies have patchy coverages of varying levels. These findings + are interpreted in terms of policy strategy.\nWe + acknowledge our respective funders, the Three Guineas Trust (A. Lam) and the + UK Engi- neering and Physical Sciences Research Council (EPSRC), fellowship + no EP/K007254/1 (J.-F. Mercure).\n2015-06-08T14:40:32Z\n2015-06-08T14:40:32Z\n2015-06-08\nArticle\npublished + version\nhttp://www.repository.cam.ac.uk/handle/1810/248330\nhttp://dx.doi.org/10.1088/1748-9326/10/6/064008\nen\nCreative + Commons Attribution 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nIOP\n\n\n + \
\n \n
\n oai:dspace-production:1810/248397\n + \ 2015-10-05T15:23:21Z\n com_1810_221736\n + \ col_1810_239063\n
\n + \ \nRare coding variants + and X - linked loci associated with age at menarche\nLunetta, + Kathryn L.\nDay, Felix\nSulem, + Patrick\nRuth, Katherine S.\nTung, + Joyce Y.\nHinds, David A.\nEsko, + T?nu\nElks, Cathy E.\nAltmaier, + Elisabeth\nHe, Chunyan\nHuffman, + Jennifer E.\nMihailov, Evelin\nPorcu, + Eleonora\nRobino, Antonietta\nRose, + Lynda M.\nSchick, Ursula M.\nStolk, + Lisette\nTeumer, Alexander\nThompson, + Deborah J.\nTraglia, Michela\nWang, + Carol A.\nYerges-Armstrong, Laura M.\nAntoniou, + Antonis C.\nBarbieri, Caterina\nCoviello, + Andrea D.\nCucca, Francesco\nDemerath, + Ellen W.\nDunning, Alison M.\nGandin, + Ilaria\nGrove, Megan L.\nGudbjartsson, + Daniel F.\nHocking, Lynne J.\nHofman, + Albert\nHuang, Jinyan\nJackson, + Rebecca D.\nKarasik, David\nKriebel, + Jennifer\nLange, Ethan M.\nLange, + Leslie A.\nLangenberg, Claudia\nLi, + Xin\nLuan, Jian'an\nM?gi, + Reedik\nMorrison, Alanna C.\nPadmanabhan, + Sandosh\nPirie, Ailith\nPolasek, + Ozren\nPorteous, David\nReiner, + Alex P.\nRivadeneira, Fernando\nRudan, + Igor\nSala, Cinzia F.\nSchlessinger, + David\nScott, Robert A.\nSt?ckl, + Doris\nVisser, Jenny A.\nV?lker, + Uwe\nVozzi, Diego\nWilson, + James G.\nZygmunt, Marek\nScotland, + Generation\nConsortium, InterAct\nBoerwinkle, + Eric\nBuring, Julie E.\nCrisponi, + Laura\nEaston, Douglas F.\nHayward, + Caroline\nHu, Frank B.\nLiu, + Simin\nMetspalu, Andres\nPennell, + Craig E.\nRidker, Paul M.\nStrauch, + Konstantin\nStreeten, Elizabeth A.\nToniolo, + Daniela\nUitterlinden, Andr? G.\nUlivi, + Sheila\nV?lzke, Henry\nWareham, + Nicholas J.\nWellons, Melissa\nFranceschini, + Nora\nChasman, Daniel I.\nThorsteinsdottir, + Unnur\nMurray, Anna\nStefansson, + Kari\nMurabito, Joanne M.\nOng, + Ken K.\nPerry, John R. B.\nThis + is the final version of the article. It first appeared from NPG via http://dx.doi.org/10.1038/ncomms8756\nMore + than 100 loci have been identified for age at menarche by genome-wide association + studies; however, collectively these explain only ~3% of the trait variance. + Here we test two overlooked sources of variation in 192,974 European ancestry + women: low-frequency protein-coding variants and X-chromosome variants. Five + missense/nonsense variants (in ALMS1/LAMB2/TNRC6A/TACR3/PRKAG1) are associated + with age at menarche (minor allele frequencies 0.08?4.6%; effect sizes 0.08?1.25 + years per allele; P<5 ? 10^?8). In addition, we identify common X-chromosome + loci at IGSF1 (rs762080, P=9.4 ? 10^?13) and FAAH2 (rs5914101, P=4.9 ? 10^?10). + Highlighted genes implicate cellular energy homeostasis, post-transcriptional + gene silencing and fatty-acid amide signalling. A frequently reported mutation + in TACR3 for idiopathic hypogonatrophic hypogonadism (p.W275X) is associated + with 1.25-year-later menarche (P=2.8 ? 10^?11), illustrating the utility of + population studies to estimate the penetrance of reportedly pathogenic mutations. + Collectively, these novel variants explain ~0.5% variance, indicating that + these overlooked sources of variation do not substantially explain the ?missing + heritability? of this complex trait.\nUK + sponsors (see article for overseas ones): \nThis work made use of data + and samples generated by the 1958 Birth Cohort (NCDS). Access to these resources + was enabled via the 58READIE Project funded by Wellcome Trust and Medical + Research Council (grant numbers WT095219MA and G1001799). A full list of the + financial, institutional and personal contributions to the development of + the 1958 Birth Cohort Biomedical resource is available at http://www2.le.ac.uk/projects/birthcohort. + Genotyping was undertaken as part of the Wellcome Trust Case-Control Consortium + (WTCCC) under Wellcome Trust award 076113, and a full list of the investigators + who contributed to the generation of the data is available at www.wtccc.org.uk + \n... \nThe Fenland Study is funded by the Wellcome Trust and the + Medical Research Council, as well as by the Support for Science Funding programme + and CamStrad. \n... \nSIBS - CRUK ref: C1287/A8459 SEARCH - CRUK ref: + A490/A10124 EMBRACE is supported by Cancer Research UK Grants C1287/A10118, + C1287/A16563 and C1287/A17523. Genotyping was supported by Cancer Research + - UK grant C12292/A11174D \nand C8197/A16565. Gareth Evans and Fiona + Lalloo are supported by an NIHR grant to the Biomedical Research Centre, Manchester. + \nThe Investigators at The Institute of Cancer Research and The Royal + Marsden NHS Foundation Trust are supported by an NIHR grant to the Biomedical + Research Centre at The Institute of Cancer Research and The Royal Marsden + NHS Foundation Trust. Ros Eeles and Elizabeth Bancroft are supported by Cancer + Research UK Grant C5047/A8385. \n... \nGeneration Scotland - Scottish + Executive Health Department, Chief Scientist Office, grant number CZD/16/6. + Exome array genotyping for GS:SFHS was funded by the Medical Research Council + UK. 23andMe - This work was supported in part by NIH Award 2R44HG006981-02 + from the National Human Genome Research Institute.\n2015-06-10T13:32:19Z\n2015-06-10T13:32:19Z\n2015-08-04\nArticle\npublished + version\nNature Communications 2015, 6(7756). doi: + 10.1038/ncomms8756\nhttp://www.repository.cam.ac.uk/handle/1810/248397\nhttp://dx.doi.org/10.1038/ncomms8756\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nNPG\n\n\n + \
\n \n
\n oai:dspace-production:1810/248395\n + \ 2015-10-05T14:51:13Z\n com_1810_213729\n + \ col_1810_227522\n
\n + \ \nA reliable method + for recycling (RE)-Ba-Cu-O (RE: Sm, Gd, Y) bulk superconductors\nShi, + Yunhua\nNamburi, Devendra Kumar\nWang, + Miao\nDurrell, John\nDennis, + Anthony\nCardwell, David\nRecycling\nbulk + superconductors\nliquid phase\nreliability\ntrapped + fields\nThis is the final version. It first appeared + at http://dx.doi.org/10.1111/jace.13683\nSingle + grain (RE)-Ba-Cu-O (RE: Sm, Gd, Y) high temperature superconductors are able + to generate high magnetic fields. However, the relatively high cost of the + raw materials and the low yield of the manufacturing process have impeded + the development of practical applications of these materials to date. This + article describes a simple, reliable and economical method of recycling failed + bulk (RE)-Ba-Cu-O (RE: Sm, Gd, Y) samples. Sixty-four failed bulk samples, + with diameters up to 31 mm, were recycled with a yield of 90%. The key innovation + in this recycling process involves reintroducing the liquid phase into the + melt process, which is normally lost during the primary peritectic processing + of these materials. This enables the direct re-growth of failed samples from + solid form without the need for re-grinding into powder. We also demonstrate + that the superconducting performance and microstructure of the recycled samples + is similar to that of the primary grown samples.\nWe + acknowledge the Engineering and Physical Sciences Research Council (EPSRC + grant ref.EP/K02910X/1) for financial support.\n2015-06-10T12:57:51Z\n2015-06-10T12:57:51Z\n2015-06-10\nArticle\npublished + version\nJournal of the American Ceramic Society + 2015, 98(9), 2760-2766. doi: 10.1111/jace.13683.\nhttp://www.repository.cam.ac.uk/handle/1810/248395\nhttp://dx.doi.org/10.1111/jace.13683\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nWiley\n\n\n + \
\n \n
\n oai:dspace-production:1810/248401\n + \ 2015-10-05T11:18:10Z\n com_1810_213729\n + \ col_1810_227522\n
\n + \ \nPredicting hip + fracture type with cortical bone mapping (CBM) in the Osteoporotic Fractures + in Men (MrOS) study\nTreece, Graham M.\nGee, + Andrew H.\nTonkin, Carol\nEwing, + Susan K.\nCawthon, Peggy M.\nBlack, + Dennis M.\nPoole, Kenneth E. S.\nOsteoporotic + Fractures in Men Study\nCortical Bone Mapping\nFracture + Risk\nOsteoporosis\nQCT\nThis + is the author accepted manuscript. The final version is available from Wiley + via http://dx.doi.org/10.1002/jbmr.2552\nHip + fracture risk is known to be related to material properties of the proximal + femur, but fracture prediction studies adding richer quantitative computed + tomography (QCT) measures to dual energy X-ray (DXA)-based methods have shown + limited improvement. Fracture types have distinct relationships to predictors, + but few studies have sub-divided fracture into types, since this necessitates + regional measurements and more fracture cases. This work makes use of cortical + bone mapping (CBM) to accurately assess, with no prior anatomical presumptions, + the distribution of properties related to fracture type. CBM uses QCT data + to measure the cortical and trabecular properties, accurate even for thin + cortices below the imaging resolution. The osteoporotic fractures in men (MrOS) + study is a predictive case-cohort study of men over 65: we analyse 99 fracture + cases (44 trochanteric and 55 femoral neck) compared to a cohort of 308, randomly + selected from 5,994. To our knowledge, this is the largest QCT-based predictive + hip fracture study to date, and the first to incorporate CBM analysis into + fracture prediction. We demonstrate that both cortical mass surface density, + and endocortical trabecular BMD, show significant difference in fracture cases + vs. cohort, in regions appropriate to fracture type. We incorporate these + regions into predictive models using Cox proportional hazards regression to + estimate hazard ratios, and logistic regression to estimate area under the + receiver operating characteristic curve (AUC). Adding CBM to DXA-based BMD + leads to a small but significant (p?<?0.005) improvement in model prediction + for any fracture, with AUC increasing from 0.78 to 0.79, assessed using leave-one-out + cross-validation. For specific fracture types, the improvement is more significant + (p?<?0.0001), with AUC increasing from 0.71 to 0.77 (trochanteric fractures) + and 0.76 to 0.82 (femoral neck fractures). In contrast, adding DXA-based BMD + to a CBM-based predictive model does not result in any significant improvement.\nThe + Osteoporotic Fractures in Men (MrOS) Study is supported by National Institutes + of Health funding. The following institutes provide support: the National + Institute on Ageing (NIA), the National Institute of Arthritis and Musculoskeletal + and Skin Diseases (NIAMS), the National Center for Advancing Translational + Sciences (NCATS), and NIH Roadmap for Medical Research under the following + grant numbers: U01 AG027810, U01 AG042124, U01 AG042139, U01 AG042140, U01 + AG042143, U01 AG042145, U01 AG042168, U01 AR066160, and UL1 TR000128. GMT, + AHG, DMB and KESP contributed to the conception and design of the study. All + authors were involved in the analysis or interpretation of the data, contributed + to the manuscript, and approved the final version. KESP acknowledges the support + of the NIHR Biomedical Research Centre, Cambridge. KESP received funding from + Arthritis Research UK (ARUK ref. no. 20109). GMT takes responsibility for + the integrity of the data analysis.\n2015-06-10T14:28:25Z\n2015-06-10T14:28:25Z\n2015-07-14\nArticle\naccepted + version\nJournal of Bone and Mineral Research 2015. + DOI: 10.1002/jbmr.2552\nhttp://dx.doi.org/10.1002/jbmr.2552\nhttp://www.repository.cam.ac.uk/handle/1810/248401\nen\nWiley\n\n\n + \
\n \n
\n oai:dspace-production:1810/248444\n + \ 2015-10-05T17:19:04Z\n com_1810_213729\n + \ col_1810_227522\n
\n + \ \nInvestigating + the Social Value of the Ripon Rivers Flood Alleviation Scheme\nFitton, + S. L.\nMoncaster, A.\nGuthrie, + P.\nCommunity\nDesign\nExperience\nFlooding\nFlood + alleviation\nQualitative research\nRiver + landscapes\nSocial value\nThis + is the final version of the article. It first appeared from Wiley via http://dx.doi.org/10.1111/jfr3.12176\nThis + paper argues for an approach to flood alleviation design that considers the + need not only for technical knowledge, but also a social perspective. It + is predicted that more intense rainfall and rising sea levels will result + in a greater number of people vulnerable to flood events. Flood alleviation + design in the UK is often focused upon technical and cost-effective solutions, + and consideration of social impact is seen as secondary. This paper examines + how the social value of a UK flood alleviation scheme is perceived and discussed, + by the local community and by those responsible for the design of the scheme, + and exposes differences in perceptions both between and within these two groups. + \ It recommends a future approach in which an understanding of the social + value of a flood alleviation scheme is first co-produced with the community + affected, enabling the design of a socially acceptable and successful project.\nThe + research presented in this paper is part of a larger study. The research + is conducted with the aid of funding from an Engineering and Physical Sciences + Research Council (EPSRC) iCASE doctoral award. Ove Arup and Partners also + provide sponsorship as part of the award.\n2015-06-15T10:46:21Z\n2015-06-15T10:46:21Z\n2015-05-12\nArticle\npublished + version\nJournal of Flood Risk Management 2015. DOI: + 10.1111/jfr3.12176\nhttp://dx.doi.org/10.1111/jfr3.12176\nhttp://www.repository.cam.ac.uk/handle/1810/248444\nen\nCreative + Commons Attribution 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nWiley\n\n\n + \
\n \n
\n oai:dspace-production:1810/248474\n + \ 2015-10-05T10:36:19Z\n com_1810_213729\n + \ col_1810_227522\n
\n + \ \nSingle-pixel + phase-corrected fiber bundle endomicroscopy with lensless focussing capability\nGordon, + George S. D.\nJoseph, James\nBohndiek, + Sarah\nWilkinson, Timothy D.\nThis + is the final version of the article. It first appeared from IEEE via http://dx.doi.org/10.1109/JLT.2015.2436816\nIn + this paper a novel single-pixel method for coherent imaging through an endoscopic + fiber bundle is presented. The use of a single-pixel detector allows greater + sensitivity over a wider range of wavelengths, which could have significant + applications in endoscopic fluorescence microscopy. First, the principle of + lensless focussing at the distal end of a coherent fiber bundle is simulated + to examine the impact of pixelation at microscopic scales. Next, an experimental + optical correlator system using spatial light modulators (SLMs) is presented. + A simple contrast imaging method of characterizing and compensating phase + aberrations introduced by fiber bundles is described. Experimental results + are then presented showing that our phase compensation method enables characterization + of the optical phase profile of individual fiberlets. After applying this + correction, early results demonstrating the ability of the system to electronically + adjust the focal plane at the distal end of the fiber bundle are presented. + The structural similarity index (SSIM) between the simulated image and the + experimental focus-adjusted image increases noticeably when the phase correction + is applied and the retrieved image is visually recognizable. Strategies to + improve image quality are discussed.\nG. + \ Gordon would like to acknowledge support from a Henslow Research + Fellowship from the Cambridge Philosophical Society, as well as research funding + \ from the Cambridge Cancer Centre and Cancer Research UK. S. Bohndiek would + like to acknowledge research funding from a Cancer Research UK Career Establishment + Award and the CRUK-EPSRC Cancer Imaging Centre in Cambridge and Manchester.\n2015-06-16T10:16:50Z\n2015-06-16T10:16:50Z\n2015-05-22\nArticle\npublished + version\nJournal of Lightwave Technology, 33(16), + 3419-3425. doi: 10.1109/JLT.2015.2436816\nhttp://dx.doi.org/10.1109/JLT.2015.2436816\nhttp://www.repository.cam.ac.uk/handle/1810/248474\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nIEEE\n\n\n + \
\n \n
\n oai:dspace-production:1810/248505\n + \ 2015-10-05T15:11:04Z\n com_1810_224463\n + \ col_1810_227538\n
\n + \ \nPsychometric + precision in phenotype definition is a useful step in molecular genetic investigation + of psychiatric disorders\nXu, Man K.\nGaysina, + Darya\nBarnett, Jennifer H.\nScoriels, + Linda\nLagemaat, Louie N. van de\nWong, + Andrew\nRichards, Marcus\nCroudace, + Tim J.\nJones, Peter B.\nLHA + genetics group\npsychiatric genetics\npsychometrics\naffective + disorder\nThis is the author accepted manuscript. + It is currently under an indefinite embargo pending publication by NPG.\nAffective + disorders are highly heritable but few genetic risk variants have been consistently + replicated in molecular genetic association studies. The common method of + defining psychiatric phenotypes in molecular genetic research is either a + summation of symptom scores or binary threshold score representing risk of + diagnosis. Psychometric latent variable methods can improve the precision + of psychiatric phenotypes, especially when the data structure is not straightforward. + \nUsing data from the British 1946 birth cohort, we compared summary + scores with psychometric modelling based on the General Health Questionnaire + (GHQ-28) scale for affective symptoms in an association analysis of 27 candidate + genes (249 SNPs). The psychometric method utilized a bi-factor model that + partitioned the phenotype variances into five orthogonal latent variable factors, + in accordance with the multidimensional data structure of the GHQ-28 involving + somatic, social, anxiety and depression domains. Results showed that, compared + with the summation approach, the affective symptoms defined by the bi-factor + psychometric model had a higher number of associated SNPs of larger effect + sizes. These results suggest that psychometrically-defined mental health phenotypes + can reflect the dimensions of complex phenotypes better than summation scores, + and therefore offer a useful approach in genetic association investigations.\nThis + work was supported by the Wellcome Trust [088869/Z/09/Z to M.R., P.B.J., D.G, + and T. J. C,]; Medical Research Council [MC_UU_12019/1 and MC_UU_12019/3 to + A.W, D.G., M.R]. Dr. Barnett is an employee of Cambridge Cognition, Ltd. This + work forms part of the NIHR CLAHRC EoE that PBJ directs and the NIHR Cambridge + Biomedical Research Centre.\n2015-06-16T15:38:29Z\n2015-06-16T15:38:29Z\n2015-06-30\nArticle\npublished + version\nTranslational Psychiatry 2015, 5(e593). + doi: 10.1038/tp.2015.86\nhttp://www.repository.cam.ac.uk/handle/1810/248505\nhttp://dx.doi.org/10.1038/tp.2015.86\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nNPG\n\n\n + \
\n \n
\n oai:dspace-production:1810/248518\n + \ 2015-10-05T15:18:36Z\n com_1810_721\n + \ col_1810_227512\n
\n + \ \nStructural colour + in Chondrus crispus\nChandler, Chris J.\nWilts, + Bodo D.\nVignolini, Silvia\nBrodie, + Juliet\nSteiner, Ullrich\nRudall, + Paula J.\nGlover, Beverley J.\nGregory, + Thomas\nWalker, Rachel H.\nbiophotonics\nChondrus + crispus\nhydration\nmulti-layered + cuticle\nred algae\nRhodophyta\nThis + is the final version of the article. It first appeared from NPG via http://dx.doi.org/10.1038/srep11645\nThe + marine world is incredibly rich in brilliant and intense colours. Photonic + structures are found in many different species and provide extremely complex + optical responses that cannot be achieved solely by pigments. In this study + we examine the cuticular structure of the red alga Chondrus crispus (Irish + Moss) using anatomical and optical approaches. We experimentally measure the + optical response of the multilayer structure in the cuticle. Using finite-difference + time-domain modelling, we demonstrate conclusively for the first time that + the dimensions and organisation of lamellae are responsible for the blue structural + coloration on the surface of the fronds. Comparison of material along the + apical-basal axis of the frond demonstrates that structural colour is confined + to the tips of the thalli and show definitively that a lack of structural + colour elsewhere corresponds with a reduction in the number of lamellae and + the regularity of their ordering. Moreover, by studying the optical response + for different hydration conditions, we demonstrate that the cuticular structure + is highly porous and that the presence of water plays a critical role in its + ability to act as a structural light reflector.\nThe + research leading to these results has received funding from the BBSRC David + Phillips fellowship (BBSRC David Phillips, BB/K014617/1). BJG thanks the Leverhulme + Trust grant (F/09-741/G). RHW thanks the British Phycological Society for + a Project Award (2012).\n2015-06-17T10:50:38Z\n2015-06-17T10:50:38Z\n2015-07-03\nArticle\npublished + version\nScientific Reports 2015, 5(11645). doi: + 10.1038/srep11645\nhttp://www.repository.cam.ac.uk/handle/1810/248518\nhttp://dx.doi.org/10.1038/srep11645\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nNPG\n\n\n + \
\n \n
\n oai:dspace-production:1810/248547\n + \ 2015-10-05T13:40:48Z\n com_1810_213747\n + \ col_1810_227540\n
\n + \ \nOn the motive + of some hyperKaehler varieties\nVial, Charles\nHyperkahler + manifolds\nIrreducible holomorphic symplectic varieties\nK3 + surfaces\nabelian varieties\nHilbert + schemes of points\nMotives\nAlgebraic + cycles\nChow ring\nChow-Kunneth + decomposition\nBloch-Beilinson filtration\nThis + is the author accepted manuscript. The final version is available from De + Gruyter at http://dx.doi.org/10.1515/crelle-2015-0008\nWe + show that the motive of the Hilbert scheme of length-n subschemes on a K3 + surface or on an abelian surface admits a decomposition similar to the decomposition + of the motive of an abelian variety obtained by Shermenev, Beauville, and + Deninger and Murre.\nThe author is supported + by EPSRC Early Career Fellowship number EP/K005545/1.\n2015-06-18T12:27:55Z\n2015-06-18T12:27:55Z\n2015-06-05\nArticle\naccepted + version\nJournal f?r die reine und angewandte Mathematik, + 2015. DOI: 10.1515/crelle-2015-0008\nhttp://dx.doi.org/10.1515/crelle-2015-0008\nhttp://www.repository.cam.ac.uk/handle/1810/248547\nen\nDe + Gruyter\n\n\n
\n \n + \
\n oai:dspace-production:1810/248583\n + \ 2015-10-05T10:24:58Z\n com_1810_195217\n + \ col_1810_227511\n
\n + \ \nContinuous Flow + Metathesis for Direct Valorization of Food Waste: an example of cocoa butter + triglyceride\nSchotten, Christiane\nPlaza, + Dorota\nManzini, Simone\nNolan, + Steven P.\nLey, Steven v.\nBrowne, + Duncan L.\nLapkin, Alexei\nThis + is the final version of the article. It first appeared from ACS via http://dx.doi.org/10.1021/acssuschemeng.5b00397.\nThe + direct chemical conversion of cocoa butter triglycerides, a material available + as a postmanufacture waste stream from the food industry, to 1-decene by way + of ethenolysis is reported. The conversion of the raw waste material was made + possible by use of 1 mol % of the [RuCl2(iBu-phoban)2(3-phenylindenyl)] catalyst. + The process has been investigated in both batch and flow conditions, where + the latter approach employs a Teflon AF-2400 tube-in-tube gas?liquid membrane + contactor to deliver ethylene to the reaction system. These preliminary studies + culminate in a continuous processing system, which maintained a constant output + over a 150 min period tested.\nThe ERC (Advanced + Investigator Award-FUNCAT to S.P.N.) and EPSRC are gratefully acknowledged + for support (S.V.L., D.L.B., Award No. EP/K009494/1). Umicore AG is acknowledged + for their generous gift of materials. S.P.N. is a Royal Society Wolfson Research + Merit Award holder.\n2015-06-19T12:30:52Z\n2015-06-19T12:30:52Z\n2015-05-26\nArticle\npublished + version\nACS Sustainable Chemistry & Engineering, + 3(7), 1453-1459. doi: 10.1021/acssuschemeng.5b00397\nhttp://dx.doi.org/10.1021/acssuschemeng.5b00397\nhttp://www.repository.cam.ac.uk/handle/1810/248583\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nACS\n\n\n + \
\n \n
\n oai:dspace-production:1810/248606\n + \ 2015-10-05T10:50:39Z\n com_1810_213747\n + \ col_1810_227540\n
\n + \ \nTowards Automatic + Model Comparison: An Adaptive Sequential Monte Carlo Approach\nZhou, + Yan\nJohansen, Adam M.\nAston, + John A. D.\nAdaptive Monte Carlo algorithms\nBayesian + model comparison\nNormalising constants\nPath + sampling\nThermodynamic integration\nThis + is the author accepted manuscript. The final version is available from Taylor + & Francis via http://dx.doi.org/10.1080/10618600.2015.1060885\nModel + comparison for the purposes of selection, averaging and validation is a problem + found throughout statistics. Within the Bayesian paradigm, these problems + all require the calculation of the posterior probabilities of models within + a particular class. Substantial progress has been made in recent years, but + difficulties remain in the implementation of existing schemes. This paper + presents adaptive sequential Monte Carlo (SMC) sampling strategies to characterise + the posterior distribution of a collection of models, as well as the parameters + of those models. Both a simple product estimator and a combination of SMC + and a path sampling estimator are considered and existing theoretical results + are extended to include the path sampling variant. A novel approach to the + automatic specification of distributions within SMC algorithms is presented + and shown to outperform the state of the art in this area. The performance + of the proposed strategies is demonstrated via an extensive empirical study. + Comparisons with state of the art algorithms show that the proposed algorithms + are always competitive, and often substantially superior to alternative techniques, + at equal computational cost and considerably less application-specific implementation + effort.\nAJ was supported by EPSRC grant + EP/I017984/1; JA by EPSRC grant EP/K021672/1 and the EPSRC/HEFCE CRiSM grant.\n2015-06-22T11:03:56Z\n2015-06-22T11:03:56Z\n2015\nArticle\naccepted + version\nJournal of Computational and Graphical Statistics + 2015. doi: 10.1080/10618600.2015.1060885\nhttp://www.repository.cam.ac.uk/handle/1810/248606\nhttp://dx.doi.org/10.1080/10618600.2015.1060885\nen\nTaylor + & Francis\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248629\n + \ 2015-10-05T10:12:39Z\n com_1810_224463\n + \ col_1810_227538\n
\n + \ \nA pooled genome-wide + association study of Asperger Syndrome\nWarrier, Varun\nChakrabarti, + Bhismadev\nMurphy, Laura\nChan, + Allen\nCraig, Ian\nMallya, + Uma\nLakato?ov?, Silvia\nRehnstrom, + Karola\nPeltonen, Leena\nWheelwright, + Sally\nAllison, Carrie\nFisher, + Simon E.\nBaron-Cohen, Simon\nDNA + pooling\nAsperger Syndrome\ngenotyping\nSNP\nAutism + Spectrum Conditions\nLincRNA\nKLHL1\nThis + is the final version of the article. It first appeared from PLoS via http://dx.doi.org/10.1371/journal.pone.0131202\nAsperger + Syndrome (AS) is a neurodevelopmental condition characterized by impairments + in social interaction and communication, alongside the presence of unusually + repetitive, restricted interests and stereotyped behaviour. Individuals with + AS have no delay in cognitive and language development. It is a subset of + Autism Spectrum Conditions (ASC), which are highly heritable and has a population + prevalence of approximately 1%. Few studies have investigated the genetic + basis of AS. To address this gap in the literature, we performed a genome-wide + pooled DNA association study to identify candidate loci in 612 individuals + (294 cases and 318 controls) of Caucasian ancestry, using the Affymetrix? + GeneChip Human Mapping version 6.0 array. We identified 11 SNPs that had a + p-value below 1x10-5. These SNPs were independently genotyped in the same + sample. Three of the SNPs (rs1268055, rs7785891 and rs2782448) were nominally + significant, though none remained significant after Bonferroni correction. + Two of our top three SNPs (rs7785891 and rs2782448) lie in loci previously + implicated in ASC. However, investigation of the three SNPs in the ASC genome-wide + association dataset from the Psychiatric Genomics Consortium indicated that + these three SNPs were not significantly associated with ASC. The effect sizes + of the variants were modest, indicating that our study was not sufficiently + powered to identify causal variants with precision.\nThis + work was funded by grants to SBC from the Nancy Lurie Marks Family Foundation, + the Medical Research Council (MRC) UK, Target Autism Genome, and the Autism + Research Trust (ART). LM and SEF were supported by the Max Planck Society. + VW is funded by St. John?s College, Cambridge and the Cambridge Commonwealth + Trust.\n2015-06-23T11:37:03Z\n2015-06-23T11:37:03Z\n2015-07-15\nArticle\npublished + version\nPLoS ONE 2015, 10(7), e0131202. doi: 10.1371/journal.pone.0131202\nhttp://www.repository.cam.ac.uk/handle/1810/248629\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nPLOS\n\n\n + \
\n \n
\n oai:dspace-production:1810/248634\n + \ 2015-10-05T15:15:48Z\n com_1810_221765\n + \ col_1810_227534\n
\n + \ \nDefective erythropoiesis + in a mouse model of reduced Fbxo7 expression due to decreased p27 expression\nRandle, + Suzanne J.\nNelson, David E.\nPatel, + Shachi\nLaman, Heike\nFbxo7\nubiquitin + ligase\nanaemia\ncell cycle\nmitophagy\ndifferentiation\nrs11107\nThis + is the final version of the article. It first appeared from Wiley at http://dx.doi.org/10.1002/path.4571\nDuring + the final stages of erythropoiesis, lineage-restricted progenitors mature + over \nthree to five cell divisions culminating with withdrawal from the + cell cycle and the loss of \nmost organelles, including mitochondria and + nuclei. Recent genome wide association \nstudies to associate haematological + parameters with SNPs in human populations have \nidentified several SNPs + near or within FBXO7 with erythrocyte phenotypes. Fbxo7 encodes a \nmulti-functional + F-box protein known to bind p27 and participate in selective mitophagy. \nOne + SNP causes an amino acid substitution (Met115Ile) and is associated with smaller + RBC \nsize. We find the less common IIe115 allele of Fbxo7 binds less + efficiently to p27, and cells \nexpressing this allele proliferate faster + than cells expressing Met115. We show an \nerythroleukemic cell line with + reduced Fbxo7 expression fails to stabilize p27 levels, exit the \ncell + cycle and produce haemoglobin. In addition, mice deficient for Fbxo7 expression + are \nanaemic due to a reduction in erythrocyte numbers, and this is associated + with lower p27 \nlevels, increased numbers of late-stage erythroblasts + with >2N DNA content, and delayed \nmitophagy during terminal differentiation. + Collectively, these data support an important \nphysiological, cell cycle + regulatory role for Fbxo7 during erythropoiesis.\nThis + work was supported by the BBSRC (BB/J007846/1), and the \nCambridge Fund + for the Prevention of Disease.\n2015-06-23T12:43:15Z\n2015-06-23T12:43:15Z\n2015-06-23\nArticle\npublished + version\nThe Journal of Pathology 2015, 237(2), 263-272. + doi: 10.1002/path.4571\nhttp://www.repository.cam.ac.uk/handle/1810/248634\nhttp://dx.doi.org/10.1002/path.4571\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nWiley\n\n\n + \
\n \n
\n oai:dspace-production:1810/248687\n + \ 2015-10-05T10:12:09Z\n com_1810_213729\n + \ col_1810_227522\n
\n + \ \nUnderstanding + and classifying the role of design demonstrators in scientific exploration\nMoultrie, + James\ndesign demonstrator\ntechnology + demonstrator\nboundary objects\ntechnology + transfer\ndesign\nThis + is the final version of the article. It first appeared from Elsevier via http://dx.doi.org/10.1016/j.technovation.2015.05.002\nThis + paper describes the development of a model for classifying the different type + of ?design demonstrator? that might be used in translating scientific activity + from the laboratory to the market. Two detailed case studies are described + in which designers worked closely with scientists. In one of the projects, + the scientists were seeking to commercialise their research. In the other, + the research was at an early stage and the scientists had not considered + commercialisation. Different types of physical artefact produced in these + collaborative projects were analysed to identify the extent to which they + might contribute to science, technology, application or market. Evidence indicates + that demonstrators might fulfil multiple purposes and that the translation + from science to market is more complicated than is often shown in linear + models. An original classification of the role of demonstrators through this + journey is provided.\nThis work was funded + by the United Kingdom?s Engineering and Physical Sciences Research, [Grant + Number EP/E001769/1].\n2015-06-24T15:13:14Z\n2015-06-24T15:13:14Z\n2015\nArticle\npublished + version\nTechnovation 2015, 43-44. doi: 10.1016/j.technovation.2015.05.002\nhttp://www.repository.cam.ac.uk/handle/1810/248687\nhttp://dx.doi.org/10.1016/j.technovation.2015.05.002\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nElsevier\n\n\n + \
\n \n
\n oai:dspace-production:1810/248702\n + \ 2015-10-05T15:50:39Z\n com_1810_721\n + \ col_1810_227512\n
\n + \ \nIsland-type growth + of Au-Pt heterodimers: Direct visualization of misfit dislocations and strain-relief + mechanisms\nGarc?a-Negrete, C. A.\nKnappett, + B. R.\nSchmidt, F. P.\nRojas, + T. C.\nWheatley, Andrew E. H.\nHofer, + F.\nFern?ndez, A.\nThis + is the final version of the article. It first appeared from RSC via http://dx.doi.org/10.1039/C5RA09808D\nStructural + and analytical characterization related to the formation mechanism of Au-Pt + heterodimers \nfrom polyhedral Pt nanocrystals is reported. The observation + of specific lattice strain effects and the \nemergence of misfit dislocations + point to the relevance of the Stranski-Krastanov growth mode as a \nmeans + of explaining the previously reported dimerisation reaction between Au and + Pt. Two sizedependent \nstrain relief mechanisms were identified. For + dimers grown from 4.7 nm seeds, the \nmechanism is related to bulk lattice + strain accumulation at {111} planes along with lattice relaxation \neffects + on other crystalline planes. However, for dimers grown from 11.2 nm seed sizes, + the formation of \nmisfit dislocations proved to be a highly efficient + mechanism by which to release interface mismatch \nstrain. Nanoscale chemical + mapping at Au-Pt interfaces also revealed Au-Pt alloying to be unlikely under \nthe + mild temperature conditions employed in this work for Au-Pt heterodimer synthesis.\nThis + work has received funding from the European Union within the \n7th Framework + Programme under Project Al-NanoFunc CTREGPOT- \n2011-1-285895 and Grant + Agreement no.312483 \n(ESTEEM2). We acknowledge financial support from + the CSIC (PIE \n201460E018), the Spanish Ministry MINECO (project CTQ2012- \n32519), + Junta de Andaluc?a (FEDER PE2009-FQM-4554, TEP217 \nand PE2012-TEP-862) + and the Graz Centre for Electron Microscopy \n(ZFE Graz). Thanks go also + to the UK Engineering and Physical \nSciences Research Council for a studentship + for B. R. Knappett \n(EP/J500380/1).\n2015-06-25T11:18:15Z\n2015-06-25T11:18:15Z\n2015-06-15\nArticle\npublished + version\nRSC Advances 2015, 5, 55262-55268. doi: + 10.1039/C5RA09808D\nhttp://dx.doi.org/10.1039/C5RA09808D\nhttp://www.repository.cam.ac.uk/handle/1810/248702\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nRoyal + Society of Chemistry\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248706\n + \ 2015-10-05T10:11:46Z\n com_1810_221736\n + \ col_1810_239063\n
\n + \ \nOffering within-category + food swaps to reduce energy density of food purchases: as study using an experimental + online supermarket\nForwood, Suzanna E.\nAhern, + Amy L.\nMarteau, Theresa M.\nJebb, + Susan A.\nFood choice\nPrompt\nHealthy + food\nGrocery shopping\nThis + is the final version. It was first published by BioMed Central at http://dx.doi.org/10.1186/s12966-015-0241-1\nBackground + Swaps are often used to encourage healthier food choices, but there is little + evidence of their effectiveness. The current study assessed the impact of + offering swaps on groceries purchased within a bespoke online supermarket; + specifically the objective was to measure the impact on energy density (ED) + of food purchases following the offer of lower ED alternatives (a) at point + of selection or at checkout, and (b) with or without explicit consent to receive + swap prompts Method Participants were asked to complete a 12-item shopping + task within an online shopping platform, developed for studying food purchasing. + 1610 adults were randomly assigned to a no swap control condition or to one + of four interventions: consented swaps at selection; consented swaps at checkout; + imposed swaps at selection; or imposed swaps at checkout. Each swap presented + two lower ED options from the same category as the participant?s chosen food. + Swap acceptance rate and purchased food ED were the primary outcomes. Results + Of the mean 12.36 (SD 1.26) foods purchased, intervention participants were + offered a mean of 4.1 (SD 1.68) swaps, with the potential to reduce the ED + of purchased food (effect (95 % CI): ?83 kJ/100 g (?110 ? -56), p?=?&lt;0.0001). + A median of one swap (IQR 0 to 2) was accepted, not significantly reducing + the purchased food ED (effect (95 % CI): ?24 kJ/100 g (4 ? -52), p?=?0.094). + More swaps were accepted when offered at selection than at checkout (OR (95 + % CI)?=?1.224 (1.11 ? 1.35), p?&lt;?0.0001), but no differences were seen + with consent. Purchased food ED was unaffected by point of swap or consent, + but reduced with number of swaps accepted (effect per swap (95 % CI)?=??24 + kJ/100 g (?35 ? -14), p?&lt;?0.0001). Conclusion Within category swaps + did not reduce the ED of food purchases reflecting the observation that the + use of swaps within an on-line shopping platform offered small potential gains + in ED and a minority was accepted.\nThis + work was funded by the Department of Health (England) Policy Research Program + (Policy Research Unit in Behaviour and Health [PR-UN-0409-10109]).\n2015-06-25T11:53:12Z\n2015-06-25T11:53:12Z\n2015-06-25\nArticle\npublished + version\nInternational Journal of Behavioral Nutrition + and Physical Activity 2015, 12(85). doi: 10.1186/s12966-015-0241-1\nhttp://dx.doi.org/10.1186/s12966-015-0241-1\nhttp://www.repository.cam.ac.uk/handle/1810/248706\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nBioMed + Central\n\n\n
\n \n + \
\n oai:dspace-production:1810/248723\n + \ 2015-10-05T10:45:05Z\n com_1810_219480\n + \ col_1810_227545\n
\n + \ \nEffect of shear + forces and ageing on the compliance of adhesive pads in adult cockroaches\nZhou, + Yanmin\nRobinson, Adam\nViney, + Christine\nFederle, Walter\nbiomechanics\nadhesion\ninsect + cuticle\nmaterial properties\nageing\nwear\nThis + is the accepted manuscript. It is currently embargoed pending publication.\nThe + flexibility of insect adhesive pads is crucial for their ability to attach + on rough surfaces. Here \nwe use transparent substrates with micropillars + to test in adult cockroaches (Nauphoeta cinerea) \nwhether and how the + stiffness of smooth adhesive pads changes when shear forces are applied, and + whether the insect?s age has any influence. We found that during pulls towards + the body, the pad?s ability to conform to the surface microstructures was + improved in comparison to a contact without shear, suggesting that shear forces + make the pad more compliant. The mechanism underlying this shear-dependent + increase in compliance is still unclear. The effect was not explained by viscoelastic + creep, changes in normal pressure, or shear-induced pad rolling, which brings + new areas of cuticle into surface contact. Adhesive pads were significantly + stiffer in older cockroaches. Stiffness increased most rapidly in cockroaches + aged between 2.5 and 4 months. The increase in stiffness is likely based on + wear and repair of the delicate adhesive cuticle. Recent wear (visualised + by methylene blue staining) was not age-dependent, whereas permanent damage + (visible as brown scars) accumulated with age, reducing the pads? flexibility.\nThis + study was supported by a studentship from the Cambridge Overseas Trust (to + Y.Z.) and research grants from the UK Biotechnology and Biological Sciences + Research Council [BB/I008667/1], the Human Frontier Science Programme [RGP0034/2012] + and AkzoNobel.\n2015-06-25T14:08:29Z\n2015-06-25T14:08:29Z\n2015-07-23\nArticle\naccepted + version\nThe Journal of Experimental Biology 2015, + 218, 2775-2781. doi: 10.1242/?jeb.124362\nhttp://www.repository.cam.ac.uk/handle/1810/248723\nhttp://dx.doi.org/10.1242/?jeb.124362\nen\nThe + Company of Biologists\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248739\n + \ 2015-10-05T10:11:00Z\n com_1810_221736\n + \ col_1810_239063\n
\n + \ \nSeasonal variation + in diagnosis of invasive cutaneous melanoma in Eastern England and Scotland\nWalter, + Fiona M.\nAbel, Gary A.\nLyratzopoulos, + Georgios\nMelia, Jane\nGreenberg, + David\nBrewster, David H.\nButler, + Helen\nCorrie, Pippa G.\nCampbell, + Christine\nThis is the final version of the article. + It first appeared from Elsevier via http://dx.doi.org/10.1016/j.canep.2015.06.006\nBackground \nWorldwide, + the incidence of cutaneous melanoma has been reported to be highest in the + summer and lowest in the winter. Northern Irish data suggested seasonal variation + for women only, especially those with thinner melanomas, sited on limbs. We + interrogated two larger UK cancer registries for temporal differences in melanoma + diagnosis and associated patient characteristics. \nMethods \nMelanomas + diagnosed from 2006 to 2010 in the Eastern England and Scottish cancer registries + (n=11,611) were analysed by month of diagnosis, patient demographics and melanoma + characteristics, using descriptive and multivariate modelling methods. \nResults \nMore + patients with melanoma were diagnosed in the summer months (June 9.9%, July + 9.7%, August 9.8%) than the winter months (December 7.2%, January 7.2%, February + 7.1%) and this pattern was consistent in both regions. There was evidence + that the seasonal patterns varied by sex (p=0.015), melanoma thickness (p=0.002), + body site (p=0.006), and type (superficial spreading melanomas p=0.005). The + seasonal variation was greatest for diagnosis of melanomas occurring on the + limbs. \nConclusion \nThis study has confirmed seasonal variation + in melanoma diagnosis in Eastern England and Scotland across almost all population + demographics and melanoma characteristics studied, with higher numbers diagnosed + in the summer months, particularly on the limbs. Seasonal patterns in skin + awareness and related help-seeking are likely to be implicated. Targeted patient + interventions to increase sun awareness and encourage year-long skin inspection + are warranted.\nThe paper was materially + supported by the National Institute for Health Research (NIHR-CS-012-030), + supporting FMW through a Clinician Scientist award. The views expressed in + this publication are those of the authors and not necessarily those of the + NHS, the National Institute for Health Research or the Department of Health. + During this project, GL was supported by a post-doctoral fellowship by the + National Institute for Health Research (PDF-2011-04-047) to the end of 2014; + and by a Cancer Research UK Clinician Scientist Fellowship award (A18180) + from March 2015.\n2015-06-26T13:45:42Z\n2015-06-26T13:45:42Z\n2015-07-02\nArticle\npublished + version\nhttp://www.repository.cam.ac.uk/handle/1810/248739\nhttp://dx.doi.org/10.1016/j.canep.2015.06.006\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\n\n\n + \
\n \n
\n oai:dspace-production:1810/248741\n + \ 2015-10-05T16:43:25Z\n com_1810_245351\n + \ com_1810_221767\n col_1810_245352\n + \
\n \nConsumption of + sugar-sweetened beverages, artificially sweetened beverages, and fruit juice + and incidence of type 2 diabetes: a systematic review, meta-analysis, and + estimation of population attributable fraction\nImamura, + Fumiaki\nO?Connor, Laura\nYe, + Zheng\nMursu, Jaakko\nHayashino, + Yasuaki\nBhupathiraju, Shilpa N.\nForouhi, + Nita G.\nThis is the final version of the article. + It first appeared from BMJ via http://dx.doi.org/10.1136/bmj.h3576\nBackground + Current evidence is insufficient for prospective associations of consuming + sugar-sweetened beverages (SSB), artificially-sweetened beverages (ASB), and + fruit juice with type 2 diabetes (T2D) for which adiposity is adequately controlled. + The population attributable fraction (PAF) for T2D remains unknown. \nObjectives + To examine these prospective associations before and after adjustment for + adiposity; and to estimate PAF for T2D due to SSB consumption in the United + States and the United Kingdom. \nData sources and eligibility Prospective + studies of non-diabetic adults, published until February 2014, were identified + by searching PubMed, EMBASE, OVID, and Web-of-Knowledge. The PAF was estimated + in national surveys in the US, 2009-2010 (n=4,729 representing 189.1 million + non-diabetic adults) and the UK, 2008-2012 (n=1,932 representing 44.7 million). \nSynthesis + methods Random-effects meta-analysis and survey analysis for PAF due to SSB + consumption. \nResults Prespecified information was extracted from seventeen + cohorts (38,253 cases/10,126,754 person-years). Higher SSB consumption was + associated with higher incidence of T2D by 18% per one serving/day (95% confidence + interval=8.8 to 28%, I2 for heterogeneity=89%) and 13% (5.8 to 21%, I2=79%) + before and after adjustment for adiposity, respectively; for ASB, 25% (18 + to 33%, I2=70%) and 8% (2.1 to 15%, I2=64%); and for fruit juice, 5% (-1.0 + to 11%, I2=58%) and 7% (0.8 to 14%, I2=51%). Potential sources of heterogeneity + or bias were not evident for SSB. For ASB, publication bias and residual confounding + were indicated. For fruit juice, the finding was non-significant in studies + ascertaining T2D objectively (Pheterogeneity=0.008). Under specified assumptions + for PAF, of 20.9 million events of T2D predicted to occur over 10 years in + the US (absolute event rate=11.0%), 1.8 million would be attributable to SSB + consumption (PAF=8.7%, 95% confidence interval=3.9 to 12.9%); and of 2.6 million + events in the UK (absolute event rate=5.8%), 79 thousand would be attributable + to SSB consumption (PAF=3.6%, 1.7 to 5.6%). \nLimitations Residual confounding + and limited evidence of causality.\t \nConclusions Habitual SSB consumption + was associated with greater T2D incidence, independently of adiposity. Although + ASB and fruit juice also showed positive associations with T2D incidence, + the findings were likely to involve bias. Nonetheless, both ASB and fruit + juice were unlikely to be healthy alternatives to SSB for the prevention of + T2D. Under assumption of causality, SSB consumption over years may be related + to a substantial number of cases of new-onset diabetes.\nThe + study was funded by Medical Research Council Epidemiology Unit Core Support + [MC_UU_12015/5]. SNB was supported by American Heart Association Postdoctoral + Fellowship Grant (13POST14370012).\n2015-06-26T14:00:03Z\n2015-06-26T14:00:03Z\n2015-06-26\nArticle\naccepted + version\nBMJ 2015, 351, h3576. doi: 10.1136/bmj.h3576\nhttp://www.repository.cam.ac.uk/handle/1810/248741\nhttp://dx.doi.org/10.1136/bmj.h3576\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\n\n\n + \
\n \n
\n oai:dspace-production:1810/248747\n + \ 2015-10-05T15:25:15Z\n com_1810_245351\n + \ com_1810_221767\n col_1810_245352\n + \
\n \nThe cross-sectional + association between snacking behaviour and measures of adiposity: The Fenland + Study, UK.\nO?Connor, Laura\nBrage, + S?ren\nGriffin, Simon J.\nWareham, + Nicholas J.\nForouhi, Nita G.\nbody + composition\nadiposity\nobesity\nsnacking\neating + patterns\nThis is the final version of the article. + It first appeared from British Journal of Nutrition via http://dx.doi.org/10.1017/S000711451500269X\nUnhealthy + dietary behaviours may contribute to obesity additionally to energy imbalance. + Both positive and null associations of snacking and BMI have been reported, + but the association of snacking and total adiposity or pattern of fat deposition + remains unevaluated. The objective was to investigate associations between + snacking frequency and detailed adiposity measurements. 10092 adults resident + in Cambridgeshire, England, self-completed eating pattern snacking frequency, + food-frequency and physical activity questionnaires. Measurements included + anthropometry, body composition using DEXA scan and ultrasound, and assessment + of physical activity energy expenditure (PAEE) using heart-rate and movement + sensing. Linear regression analyses were conducted adjusted for age, socio-demographics, + dietary quality, energy intake, PAEE and screen-time, by sex and BMI status. + Among normal weight individuals (BMI<25kg/m2) each additional snack was + inversely associated with obesity measures: lower total body fat in men and + women [-0.41(95%CI, -0.74,-0.07)%, -0.41(-0.67,-0.15)% respectively] and waist + circumference [-0.52(-0.90,-0.14)cm] in men. Contrastingly, among the overweight/obese + (BMI?25kg/m2), there were positive associations: higher waist circumference + [0.80(0.34,0.28)cm] and subcutaneous fat [0.06(0.01,0.110cm] in women and + waist circumference [0.37(0.00,0.73)cm] in men. Comparing intakes of snack-type + foods showed that participants with BMI?25kg/m2 had higher intakes of crisps, + sweets, chocolates, ice-creams and lower intakes of yoghurt and nuts than + normal weight participants. Adjusting for these foods in a model that included + a BMI-snacking interaction term attenuated all associations to null. Snacking + frequency may be associated with higher or lower adiposity, with the direction + of association being differential by BMI status and dependent on snack-food + choice. Improving snack choices could contribute to anti-obesity public health + interventions.\nThe Fenland Study is funded + by the Wellcome Trust and the Medical Research Council. Support from Medical + Research Council programmes MC_UU_12015/1 and MC_UU_12015/5 is acknowledged.\n2015-06-30T11:06:54Z\n2015-06-30T11:06:54Z\n2015-09-07\nArticle\npublished + version\nhttp://www.repository.cam.ac.uk/handle/1810/248747\nhttp://dx.doi.org/10.1017/S000711451500269X\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\n\n\n + \
\n \n
\n oai:dspace-production:1810/248748\n + \ 2015-10-05T11:08:20Z\n com_1810_245118\n + \ col_1810_245874\n
\n + \ \nCell-based screen + for altered nuclear phenotypes reveals senescence progression in polyploid + cells after Aurora kinase B inhibition\nSadaie, Mahito\nDillon, + Christian\nNarita, Masako\nYoung, + Andrew R. J.\nCairney, Claire J.\nGodwin, + Lauren S.\nTorrance, Christopher J.\nBennett, + Dorothy C.\nKeith, W. Nicol\nNarita, + Masashi\nThis is the author accepted manuscript. + The final version is available from the American Society for Cell Biology + via http://dx.doi.org/10.1091/mbc.E15-01-0003\nCellular + senescence is a widespread stress response and is widely considered to be + an alternative cancer therapeutic goal. Unlike apoptosis, senescence is composed + of a diverse set of sub-phenotypes; depending on which of its associated effector + programs are engaged. Here we establish a simple and sensitive, cell-based, + pro-senescence screen with detailed validation assays. We have characterized + the screen using a focused tool compound kinase inhibitor library. We have + identified a series of compounds that induce different types of senescence, + including a unique phenotype associated with irregularly shaped nuclei and + the progressive accumulation of pseudo-G1 tetraploidy in human diploid fibroblasts. + Downstream analyses showed that all those compounds that induced tetraploid + senescence, inhibited Aurora kinase B (AURKB). AURKB is the catalytic component + of the chromosome passenger complex, which is involved in correct chromosome + alignment and segregation, the spindle assembly checkpoint (SAC), and cytokinesis. + Although aberrant mitosis and senescence have been linked, a specific characterization + of AURKB in the context of senescence is still required. This proof-ofprinciple + study suggests that our protocol is capable of amplifying tetraploid senescence, + which can be observed only in a small population of oncogenic RAS-induced + senescence, and provides additional justification for AURKB as a cancer therapeutic + target.\nThis work was supported by the University + of Cambridge, Cancer Research UK, Hutchison Whampoa; Cancer Research UK grants + A6691 and A9892 (M.N., N.K., C.J.T., D.C.B., C.J.C., L.S.G, and M.S.); a fellowship + from the Uehara Memorial Foundation (M.S.).\n2015-06-30T11:25:12Z\n2015-06-30T11:25:12Z\n2015-07-01\nArticle\naccepted + version\nMolecular Biology of the Cell 2015, 26(17), + 2791-2785. doi: 10.1091/mbc.E15-01-0003\nhttp://www.repository.cam.ac.uk/handle/1810/248748\nhttp://dx.doi.org/10.1091/mbc.E15-01-0003\nen\nAttribution-NonCommercial-ShareAlike + 2.0 UK: England & Wales\nhttp://creativecommons.org/licenses/by-nc-sa/2.0/uk/\n\n\n + \
\n \n
\n oai:dspace-production:1810/248750\n + \ 2015-10-05T15:36:01Z\n com_1810_246163\n + \ col_1810_246164\n
\n + \ \nConstraint of + gene expression by chromatin remodelling protein CHD4 facilitates lineage + specification\nO?Shaughnessy-Kirwan, Aoife\nSignolet, + Jason\nCostello, Ita\nGharbi, + Sarah\nHendrich, Brian\nLineage + Commitment\nChromatin Remodelling\nBlastocyst\nTranscription\nTrophectoderm\nCHD + 4\nThis is the final version of the article. + It first appeared from the Company of Biologists via http://dx.doi.org/10.1242/dev.125450\nChromatin + remodelling proteins are essential for different aspects of metazoan biology, + yet functional details of why these proteins are important are lacking. While + it is possible to describe the biochemistry of how they remodel chromatin, + their chromatin binding profiles in cell lines, and gene expression changes + upon loss of a given protein, in very few cases can this easily translate + into an understanding of how the function of that protein actually influences + a developmental process. Here we investigate how the chromatin remodelling + protein CHD 4 facilitates the first lineage decision in mammalian embryogenesis. + Embryos lacking CHD4 can form a morphologically normal early blastocyst, but + are unable to successfully complete the first lineage decision and make \nfunctional + trophectoderm ( TE). In the absence of a functional TE, CHD4 mutant blastocysts + do not implant and are hence not viable. By measuring transcript levels in + single cells from early embryos, we show that CHD4 influences the frequency + at which unspecified cells in preimplantation stage embryos express lineage + markers prior to the execution of this first lineage decision. In the absence + of CHD4 this frequency is increased in 16-cell embryos, and by the blastocyst + stage cells fail to properly adopt a TE gene expression programme. We propose + that CHD 4 allows cells to undertake lineage commitment in vivo by modulating + the frequency with which lineage specification genes are expressed. This provides + novel insight both into how lineage decisions are made in mammalian cells, + and how a chromatin remodelling protein functions to facilitate lineage commitment.\n2015-06-30T11:52:50Z\n2015-06-30T11:52:50Z\n2015-06-26\nArticle\npublished + version\nDevelopment 2015, 142, 2586-2597. doi: 10.1242/dev.125450\nhttp://dx.doi.org/10.1242/dev.125450\nhttp://www.repository.cam.ac.uk/handle/1810/248750\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nCompany + of Biologists\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248749\n + \ 2015-10-05T15:30:59Z\n com_1810_221925\n + \ col_1810_227520\n
\n + \ \nMultimodal MRI + can identify perfusion and metabolic changes in the invasive margin of glioblastomas\nPrice, + Stephen J.\nYoung, Adam M. H.\nScotton, + William J.\nChing, Jared\nMohsen, + Laila A.\nBoonzaier, Natalie R.\nLupson, + Victoria C.\nGriffiths, John R.\nMcLean, + Mary A.\nLarkin, Timothy J.\nGlioblastomas\nInvasive + margin\nDiffusion tensor imaging\nMR + spectroscopy\nPerfusion MRI\nThis + is the final version of the article. It first appeared from Wiley via http://dx.doi.org/10.1002/jmri.24996\nPurpose: + Invasion of normal brain is a cardinal feature of glioblastomas (GBM) and + a major cause of treatment failure. Diffusion tensor MR (DTI) can identify + invasive regions. The aim of this study was to use perfusion and MR spectroscopy + to compare the DTI-defined invasive and non-invasive regions. Materials and + Methods: 50 GBM patients were imaged pre-operatively at 3 T with anatomic + sequences, DTI, dynamic susceptibility perfusion MR (DSCI) and multivoxel + spectroscopy. The DTI and DSCI data were co-registered to the spectroscopy + data and regions of interest were made in the invasive (determined by DTI), + non-invasive regions and normal brain. Values of relative cerebral blood volume + (rCBV), N-acetyl aspartate (NAA), myoinositol (mI), total choline (Cho) and + glutamate+glutamine (Glx) normalized to creatine (Cr) and Cho/NAA were measured + at each ROI. Results: Invasive regions showed significant increases in rCBV + suggesting angiogenesis (invasive rCBV 1.64 [95%CI 1.5?1.76] vs. non-invasive + 1.14 [1.09-1.18]; P<0.001), Cho/Cr (invasive 0.42 [0.38?0.46] vs. non-invasive + 0.35 [0.31-0.38]; P=0.02) and Cho/NAA (invasive 0.54 [0.41-0.68] vs. non-invasive + 0.37 [0.29-0.45]; P=<0.03) suggesting proliferation, and Glx/Cr (invasive + 1.54 [1.27-1.82] vs. non-invasive 1.3 [1.13-1.47]; P=0.028) suggesting glutamate + release; and a significantly reduced NAA/Cr (invasive 0.95 [0.85-1.05] vs. + non-invasive 1.19 [1.06-1.31]; P=0.008). The mI/Cr was not different between + the three ROIs (invasive 1.2 [0.99-1.41] vs. non-invasive 1.3 [1.14-1.46]; + P=0.68). In the non-invasive regions, the values were not different from normal + brain. Conclusions: Combining DTI to identify the invasive region with perfusion + and spectroscopy, we can identify changes in invasive regions not seen in + non-invasive regions.\nThis study was funded + from a National Institutes of Health Research Clinician Scientist Fellowship\n2015-06-30T11:42:57Z\n2015-06-30T11:42:57Z\n2015-07-03\nArticle\npublished + version\nJournal of Magnetic Resonance Imaging 2015. + doi: 10.1002/jmri.24996\nhttp://www.repository.cam.ac.uk/handle/1810/248749\nhttp://dx.doi.org/10.1002/jmri.24996\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\n\n\n + \
\n \n
\n oai:dspace-production:1810/248751\n + \ 2015-10-05T15:39:14Z\n com_1810_224463\n + \ col_1810_227538\n
\n + \ \nThe impact of + neuroscience on society: Cognitive enhancement in neuropsychiatric disorders + and in healthy people\nSahakian, Barbara J.\nBruhl, + Annette B.\nCook, Jennifer\nKillikelly, + Clare\nSavulich, George\nPiercy, + Thomas\nHafizi, Sepehr\nPerez, + Jesus\nFernandez-Egea, Emilio\nSuckling, + John\nJones, Peter B.\ncognitive + enhancers\nneuroethics\ncognitive + training\nschizophrenia\ngame\nsmart + drugs\nstudents\nThis + is the final version of the article. It first appeared from RSC via http://dx.doi.org/10.1098/rstb.2014.0214\nIn + addition to causing distress and disability to the individual, neuropsychiatric + disorders are also extremely expensive to society and governments. These disorders + are both common and debilitating and impact on cognition, functionality and + wellbeing. Cognitive enhancing drugs, such as cholinesterase inhibitors and + methylphenidate, are used to treat cognitive dysfunction in Alzheimer?s disease + and Attention Deficit Hyperactivity Disorder, respectively. Other cognitive + enhancers include specific computerized cognitive training and devices. An + example of a novel form of cognitive enhancement using the technological advancement + of a game on an iPad which also acts to increase motivation is presented. + Cognitive enhancing drugs, such as methylphenidate and modafinil, which were + developed as treatments, are increasingly being used by healthy people. Modafinil + not only affects ?cold? cognition, but also improves ?hot? cognition, such + as emotion recognition and task-related motivation. The lifestyle use of ?smart + drugs? raises both safety concerns as well as ethical issues, including coercion + and increasing disparity in society. As a society, we need to consider which + forms of cognitive enhancement (e.g. pharmacological, exercise, life-long + learning) are acceptable and for which groups (e.g. military, doctors) under + what conditions (e.g. war, shift work) and by what methods we would wish to + improve and flourish.\nAll cited psychopharmacological + work from Professor Sahakian laboratory was funded by a Wellcome Trust Grant + (089589/Z/09/Z) awarded to T.W. Robbins, B.J. Everitt, A.C. Roberts, J.W. + Dalley, and B.J. Sahakian, and it was conducted at the Behavioural and Clinical + Neuroscience Institute, which is supported by a joint award from the Medical + Research Council and Wellcome Trust (G00001354). B.J. Sahakian receives funding + from the Human Brain Project. We thank Janssen/J&J for funding the study + on cognitive training in schizophrenia.\n2015-06-30T12:11:40Z\n2015-06-30T12:11:40Z\n2015-08-03\nArticle\npublished + version\nPhilosophical Transactions of the Royal + Society B: Biological Sciences 2015, 370(1677). doi: 10.1098/rstb.2014.0214\nhttp://www.repository.cam.ac.uk/handle/1810/248751\nhttp://dx.doi.org/10.1098/rstb.2014.0214\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\n\n\n + \
\n \n
\n oai:dspace-production:1810/248752\n + \ 2015-10-05T11:16:56Z\n com_1810_198332\n + \ col_1810_227536\n
\n + \ \nStrong mechanical + driving of a single electron spin\nBarfuss, A.\nTeissier, + J.\nNeu, E.\nNunnenkamp, + A.\nMaletinsky, P.\nThis + is the author accepted manuscript. The final version is available from NPG + via http://dx.doi.org/10.1038/nphys3411\nQuantum + devices for sensing and computing applications require coherent quantum systems, + which can be manipulated in fast and robust ways [1]. Such quantum control + is typically achieved using external electromagnetic fields, which drive the + system's orbital [2], charge [3] or spin [4, 5] degrees of freedom. However, + most existing approaches require complex and unwieldy gate structures, and + with few exceptions [6, 7] are limited to the regime of weak coherent driving. + Here, we present a novel approach to coherently drive a single electronic + spin using internal strain fields [8-10] in an integrated quantum device. + Specifically, we employ time-varying strain in a diamond cantilever to induce + long-lasting, coherent oscillations of an embedded Nitrogen-Vacancy (NV) centre + spin. We perform direct spectroscopy of the phonon-dressed states emerging + from this drive and observe hallmarks of the sought-after strong drivng regime + [6, 11], where the spin rotation frequency exceeds the spin splitting. Additionally, + we employ our continuous strain driving to significantly enhance the NV's + spin coherence time [12]. Our room-temperature experiments thereby constitute + an important step towards strain-driven, integrated quantum devices and open + new perspectives to investigate unexplored regimes of strongly driven multi-level + systems [13] and to study exotic spin dynamics in hybrid spin-oscillator devices.\nWe + gratefully acknowledge financial support from SNI; NCCR QSIT; SNF grants 200021_143697; + and EU FP7 grant 611143 (DIADEMS). AN holds a University Research Fellowship + from the Royal Society and acknowledges support from the Winton Programme + for the Physics of Sustainability.\n2015-06-30T12:21:28Z\n2015-06-30T12:21:28Z\n2015-08-03\nArticle\naccepted + version\nNature Physics 2015, 11, 820-824. doi: 10.1038/nphys3411\nhttp://www.repository.cam.ac.uk/handle/1810/248752\nhttp://dx.doi.org/10.1038/nphys3411\nen\nNPG\n\n\n + \
\n \n
\n oai:dspace-production:1810/248759\n + \ 2015-10-05T11:24:15Z\n com_1810_213729\n + \ col_1810_227522\n
\n + \ \nAn efficient + model of drillstring dynamics\nButlin, T.\nLangley, + R. S.\ndrillstring dynamics\nfriction\ncutting\nimpact\nnonlinear + vibration\nlocal nonlinearity\ndigital + filters\nfinite element\nwhirl\nstick-slip\nThis + is the author accepted manuscript. The final version is available from Elsevier + via http://dx.doi.org/10.1016/j.jsv.2015.06.033\nHigh + amplitude vibration regimes can cause significant damage to oilwell drillstrings: + torsional stick-slip oscillation, forward whirl and backward whirl are each + associated with different kinds of damage. There is a need for models of drillstring + dynamics that can predict this variety of phenomena that are: efficient enough + to carry out parametric studies; simple enough to provide insight into the + underlying physics, and which retain sufficient detail to correlate to real + drillstrings. The modelling strategy presented in this paper attempts to balance + these requirements. It includes the dynamics of the full length of the drillstring + over a wide bandwidth but assumes that the main nonlinear effects are due + to spatially localised regions of strong nonlinearity, for example at the + drillbit cutting interface and at stabilisers where the borehole wall clearance + is smallest. The equations of motion can be formed in terms of this reduced + set of degrees of freedom, coupled to the nonlinear contact laws and solved + by time-domain integration. Two implementations of this approach are presented, + using (1) digital filters and (2) a Finite Element model to describe the linear + dynamics. Choosing a sampling period that is less than the group delay between + nonlinear degrees of freedom results in a decoupled set of equations that + can be solved very efficiently. Several cases are presented which demonstrate + a variety of phenomena, including stick-slip oscillation; forward whirl and + backward whirl. Parametric studies are shown which reveal the conditions which + lead to high amplitude vibration regimes, and an analytic regime boundary + is derived for torsional stick-slip oscillation. The digital filter and Finite + Element models are shown to be in good agreement and are similarly computationally + efficient. The digital filter approach has the advantage of more intuitive + interpretation, while the Finite Element model is more readily implemented + using existing software packages.\nThe authors + are grateful to industrial support and permission to publish this work, and + would like to thank Prof Jim Woodhouse for technical contributions, and Dr + Louis Kovalevski for assistance with the Finite Element model.\n2015-07-01T08:34:10Z\n2015-07-01T08:34:10Z\n2015-07-23\nArticle\naccepted + version\nJournal of Sound and Vibration 2015, 356, + 100-123. doi: 10.1016/j.jsv.2015.06.033\nhttp://www.repository.cam.ac.uk/handle/1810/248759\nhttp://dx.doi.org/10.1016/j.jsv.2015.06.033\nen\nAttribution-NonCommercial-NoDerivs + 2.0 UK: England & Wales\nhttp://creativecommons.org/licenses/by-nc-nd/2.0/uk/\nElsevier\n\n\n + \
\n \n
\n oai:dspace-production:1810/248763\n + \ 2015-10-05T15:43:41Z\n com_1810_195764\n + \ col_1810_227521\n
\n + \ \nFlotation of + magmatic minerals\nEdmonds, Marie\nThis + is the final version of the article. It first appeared from The Geological + Society of America at http://dx.doi.org/10.1130/focus072015.1\n2015-07-01T10:42:40Z\n2015-07-01T10:42:40Z\n2015-06-09\nArticle\npublished + version\nGeology 2015, 43(7), 655?656. doi: 10.1130/focus072015.1\nhttp://dx.doi.org/10.1130/focus072015.1\nhttp://www.repository.cam.ac.uk/handle/1810/248763\nen\nhttp://creativecommons.org/licenses/by/4.0/\nGeological + Society of America\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248764\n + \ 2015-10-05T11:44:46Z\n com_1810_721\n + \ col_1810_227512\n
\n + \ \nAb Initio Molecular-Dynamics + Simulation of Neuromorphic Computing in Phase-Change Memory Materials\nSkelton, + Jonathan M.\nLoke, Desmond\nLee, + Taehoon\nElliott, Stephen R.\nbrain-inspired/neuromorphic + computing\nphase-change materials\ncomputational + modeling\nab initio molecular-dynamics simulations\nelectronic + synapse\nThis is the author accepted manuscript. + The final version is available from ACS via http://dx.doi.org/10.1021/acsami.5b01825\n[Images + - see article] \nWe present an in silico study of the neuromorphic-computing + behavior of the prototypical phase-change material, Ge2Sb2Te5, using ab initio + molecular-dynamics simulations. Stepwise changes in structural order in response + to temperature pulses of varying length and duration are observed, and a good + reproduction of the spike-timing-dependent plasticity observed in nanoelectronic + synapses is demonstrated. Short above-melting pulses lead to instantaneous + loss of structural and chemical order, followed by delayed partial recovery + upon structural relaxation. We also investigate the link between structural + order and electrical and optical properties. These results pave the way toward + a first-principles understanding of phase-change physics beyond binary switching.\nJ.M.S. + gratefully acknowledges funding from an internal graduate studentship provided + by Trinity College, Cambridge, and from a U.K. Engineering and Physical Sciences + Research Council Programme Grant (Grant No. EP/K004956/1). This work was primarily + carried out using the Cambridge HPC facility (www.hpc.cam.ac.uk), and some + additional calculations were performed using the ARCHER supercomputer through + membership of the U.K. HPC Materials Chemistry Consortium, which is funded + by EPSRC Grant No. EP/L000202.\n2015-07-01T10:53:17Z\n2015-07-01T10:53:17Z\n2015-06-23\nArticle\naccepted + version\nACS Applied Materials & Interfaces 2015, + 7(26), 14223?14230. doi: 10.1021/acsami.5b01825\nhttp://dx.doi.org/10.1021/acsami.5b01825\nhttp://www.repository.cam.ac.uk/handle/1810/248764\nen\nACS\n\n\n + \
\n \n
\n oai:dspace-production:1810/248765\n + \ 2015-10-05T15:47:38Z\n com_1810_195764\n + \ col_1810_227521\n
\n + \ \nKinetics of CO2-Fluid-Rock + Reactions in a Basalt Aquifer, Soda Springs, Idaho\nMaskell, + Alexandra\nKampman, Niko\nChapman, + Hazel\nCondon, Daniel J.\nBickle, + Mike\ncarbon sequestration\nCO2-water-rock + interaction\nfeldspar dissolution\ngibbs + free energy\nBlackfoot Volcanic Field\nSoda + Springs\nThis is the final version of the article. + It first appeared from Elsevier via http://dx.doi.org/10.1016/j.apgeochem.2015.06.010\nThe + dissolution of silicate minerals by CO2?rich fluids and the subsequent precipitation + of CO2 as carbonate minerals represent a means of permanently storing anthropogenic + CO2 waste products in a solid and secure form. Modelling the progression of + these reactions is hindered by our poor understanding of the rates of mineral + dissolution-precipitation reactions and mineral surface properties in natural + systems. This study evaluates the chemical evolution of groundwater flowing + through a basalt aquifer, which forms part of the leaking CO2-charged system + of the Blackfoot Volcanic Field in south-eastern Idaho, USA. Reaction progress + is modelled using changes in groundwater chemistry by inverse mass balance + techniques. The CO2-promoted fluid-mineral reactions include the dissolution + of primary plagioclase, orthoclase, pyroxene and gypsum which is balanced + by the precipitation of secondary albite, calcite, zeolite, kaolinite and + silica. Mineral mole transfers and groundwater flow rates estimated from hydraulic + head data are used to determine the kinetics of plagioclase and orthoclase + feldspar dissolution. Plagioclase surface area measurements were determined + using the evolution of the U-series isotope ratios in the groundwater and + are compared to published surface area measurements. Calculated rates of dissolution + for plagioclase range from 2.4 x 10-12 to 4.6 x 10-16 mol/m2/s and orthoclase + from 2.0 x 10-13 to 6.8 x 10-16 mol/m2/s respectively. These feldspar reaction + rates, correlate with the degree of mineral-fluid disequilibrium and are similar + to the dissolution rates for these mineral measured in other natural CO2-charged + groundwater systems.\nCarbon research at + Cambridge is supported by Natural Environment Research Council grant NE/F004699/1, + part of the UK CRIUS (Carbon Research Into Underground Storage) consortium + and DECC through the ??20 million? competition. Niko Kampman acknowledges + financial support from Shell Global Solutions International.\n2015-07-01T10:55:02Z\n2015-07-01T10:55:02Z\n2015-06-24\nArticle\npublished + version\nApplied Geochemistry 2015, 61, 272-283. + doi: 10.1016/j.apgeochem.2015.06.010\nhttp://dx.doi.org/10.1016/j.apgeochem.2015.06.010\nhttp://www.repository.cam.ac.uk/handle/1810/248765\nen\nAttribution-NonCommercial-NoDerivs + 2.0 UK: England & Wales\nAttribution 4.0\nhttp://creativecommons.org/licenses/by-nc-nd/2.0/uk/\nhttp://creativecommons.org/licenses/by/4.0/\nElsevier\n\n\n + \
\n \n
\n oai:dspace-production:1810/248768\n + \ 2015-10-05T15:53:21Z\n com_1810_721\n + \ col_1810_227512\n
\n + \ \nLigand Removal + from CdS Quantum Dots for Enhanced Photocatalytic H2 Generation in pH Neutral + Water\nChang, Christina M.\nOrchard, + Katherine L.\nMartindale, Benjamin C. M.\nReisner, + Erwin\nThis is the final version of the article. + It first appeared from RSC via http://dx.doi.org/10.1039/C5TA04136H\nLigand-free + CdS quantum dots were produced by a reactive ligand stripping procedure and + employed for photocatalytic H2 evolution in pH neutral solution. The rate + of H2 generation of the ?bare? quantum dots was 175 times higher than that + of the equivalent mercaptopropionic acid-capped quantum dots in the presence + of a cobalt co-catalyst and Na2SO3 as sacrificial electron donor. Under optimised + conditions, a turnover number of 58,000 mol H2 per mol Co and 29,000 mol H2 + per mol CdS quantum dots was achieved after 88 h of continuous solar light + irradiation (? > 420 nm, 1 sun intensity). Ligand removal is therefore + a potent method to substantially enhance the photocatalytic performance of + quantum dot systems.\nWe gratefully acknowledge + the following funding sources: The Marshall Aid Commemoration Commission (CMC), + the Advanced Institute for Materials Research-??Cambridge Joint Research Centre + (KLO), the Ernest Oppenheimer Fund, Cambridge (BCMM), and the EPSRC (EP/H00338X/2; + ER).\n2015-07-01T11:16:11Z\n2015-07-01T11:16:11Z\n2015-06-19\nArticle\npublished + version\nJournal of Materials Chemistry A 2015. doi: + 10.1039/C5TA04136H\nhttp://dx.doi.org/10.1039/C5TA04136H\nhttp://www.repository.cam.ac.uk/handle/1810/248768\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nRoyal + Society of Chemistry\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248769\n + \ 2015-10-05T15:56:16Z\n com_1810_34586\n + \ col_1810_227529\n
\n + \ \nFull-width low + AC loss coated conductor production by substrate modification\nHopkins, + S. C.\nThis is the final version of the article. + It first appeared from IOP via http://dx.doi.org/10.1088/0953-2048/28/9/090501\nThe + author gratefully acknowledges funding from the European Union Seventh Framework + Programme (FP7/2007-2013) project ?EUROTAPES? (grant agreement NMP-LA-2012-280432).\n2015-07-01T11:22:51Z\n2015-07-01T11:22:51Z\n2015-07-20\nArticle\npublished + version\nSuperconductor Science and Technology 2015, + 28(9), 090501. doi: 10.1088/0953-2048/28/9/090501\nhttp://www.repository.cam.ac.uk/handle/1810/248769\nhttp://dx.doi.org/10.1088/0953-2048/28/9/090501\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nIOP + Science\n\n\n
\n \n + \
\n oai:dspace-production:1810/248775\n + \ 2015-10-05T12:40:54Z\n com_1810_213729\n + \ col_1810_227522\n
\n + \ \nAn Optimization + Model for Antenna Selection and Deployment in Single and Multi-cell RFID Systems\nZou, + Sicheng\nCrisp, Michael\nSabesan, + Sithamparanathan\nKadri, Abdullah\nPenty, + Richard V.\nWhite, Ian H.\nPassive + radio frequency identification (RFID)\nmulti-cell\n3D + modelling\noptimization\ncell + deployment\nsignal to interference ratio (SIR)\nThis + is the accepted manuscript.\nThis paper presents + an optimization model for antenna selection and deployment in ceiling mounted, + single and multi-cell RFID systems. The proposed model utilises a three-dimensional + (3D) antenna radiation pattern, taking into consideration of both antenna + half power beam width and downtilt angle. Specifically, we have analysed the + effects of cell structures on detection probability in single-cell operation + and signal-to-interference ratio (SIR) in multi-cell scenario. Four cell structures + have been studied, namely, triangular cells, conventional rectangular cells, + offset rectangular cells and hexagonal cells. Several design examples are + also presented to show how to use this model to find the optimal configuration + to cover the maximum area with a minimum number of antennas for a single cell + scenario, as well as the trade-offs that have to be made to achieve a reasonable + SIR in multi-cell operation. We believe this optimization model provides new + insights into the optimal deployment of single and multi-cell RFID systems.\nThis + work was made possible by NPRP grant #NPRP4?726 ? 2 ? 272 from the Qatar National + Research Fund (a member of The Qatar Foundation). The statements made herein + are solely the responsibility of the authors.\n2015-07-01T13:00:56Z\n2015-07-01T13:00:56Z\n2015\nArticle\naccepted + version\nIEEE Conference on RFID Technology and Applications + 2015\nhttp://www.repository.cam.ac.uk/handle/1810/248775\nen\nIEEE\n\n\n + \
\n \n
\n oai:dspace-production:1810/248778\n + \ 2015-10-05T12:28:12Z\n com_1810_245321\n + \ col_1810_245322\n
\n + \ \ndamidseq pipeline: + an automated pipeline for processing DamID sequencing datasets\nMarshall, + Owen J.\nBrand, Andrea H.\nThis + is the final published version. It first appeared at http://dx.doi.org/10.1093/bioinformatics/btv386\nSummary: + DamID is a powerful technique for identifying regions of the genome bound + by a DNA-binding (or DNA-associated) protein. Currently no method exists for + automatically processing next-generation sequencing DamID (DamID-seq) data, + and the use of DamID-seq datasets with normalisation based on read-counts + alone can lead to high background and the loss of bound signal. DamID-seq + thus presents novel challenges in terms of normalisation and background minimisation. + We describe here damidseq_pipeline, a software pipeline that performs automatic + normalisation and background reduction on multiple DamID-seq FASTQ datasets. \n \nAvailability + and implementation: Open-source and freely available from http://owenjm.github.io/damidseq_pipeline. + The damidseq_pipeline is implemented in Perl and is compatible with any Unix-based + operating system (e.g. Linux, Mac OSX).\nWe + thank Charles Bradshaw for helpful comments on the software. \nThis work + was supported by the BBSRC [BB/L00786X/1] and \nWellcome Trust [092545]. + The Gurdon Institute is supported \nby core funding from the Wellcome + Trust [092096] and CRUK \n[C6946/A14492].\n2015-07-01T13:36:10Z\n2015-07-01T13:36:10Z\n2015-06-25\nArticle\npublished + version\nBioinformatics 2015. doi: 10.1093/bioinformatics/btv386\nhttp://dx.doi.org/10.1093/bioinformatics/btv386\nhttp://www.repository.cam.ac.uk/handle/1810/248778\nen\nAttribution + 2.0 UK: England & Wales\nhttp://creativecommons.org/licenses/by/2.0/uk/\nOxford + Journals on behalf of the International Society for Computational Biology\n\n\n + \
\n \n
\n oai:dspace-production:1810/248781\n + \ 2015-10-05T16:00:15Z\n com_1810_721\n + \ col_1810_227512\n
\n + \ \nInfluence of + receptor flexibility on intramolecular H-bonding interactions\nSun, + Hongmei\nGuo, Kai\nGan, + Haifeng\nLi, Xin\nHunter, + Christopher A.\nThis is the final version of + the article. It first appeared from RSC via http://dx.doi.org/10.1039/C5OB00805K\nAtropisomers + of a series of zinc tetraphenyl porphyrins were synthesized and used as supramolecular + receptors. Rotation around the porphyrin-meso phenyl bonds is restricted by + installing ortho-chlorine substituents on the phenyl groups. The chlorine + substituents allowed chromatographic separation of atropisomers, which did + not interconvert at room temperature. The porphyrin meso phenyl groups were + also equipped with phenol groups, which led to the formation of intramolecular + H-bonds when the zinc porphyrins were bound to pyridine ligands equipped with + ester or amide side arms. Binding of the pyridine ligands with the conformationally + locked chloroporphyrins with was compared with the corresponding unsubstituted + porphyrins, which are more flexible. The association constants of 150 zinc + porphyrin-pyridine complexes were measured in two different solvents, toluene + and 1,1,2,2-tetrachloroethane (TCE). These association constants were then + used to construct 120 chemical double mutant cycles to quantify the influence + of chlorine substitution on the free energy of intramolecular H-bonds formed + between the phenol side arms of the porphyrins and the ester or amide side + arms of the pyridine ligands. Conformational restriction leads to increases + in the stability of some complexes and decreases in the stability of others + with variations in the free energy contribution due to intramolecular H-bonding + of -5 to +6 kJ mol-1.\nWe thank the EPSRC, + the China Scholarship Council, and the University of Sheffield for funding.\n2015-07-01T13:47:20Z\n2015-07-01T13:47:20Z\n2015-07-01\nArticle\npublished + version\nOrganic & Biomolecular Chemistry 2015, + 3, 8053-8066. doi: 10.1039/C5OB00805K\nhttp://www.repository.cam.ac.uk/handle/1810/248781\nhttp://dx.doi.org/10.1039/C5OB00805K\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nRoyal + Society of Chemistry\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248782\n + \ 2015-10-05T14:53:08Z\n com_1810_34586\n + \ col_1810_227529\n
\n + \ \nA computational + study of the quantum transport properties of a Cu?CNT composite\nGhorbani-Asl, + Mahdi\nBristowe, Paul D.\nKoziol, + Krzysztof\nThis is the author accepted manuscript. + The final version is available from the Royal Society of Chemistry via http://dx.doi.org/10.1039/C5CP01470K\nThe + quantum transport properties of a Cu?CNT composite are studied using a non-equilibrium + Green?s function approach combined with the self-consistent-charge density-functional + tight-binding method. The results show that the electrical conductance of + the composite depends strongly on CNT density and alignment but more weakly + on chirality. Alignment with the applied bias is preferred and the conductance + of the composite increases as its mass density increases.\nThe + European Research Council provided financial support for this work under the + Seventh Framework Program FP7/2007-2013 (ERC grant agreement no. 259061). + Computational support from the Cambridge High Performance Computing Cluster + is gratefully acknowledged.\n2015-07-01T14:16:45Z\n2015-07-01T14:16:45Z\n2015-06-23\nArticle\naccepted + version\nPhysical Chemistry Chemical Physics 2015,17, + 18273-18277. doi: 10.1039/C5CP01470K\nhttp://dx.doi.org/10.1039/C5CP01470K\nhttp://www.repository.cam.ac.uk/handle/1810/248782\nen\nRoyal + Society of Chemistry\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248791\n + \ 2015-10-05T16:07:13Z\n com_1810_221736\n + \ col_1810_239063\n
\n + \ \nCross sectional + and longitudinal associations between cardiovascular risk factors and age + related macular degeneration in the EPIC-Norfolk Eye study.\nYip, + Jennifer L. Y.\nKhawaja, Anthony P.\nChan, + Michelle P. Y.\nBroadway, David C.\nPeto, + Tunde\nTufail, Adnan\nLuben, + Robert\nHayat, Shabina\nBhaniani, + Amit\nWareham, Nicholas J.\nKhaw, + Kay-Tee\nFoster, Paul J.\nmacular + degeneration\ninflammation\nHDL\nThis + is the final version of the article. It first appeared from PLoS via http://dx.doi.org/10.1371/journal.pone.0132565\nPurpose: + \nTo examine the cross sectional and longitudinal relationship between + cardiovascular risk factors and age-related macular degeneration (AMD) in + a large British cohort study. \n \nMethods: The EPIC Norfolk Eye + study is nested in a larger prospective cohort study. Data on cardiovascular + risk factors were collected at baseline (1993-1997) and follow up (2006-2011) + via clinical examination, validated lifestyle questionnaires and serum blood + samples. AMD was ascertained using standardised grading of fundus photographs + at the follow up. Logistic regression was used to examine associations between + baseline and follow up risk factors with AMD. \n \nResults: \n5,344 + pairs (62.0% of total 8623) of fundus photographs were of sufficient quality + for grading of AMD in participants with mean age of 67.4 years old (range + 44-91) at diagnosis. There were 28 cases of late AMD (0.5%, 95% confidence + interval (CI)=0.3-0.8%) and 645 cases of early AMD (12.1%, 95%CI=11.2-13.0.%). + In multivariable analysis, older people with higher levels of baseline high + density lipoprotein- cholesterol (HDL-C ) and C-reactive protein (CRP) were + more likely to have any signs of AMD, after adjusting for sex, education, + smoking, and systolic blood pressure. In cross sectional analysis, only older + age and higher HDL were significantly associated with AMD. \n \nConclusions. \nWe + have found that older age and higher levels of CRP and HDL-C were associated + with increased odds of AMD in this population in the longitudinal analysis, + but older age and HDL-C, not CRP was significantly associated with AMD in + the cross sectional analysis. The prevalence of AMD in this cohort was low + compared to other cohorts in Europe, the US and Australia, and probably reflects + the some selection biases in follow up participation as well as the low rate + of smoking among our healthy participants.\nEPIC-Norfolk + infrastructure and core functions are supported by grants from the Medical + Research Council (G0401527) and Cancer Research UK (C864/A8257). The clinic + for the third health examination was funded by Age UK Research into Ageing + grant (262). Dr Yip is a National Institute for Health Research (NIHR) Clinical + Lecturer. Dr Khawaja is a Wellcome Trust Clinical Research Fellow. Michelle + Chan is an MRC/RCOphth Clinical Training Fellow and has received additional + support from the International Glaucoma Association. Professor Foster has + received additional support from the Richard Desmond Charitable Trust (via + Fight for Sight). Professor Foster and Tunde Peto received funding from the + Department for Health through the award made by the NIHR to Moorfields Eye + Hospital and the UCL Institute of Ophthalmology for a specialist Biomedical + Research Centre for Ophthalmology.\n2015-07-01T16:20:12Z\n2015-07-01T16:20:12Z\n2015-07-15\nArticle\npublished + version\nPLoS ONE 2015, 10(7), e0132565. doi: 10.1371/journal.pone.0132565\nhttp://www.repository.cam.ac.uk/handle/1810/248791\nhttp://dx.doi.org/10.1371/journal.pone.0132565\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nPLoS\n\n\n + \
\n \n
\n oai:dspace-production:1810/248794\n + \ 2015-10-05T16:03:36Z\n com_1810_223857\n + \ col_1810_226622\n
\n + \ \nHow to let go: + pectin and plant cell adhesion\nDaher, Firas Bou\nBraybrook, + Siobhan A.\ncell adhesion\npectin\npolygalacturonase\npectin + methylesterase\ncell separation\nThis + is the final version of the article. It first appeared from Frontiers via + \ http://dx.doi.org/10.3389/fpls.2015.00523\nPlant + cells do not, in general, migrate. They maintain a fixed position relative + to their neighbours, intimately linked through growth and differentiation. + The mediator of this connection, the pectin-rich middle lamella, is deposited + during cell division and maintained throughout the cell?s life to protect + tissue integrity. The maintenance of adhesion requires cell wall modification + and is dependent on the actin cytoskeleton. There are developmental processes + that require cell separation, such as organ abscission, dehiscence, and ripening. + In these instances, the pectin-rich middle lamella must be actively altered + to allow cell separation, a process which also requires cell wall modification. + In this review, we will focus on the role of pectin and its modification in + cell adhesion and separation. Recent insights gained in pectin gel mechanics + will be discussed in relation to existing knowledge of pectin chemistry as + it relates to cell adhesion. As a whole, we hope to begin defining the physical + mechanisms behind a cells? ability to hang on, and how it lets go.\nThe + writing of this review was carried out with the help of grant BB-L002884-1 + (BBSRC, UK).\n2015-07-02T08:40:20Z\n2015-07-02T08:40:20Z\n2015-07-14\nArticle\npublished + version\nFrontiers in Plant Science 6:523. doi: + 10.3389/fpls.2015.00523\nhttp://dx.doi.org/10.3389/fpls.2015.00523\nhttp://www.repository.cam.ac.uk/handle/1810/248794\nen\nAttribution + 2.0 UK: England & Wales\nhttp://creativecommons.org/licenses/by/2.0/uk/\nFrontiers\n\n\n + \
\n \n
\n oai:dspace-production:1810/248796\n + \ 2015-10-05T16:11:28Z\n com_1810_223857\n + \ col_1810_226622\n
\n + \ \nTuning of Pectin + Methylesterification: Consequences for Cell Wall Biomechanics and Development\nLevesque-Tremblay, + Gabriel\nPelloux, Jerome\nBraybrook, + Siobhan A.\nM?ller, Kerstin\npectin + methylesterification\npectin acetylation\nhomogalacturonan + biosynthesis\ncell wall loosening\ncell + wall stiffening\nThis is the final version of + the article. It first appeared from Springer via http://dx.doi.org/10.1007/s00425-015-2358-5\nPectins + are highly complex polysaccharides abundant in plant primary cell walls. New + analytical and microscopy techniques are revealing the composition and mechanical + properties of the cell wall and increasing our knowledge on the topic. Progress + in plant physiological research supports a link between cell wall pectin modifications + and plant development and interactions with the environment. Homogalacturonan + pectins, which are major components of the primary cell wall, have a potential + for modifications such as methylesterification, as well as an ability to form + cross-linked structures with divalent cations. This contributes to changing + the mechanical properties of the cell wall. This review aims to give a comprehensive + overview of the pectin component homogalacturonan, including its synthesis, + modification, regulation and role in the plant cell wall.\nThe + financial support from the NSERC Postgraduate Scholarships (to G.L.-T.), the + Institut Universitaire de France (IUF) to J.P. and a Marie Curie International + Outgoing Fellowship to K.M. is gratefully acknowledged.\n2015-07-02T09:09:38Z\n2015-07-02T09:09:38Z\n2015-07-14\nArticle\npublished + version\nPlanta 2015, 242, 791-811. doi: 10.1007/s00425-015-2358-5\nhttp://www.repository.cam.ac.uk/handle/1810/248796\nhttp://dx.doi.org/10.1007/s00425-015-2358-5\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nSpringer\n\n\n + \
\n \n
\n oai:dspace-production:1810/248799\n + \ 2015-10-05T16:13:37Z\n com_1810_243448\n + \ com_1810_221680\n com_1810_194745\n + \ col_1810_243509\n
\n + \ \nInternationalization + within networks: exploring the relationship between inward and outward FDI + in China?s auto components industry\nHertenstein, Peter\nSutherland, + Dylan\nAnderson, John\nInward-outward + FDI linkages\nbusiness networks\ninternationalization + process model\nauto components\nChina\nThis + is the accepted manuscript. It is currently embargoed pending publication.\nWe + explore how the outward FDI strategies of Chinese auto component MNCs are \nshaped + by sub-contracting supply relationships established with developed market + MNCs. \nWe argue the strong presence of foreign MNC business networks + developed through prior \ninward FDI constitutes an important home country + effect influencing the outward FDI \nstrategies of emerging market MNCs. + Using the updated internationalization process model, \nwe show how commitment + to business networks is a critical mechanism driving the \ninternationalization + trajectories of Chinese auto component MNCs. This includes geographic \nlocation + choices to psychically distant developed markets, strategic asset seeking + orientation, \npace of internationalisation and entry mode decisions.\n2015-07-02T09:16:36Z\n2015-07-02T09:16:36Z\n2015\nArticle\naccepted + version\nAsia Pacific Journal of Management 2015\nhttp://www.repository.cam.ac.uk/handle/1810/248799\nhttp://dx.doi.org/10.1007/s10490-015-9422-3\nen\nSpringer\n\n\n + \
\n \n
\n oai:dspace-production:1810/248805\n + \ 2015-10-05T13:16:13Z\n com_1810_213729\n + \ col_1810_227522\n
\n + \ \nTuned mass damper + effects on the response of multi-storied structures observed in geotechnical + centrifuge tests\nJabary, R. N.\nMadabhushi, + S. P. G.\nTuned mass damper\ndynamic + soil-structure interaction\ngeotechnical centrifuge\nThis + is the final version of the article. It first appeared from Elsevier via http://dx.doi.org/10.1016/j.soildyn.2015.06.013\nTuned + mass dampers (TMDs) are widely used to reduce vibrations in structures. However, + very little research is available on the experimental investigation of TMDs + and their performance in soilstructure systems. In this paper, a series of + geotechnical centrifuge tests was conducted to investigate the effects of + TMDs on the response of a multiple-storey sway frame structure undergoing + dynamic soil-structure interaction (SSI). Structural responses were recorded + for a wide range of input motion characteristics, damper configurations and + soil profiles. The practicality associated with the use of TMDs in the damping + of resonant structures in light of unexpected earthquake characteristics different + from design earthquakes was experimentally demonstrated. Tuning a TMD to soil-structure + system properties rather than fixed-base structural properties was found to + double the improvement in damping and reduce the original peak response by + nearly half. The potential effectiveness of a detuned mass damper in light + of significant SSI was also demonstrated.\nThe + financial help during the course of the study was extended by the Engineering + and Physical Sciences Research Council (EPSRC).\n2015-07-02T09:23:49Z\n2015-07-02T09:23:49Z\n2015-07-14\nArticle\npublished + version\nSoil Dynamics and Earthquake Engineering + 2015, 77, 373-380. doi: 10.1016/j.soildyn.2015.06.013\nhttp://www.repository.cam.ac.uk/handle/1810/248805\nhttp://dx.doi.org/10.1016/j.soildyn.2015.06.013\nen\nElsevier\n\n\n + \
\n \n
\n oai:dspace-production:1810/248809\n + \ 2015-10-05T16:16:12Z\n com_1810_198332\n + \ col_1810_227536\n
\n + \ \nNanopore analysis + of amyloid fibrils formed by lysozyme aggregation\nMartyushenko, + Nikolay\nBell, Nicholas A. W.\nLamboll, + Robin D.\nKeyser, Ulrich F.\nThis + is the accepted manuscript. The final version is available at http://dx.doi.org/10.1039/C5AN00530B\nThe + measurement of single particle size distributions of amyloid fibrils is crucial + for determining mechanisms of growth and toxicity. Nanopore sensing is an + attractive solution for this problem since it gives information on aggregates? + shapes with relatively high throughput for a single particle technology. In + this paper we study the translocation of lysozyme fibrils through quartz glass + nanopores. We demonstrate that, under appropriate salt and pH conditions, + lysozyme fibrils translocate through bare quartz nanopores without causing + significant clogging. This enables us to measure statistics on tens of thousands + of translocations of lysozyme fibrils with the same nanopore and track their + development over a time course of aggregation spanning 24h. Analysis of our + events shows that the statistics are consistent with a simple bulk conductivity + model for the passage of rods with a fixed cross sectional area through a + conical glass nanopore.\nN.A.W.B. acknowledges + funding from the EPSRC NanoDTC program and an EPSRC doctoral prize award and + U.F.K. acknowledges funding from an ERC starting grant, PassMembrane (261101).\n2015-07-02T10:34:50Z\n2015-07-02T10:34:50Z\n2015-05-12\nArticle\naccepted + version\nAnalyst, 2015,140, 4882-4886. doi: 10.1039/C5AN00530B\nhttp://dx.doi.org/10.1039/C5AN00530B\nhttp://www.repository.cam.ac.uk/handle/1810/248809\nen\nRoyal + Society of Chemistry\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248810\n + \ 2015-10-05T13:25:26Z\n com_1810_721\n + \ col_1810_227512\n
\n + \ \nCrystallization + and disorder of the polytypic ?1 and ?2 polymorphs of piroxicam\nUpadhyay, + Pratik P.\nBond, Andrew D.\nThis + is the accepted manuscript. The final version is available at http://dx.doi.org/10.1039/C5CE00050E\nPolymorphism + of the active pharmaceutical ingredient piroxicam, C15H13N3O4S, is investigated + with an aim to clarify the identity and crystallization conditions of the + ?1 and ?2 polymorphs. The structures are polytypic, containing identical 2-dimensional + layers, with different symmetry relationships between the layers. The ?1 structure + is orthorhombic and non-centrosymmetric (space group type Pca21), while the + ?2 structure is monoclinic and centrosymmetric (space group type P21/c). ?2 + can be crystallized by evaporation from ethanol at 25?C, while ?1 is obtained + by crystallization from the same solvent at 4?C. The polytypic relationship + provides a suitable condition for order-disorder phenomena to be observed + in single crystals. Intermolecular interaction energies calculated using the + PIXEL method suggest that the centrosymmetric interlayer regions in ?2 involving + the pyridyl groups are more stabilising than the corresponding non-centrosymmetric + interlayer regions in ?1. This is consistent with observations of inversion + twinning in non-centrosymmetric ?1 crystals. The interlayer regions involving + the benzothiazine groups have very similar interaction energies in the two + structures.\nThis work was funded by the + Danish Council for Independent \nResearch | Natural Sciences (DFF-1323-00122).\n2015-07-02T10:46:23Z\n2015-07-02T10:46:23Z\n2015-03-05\nArticle\naccepted + version\nCrystEngComm, 2015, 28, 5266-5272. doi: + 10.1039/C5CE00050E\nhttp://dx.doi.org/10.1039/C5CE00050E\nhttp://www.repository.cam.ac.uk/handle/1810/248810\nen\nRoyal + Society of Chemistry\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248813\n + \ 2015-10-05T16:22:20Z\n com_1810_721\n + \ col_1810_227512\n
\n + \ \nOn the lag phase + in amyloid fibril formation\nArosio, Paolo\nKnowles, + Tuomas P. J.\nLinse, Sara\nThis + is the final version of the article. It first appeared from RSC via http://dx.doi.org/10.1039/C4CP05563B\nThe + formation of nanoscale amyloid fibrils from normally soluble proteins is a + common form of self-assembly phenomenon that has fundamental connections with + biological functions and human diseases. The kinetics of this process has + been widely studied and exhibits on a macroscopic level three characteristic + stages: a lag phase, a growth phase and a final plateau regime. The question + of which molecular events take place during each one of these phases has been + a central element in the quest for a mechanism of amyloid formation. In this + review, we discuss the nature and molecular origin of the lag-phase in amyloid + formation by making use of tools and concepts from physical chemistry, in + particular from chemical reaction kinetics. We discuss how, in macroscopic + samples, it has become apparent that the lag-phase is not a waiting time for + nuclei to form. Rather, multiple parallel processes exist and typically millions + of primary nuclei form during the lag phase from monomers in solution. Thus, + the lag-time represents a time that is required for the nuclei that are formed + early on in the reaction to grow and proliferate in order to reach an aggregate + concentration that is readily detected in bulk assays. In many cases, this + proliferation takes place through secondary nucleation, where fibrils may + present a catalytic surface for the formation of new aggregates. Fibrils may + also break (fragmentation) and thereby provide new ends for elongation. Thus, + at least two - primary nucleation and elongation - and in many systems at + least four - primary nucleation, elongation, secondary nucleation and fragmentation + - microscopic processes occur during the lag phase. Moreover, these same processes + occur during the all three phases of the macroscopic aggregation process, + albeit at different rates as governed by rate constants and by the concentration + of reacting species at each point in time.\nThis + work was supported by the Swedish Research Council (SL) and its Linneus Centre + Organizing Molecular Matter for CD spectrometer, plate readers (SL), the Alzheimer + Foundation Sweden (SL), the Frances and Augustus Newman Foundation (TPJK), + the BBSRC (TPJK), and the Marie Curie fellowship scheme for career development + (PA).\n2015-07-02T11:07:45Z\n2015-07-02T11:07:45Z\n2015-02-03\nArticle\npublished + version\nPhysical Chemistry Chemical Physics 2015,17, + 7606-7618. doi: 10.1039/C4CP05563B\nhttp://dx.doi.org/10.1039/C4CP05563B\nhttp://www.repository.cam.ac.uk/handle/1810/248813\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nRoyal + Society of Chemistry\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248814\n + \ 2015-10-05T16:19:07Z\n com_1810_219480\n + \ col_1810_227545\n
\n + \ \nFunctional morphology + and efficiency of the antenna cleaner in Camponotus rufifemur ants\nHackmann, + Alexander\nDelacave, Henry\nRobinson, + Adam\nLabonte, David\nFederle, + Walter\nThis is the final version of the article. + It first appeared from RSC via http://dx.doi.org/10.1098/rsos.150129\nContamination + of body surfaces can negatively affect many physiological functions. Insects + have evolved different adaptations for removing contamination, including surfaces + that allow passive self-cleaning and structures for active cleaning. Here, + we study the function of the antenna cleaner in Camponotus rufifemur ants, + a clamp-like structure consisting of a notch on the basitarsus facing a spur + on the tibia, both bearing cuticular ?combs? and ?brushes?. The ants clamp + one antenna tightly between notch and \nspur, pull it through, and subsequently + clean the antenna cleaner itself with the mouthparts. We simulated cleaning + strokes by moving notch or spur over antennae contaminated with fluorescent + particles. The notch removed particles more efficiently than the spur, but + both components eliminated >60% of the particles with the first stroke. + Ablation of bristles, brush and comb strongly reduced the efficiency, indicating + that they are essential for cleaning. To study how comb and brush remove particles + of different sizes, we contaminated antennae of living ants, and anaesthetized + them immediately after they had performed the first cleaning stroke. Different + sized beads were trapped in distinct zones of the notch, consistent with the + gap widths between cuticular outgrowths. This suggests that the antenna cleaner + operates like a series of sieves that remove the largest objects first, followed + by smaller ones, down to the smallest particles that get caught by adhesion.\nTo + AH: Research grant from the Konrad-Adenauer-Foundation \nTo DL: Research + grant from the Cusanuswerk \nTo WF: UK Biotechnology and Biological Sciences + Research Council (BB/I008667/1)\n2015-07-02T11:22:33Z\n2015-07-02T11:22:33Z\n2015-07-22\nArticle\npublished + version\nRoyal Society Open Science 2015, 2, 150129. + doi: 10.1098/rsos.150129\nhttp://www.repository.cam.ac.uk/handle/1810/248814\nhttp://dx.doi.org/10.1098/rsos.150129\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nRoyal + Society Publishing\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248815\n + \ 2015-10-05T16:24:25Z\n com_1810_219481\n + \ col_1810_227506\n
\n + \ \nShadow Kernels: + A General Mechanism For Kernel Specialization in Existing Operating Systems\nChick, + Oliver R. A.\nCarata, Lucian\nSnee, + James\nBalakrishnan, Nikilesh\nSohan, + Ripduman\nThis is the final version of the article. + It first appeared from ACM via http://dx.doi.org/10.1145/2797022.2797027\nExisting + operating systems share a common kernel text section amongst all processes. + It is not possible to perform kernel specialization or tuning such that different + applications execute text optimized for their kernel use despite the benefits + of kernel specialization for performance guided optimization, exokernels, + kernel fastpaths, and cheaper hardware access. Current specialization primitives + involve system wide changes to kernel text, which can have adverse effects + on other processes sharing the kernel due to the global side-effects. We present + shadow kernels: a primitive that allows multiple kernel text sections to coexist + in a contemporary operating system. By remapping kernel virtual memory on + a context-switch, or for individual system calls, we specialize the kernel + on a fine-grained basis. Our implementation of shadow kernels uses the Xen + hypervisor so can be applied to any operating system that runs on Xen.\nThis + work was principally supported by internal funds from the Computer Laboratory + at the University of Cambridge; and also by the Engineering and Physical Sciences + Research Council [grant number EP/K503009/1].\n2015-07-02T11:22:41Z\n2015-07-02T11:22:41Z\n2015\nArticle\npublished + version\nAPSys 2015, doi: 10.1145/2797022.2797027\nhttp://www.repository.cam.ac.uk/handle/1810/248815\nhttp://dx.doi.org/10.1145/2797022.2797027\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nACM\n\n\n + \
\n \n
\n oai:dspace-production:1810/248820\n + \ 2015-10-05T16:33:01Z\n com_1810_219480\n + \ col_1810_227545\n
\n + \ \nAntigenic maps + of influenza A/H3N2 virus produced with human antisera obtained after primary + infection\nFonville, Judith M.\nFraaij, + Pieter L. A.\nde Mutsert, Gerrie\nWilks, + Samuel. H.\nvan Beek, Ruud\nFouchier, + Ron A. M.\nRimmelzwaan, Guus F.\nPrimary + infection\ninfluenza\nhuman + antisera\nantigenic cartography\nantibody + landscapes\nThis is the final version of the + article. It first appeared from Oxford University Press via http://dx.doi.org/10.1093/infdis/jiv367\nBackground: + Antigenic characterization of influenza viruses is typically based on hemagglutination + inhibition (HI) assay data of viral isolates tested against strain-specific + post-infection ferret antisera. Here, similar virus characterizations were + performed using first-infection human rather than ferret serology data. \nMethods: + We screened sera collected between 1995 and 2011 from children between 9 and + 24 months of age for influenza virus antibodies, performed HI tests for the + positive sera against 24 influenza viruses isolated between 1989 and 2011, + and measured HI titers of 24 A/H3N2 ferret sera against the same panel of + viruses. \nResults: Of the 17 positive human sera, 6 were high-responders, + showing HI patterns that would be expected from primary infection antisera, + while 11 sera had lower, more dispersed patterns of reactivity that are not + easily explained. The antigenic map based on the high-responder human HI data + was similar to the results using ferret data. \nConclusions: Although + the overall structure of the ferret and human antigenic maps is similar, local + differences in virus positions indicate that the human and ferret immune system + might see antigenic properties of viruses differently. Further studies are + needed to establish to what degree of detail ferret data provide equivalent + patterns to human serological reactivity.\nThis + work was supported by the award of a Fellowship in Biomedical Informatics + from the Medical Research Council UK [grant number MR/K021885/1] and a Junior + Research Fellowship from Homerton College Cambridge to J.M.F.; a Medical Research + Council UK studentship [number MR/K50127X/1 to S.H.W.]; the EU FP7 project + PREPARE [grant number 602525 to P.L.A.F.]; the National Institute of Allergy + and Infectious Diseases, National Institutes of Health [contract number HHSN272201400008C + to R.A.M.F and the Center for Pathogen Evolution]; and the EU grant FLUNIVAC + [grant number 602604 to G.F.R.].\n2015-07-02T13:25:15Z\n2015-07-02T13:25:15Z\n2015-07-03\nArticle\npublished + version\nThe Journal of Infectious Diseases 2015. + doi: 10.1093/infdis/jiv367\nhttp://www.repository.cam.ac.uk/handle/1810/248820\nhttp://dx.doi.org/10.1093/infdis/jiv367\nen\nAttribution + 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nOxford + Journals\n\n\n
\n \n + \
\n oai:dspace-production:1810/248821\n + \ 2015-10-05T13:47:13Z\n com_1810_219480\n + \ col_1810_227545\n
\n + \ \nQuantifying similarity + in animal vocal sequences: which metric performs best?\nKershenbaum, + Arik\nGarland, Ellen C.\nSequence\nanimal + communication\nvocal\nedit + distance\nMarkov\nstochastic + processes\nThis is the author accepted manuscript. + The final version is available from Wiley via http://dx.doi.org/10.1111/2041-210X.12433\n1.\tMany + animals communicate using sequences of discrete acoustic elements which can + be complex, vary in their degree of stereotypy, and are potentially open-ended. + Variation in sequences can provide important ecological, behavioural, or evolutionary + information about the structure and connectivity of populations, mechanisms + for vocal cultural evolution, and the underlying drivers responsible for these + processes. Various mathematical techniques have been used to form a realistic + approximation of sequence similarity for such tasks. \n2.\tHere, we use + both simulated and empirical datasets from animal vocal sequences (rock hyrax, + Procavia capensis; humpback whale, Megaptera novaeangliae; bottlenose dolphin, + Tursiops truncatus; and Carolina chickadee, Poecile carolinensis) to test + which of eight sequence analysis metrics are more likely to reconstruct the + information encoded in the sequences, and to test the fidelity of estimation + of model parameters, when the sequences are assumed to conform to particular + statistical models. \n3.\tResults from the simulated data indicated that + multiple metrics were equally successful in reconstructing the information + encoded in the sequences of simulated individuals (Markov chains, n-gram models, + repeat distribution, and edit distance), and data generated by different stochastic + processes (entropy rate and n-grams). However, the string edit (Levenshtein) + distance performed consistently and significantly better than all other tested + metrics (including entropy, Markov chains, n-grams, mutual information) for + all empirical datasets, despite being less commonly used in the field of animal + acoustic communication. \n4.\tThe Levenshtein distance metric provides + a robust analytical approach that should be considered in the comparison of + animal acoustic sequences in preference to other commonly employed techniques + (such as Markov chains, hidden Markov models, or Shannon entropy). The recent + discovery that non-Markovian vocal sequences may be more common in animal + communication than previously thought, provides a rich area for future research + that requires non-Markovian based analysis techniques to investigate animal + grammars and potentially the origin of human language.\nWe + thank Melinda Rekdahl, Todd Freeberg and his graduate students, Amiyaal Ilany, + Elizabeth Hobson, and Jessica Crance for providing comments of on a previous + version of this manuscript. We thank Mike Noad, Melinda Rekdahl, and Claire + Garrigue for assistance with humpback whale song collection and initial categorisation + of the song, Vincent Janik and Laela Sayigh for assistance with signature + whistle collection, Todd Freeberg with chickadee recordings, and Eli Geffen + and Amiyaal Ilany for assistance with hyrax song collection and analysis. + E.C.G is supported by a Newton International Fellowship. Part of this work + was conducted while E.C.G. was supported by a National Research Council (National + Academy of Sciences) Postdoctoral Fellowship at the National Marine Mammal + Laboratory, AFSC, NMFS, NOAA. The findings and conclusions in this paper are + those of the authors and do not necessarily represent the views of the National + Marine Fisheries Service. We would also like to thank Randall Wells and the + Sarasota Dolphin Research Program for the opportunity to record the Sarasota + dolphins, where data were collected under a series of National Marine Fisheries + Service Scientific Research Permits issued to Randall Wells. A.K. is supported + by the Herchel Smith Postdoctoral Fellowship Fund. Part of this work was conducted + while A.K. was a Postdoctoral Fellow at the National Institute for Mathematical + and Biological Synthesis, an Institute sponsored by the National Science Foundation + through NSF Award #DBI-1300426, with additional support from The University + of Tennessee, Knoxville.\n2015-07-02T13:32:13Z\n2015-07-02T13:32:13Z\n2015-08-07\nArticle\naccepted + version\nhttp://www.repository.cam.ac.uk/handle/1810/248821\nhttp://dx.doi.org/10.1111/2041-210X.12433\nen\n\n\n + \
\n \n
\n oai:dspace-production:1810/248822\n + \ 2015-10-05T13:53:37Z\n com_1810_213729\n + \ col_1810_227522\n
\n + \ \nSorption of lead + by Salisbury biochar produced from British broadleaf hardwood\nShen, + Zhengtao\nJin, Fei\nWang, + Fei\nMcMillan, Oliver\nAl-Tabbaa, + Abir\nAdsorption\nLead\nSalisbury + biochar\nBritish hardwood\nHeavy + metals\nThis is the accepted manuscript. The + final version is available at http://dx.doi.org/10.1016/j.biortech.2015.06.111\nIn + this study, the physicochemical properties of Salisbury biochar produced from + British broadleaf hardwood and its adsorption characteristics towards lead + was investigated. The biochar particle size has a significant effect on its + BET surface area, cation exchange capacity and sorption of lead. The kinetics + data were well fitted by the Pseudo second order model. The increase of biochar + dosage increased the percentage of lead removal in solutions. The increase + of initial solution pH increased the percentage of lead removal across the + pH range of 2 - 10. The calculated maximum adsorption capacity of lead by + Langmuir model were 47.66 and 30.04 mg/g for 0.15 mm and 2 mm samples. The + adsorption capacities of different metals decreased in the order of lead > + nickel > copper > zinc calculated in mmol/g. This study suggests a great + potential of biochars derived from British broadleaf hardwood to be applied + in soil remediation.\n2015-07-02T13:41:27Z\n2015-07-02T13:41:27Z\n2015-06-27\nArticle\naccepted + version\nBioresource Technology 2015, 193, 553-556. + DOI: 10.1016/j.biortech.2015.06.111\nhttp://dx.doi.org/10.1016/j.biortech.2015.06.111\nhttp://www.repository.cam.ac.uk/handle/1810/248822\nen\nElsevier\n\n\n + \
\n \n
\n oai:dspace-production:1810/248823\n + \ 2015-10-05T16:39:18Z\n com_1810_205873\n + \ col_1810_227549\n
\n + \ \nSchool Leadership + and Capacity Building in Kazakhstan\nYakavets, Natallia\nFrost, + David\nKhoroshash, Aidar\nThis + is the author accepted manuscript. The final version is available from Taylor + & Francis via http://dx.doi.org/10.1080/13603124.2015.1066869\nThe + article examines the scope for initiative and independent action that lies + with school principals in Kazakhstan, with a particular focus on capacity + building approaches. A framework drawn from Hargreaves (2001) and Dimmock + (2012) guided our inquiry. The study is situated within a large collaborative + project between three institutions: the University of Cambridge Faculty of + Education, Nazarbayev University Graduate School of Education and Nazarbayev + Intellectual Schools. A mixed method research design was used to collect data + in 20 schools and 11 other educational organisations in six different geographical + locations in Kazakhstan. The findings suggest that capacity building strategies + are necessary if innovations are to be implemented across all schools. The + article outlines the challenges involved in making school reform effective + and draws on the ?capital framework?. The conclusion considers the implications + for practitioners and policy-makers, and outlines an agenda for further research.\nThis + article arises out of a partnership between the University of Cambridge Faculty + of Education and the Graduate School of Education at Nazarbayev University. + The research was supported in part by Nazarbayev University with funds from + the Ministry of Education and Science the Republic of Kazakhstan. We are grateful + to the research team, those who participated in this project and also to Dr + Kairat Kurakbayev, who provided useful contribution and others colleagues + who commented on earlier drafts of this paper.\n2015-07-02T13:50:10Z\n2015-07-02T13:50:10Z\n2015-08-04\nArticle\naccepted + version\nhttp://www.repository.cam.ac.uk/handle/1810/248823\nhttp://dx.doi.org/10.1080/13603124.2015.1066869\nen\n\n\n + \
\n \n
\n oai:dspace-production:1810/248826\n + \ 2015-10-05T14:12:13Z\n com_1810_213729\n + \ col_1810_227522\n
\n + \ \nTheory and Practice + of Reversing Control on Multiply- Articulated Vehicles\nRimmer, + A. J.\nCebon, D.\nreversing\narticulated + vehicle\npath-tracking\ncontrol\ntrailer\nThis + is the author accepted manuscript. The final version is available from Sage + via http://dx.doi.org/10.1177/0954407015596918\nA + path-tracking controller is presented for automating the reversing of multiplyarticulated + vehicles. This uses a state feedback approach and steers the wheels of the + front axle to ensure the rearmost vehicle unit tracks a specified path. Linear + closed-loop analysis is performed and shows that the controller is stable + for vehicles with up to six trailers. The controller is implemented on three + full-size, experimental heavy vehicles: a ?Tractor-Semitrailer?, ?B-double? + and ?B-triple? which have one, two and three trailers respectively. Experimental + results are presented and the controller performance is evaluated. All test + vehicles were able to track paths to within 400mm of the desired path.\nThis + research was funded by the Engineering and Physical Sciences Research Council + (EPSRC) and Volvo Trucks through an Industrial CASE award. The authors would + like to acknowledge Leo Laine and Carl-Johan Hoel from Volvo Trucks for their + collaboration and contributions to the research.\n2015-07-02T14:09:53Z\n2015-07-02T14:09:53Z\n2015-08-18\nArticle\naccepted + version\nProceedings of the Institution of Mechanical + Engineers, Part D: Journal of Automobile Engineering 2015. doi: 10.1177/0954407015596918\nhttp://www.repository.cam.ac.uk/handle/1810/248826\nhttp://dx.doi.org/10.1177/0954407015596918\nen\nSage\n\n\n + \
\n \n
\n oai:dspace-production:1810/248827\n + \ 2015-10-05T16:53:07Z\n com_1810_245118\n + \ col_1810_245874\n
\n + \ \nCHK1 inhibition + synergizes with gemcitabine initially by destabilizing the DNA replication + apparatus\nKoh, Siang-Boon\nCourtin, + Aur?lie\nBoyce, Richard J.\nBoyle, + Robert G.\nRichards, Frances M.\nJodrell, + Duncan I.\nCHK1\ngemcitabine\nsynergy\ncell + cycle checkpoint\nDNA damage response\nThis + is the author accepted manuscript. The final version is available from American + Association for Cancer Research via http://dx.doi.org/10.1158/0008-5472.CAN-14-3347\nCombining + cell cycle checkpoint kinase inhibitors with the DNA-damaging chemotherapeutic + agent gemcitabine offers clinical appeal, with a mechanistic rationale based + chiefly on abrogation of gemcitabine-induced G2/M checkpoint activation. However, + evidence supporting this mechanistic rationale from chemosensitization studies + has not been consistent. Here we report a systematic definition of how pancreatic + cancer cells harboring mutant p53 respond to this combination therapy, by + combining mathematical models with large-scale quantitative biological analyses + of single cells and cell populations. Notably, we uncovered a dynamic range + of mechanistic effects at different ratios of gemcitabine and CHK1 inhibitors. + Remarkably, effective synergy was attained even where cells exhibited an apparently + functional G2/M surveillance mechanism, as exemplified by a lack of both overt + premature CDK1 activation and S-phase mitotic entry. Consistent with these + findings, S/G2 duration was extended in treated cells, leading to an definable + set of lineage-dependent catastrophic fates. At synergistic drug concentrations, + global replication stress was a distinct indicator of chemosensitization as + characterized molecularly by an accumulation of S-phase cells with high levels + of hyperphosphorylated, RPA-loaded single-stranded DNA. In a fraction of these + cells, persistent genomic damage was observed, including chromosomal fragmentation + with a loss of centromeric regions that prevented proper kinetochore-microtubule + attachment. Together, our results suggested a \"foot-in-thedoor\" mechanism + for drug synergy where cells were destroyed not by frank G2/M phase abrogation, + but rather by initiating a cumulative genotoxicity that deregulated DNA synthesis.\nThis + study was funded by Cancer Research UK via Institute Senior Group Leader funding + (C14303/A17197) to DI Jodrell, and by Sentinel Oncology through an award from + Innovate UK.\n2015-07-02T14:18:35Z\n2015-07-02T14:18:35Z\n2015-09-01\nArticle\naccepted + version\nCancer Research 2015, 75(17), 3583-3595. + doi: 10.1158/0008-5472.CAN-14-3347\nhttp://www.repository.cam.ac.uk/handle/1810/248827\nhttp://dx.doi.org/10.1158/0008-5472.CAN-14-3347\nen\nAmerican + Association for Cancer Research\n\n\n + \
\n \n
\n oai:dspace-production:1810/248829\n + \ 2015-10-05T16:58:32Z\n com_1810_213729\n + \ col_1810_227522\n
\n + \ \nDirect Numerical + Simulation of Complex Fuel Combustion with Detailed Chemistry: Physical Insight + and Mean Reaction Rate Modeling\nNikolaou, Z. M.\nSwaminathan, + N.\nDirect Numerical Simulation\nmulti-component\ndetailed + chemistry\ncombustion modelling\nRANS\nThis + is the final version of the article. It first appeared from Taylor & Francis + via http://dx.doi.org/10.1080/00102202.2015.1064911\nDirect + numerical simulation of freely-propagating premixed flames of a multicomponent + fuel is performed using a skeletal chemical mechanism with 49 reactions and + 15 species. The fuel consists of CO,H2,H2O,CH4 and CO2 in proportions akin + to blast furnace gas or a low calorific value syngas. The simulations include + low and high turbulence levels to elucidate the effect of turbulence on realistic + chemistry flames. The multi-component fuel flame is found to have a more complex + structure than most common flames, with individual species reaction zones + not necessarily overlapping with each other and with a wide heat releasing + zone. The species mass fractions and heat release rate show significant scatter, + with their conditional average however remaining close to the laminar flame + result. Probability density functions of displacement speed, stretch rate, + and curvature are near-Gaussian. Five different mean reaction rate closures + are evaluated in the RANS context using these DNS data, presenting perhaps + the most stringent test to date of the combustion models. Significant quantitative + differences are observed in the performance of the models tested, especially + for the higher turbulence level case.\nZMN + and NS acknowledges the funding through the Low Carbon Energy University Alliance + Programme supported by Tsinghua University, China. ZMN and NS also acknowledge + Prof. S. Cant for the DNS code. ZMN acknowledges the educational grant through + the A.G. Leventis Foundation. This work made use of the facilities of HECToR, + the UK?s national high performance computing service, which is provided by + UoE HPCx Ltd at the University of Edinburgh, Cray Inc and NAG Ltd, and funded + by the Office of Science and Technology through EPSRC?s High End Computing + Programme. EPSRC support is acknowledged.\n2015-07-02T14:27:13Z\n2015-07-02T14:27:13Z\n2015-06-30\nArticle\npublished + version\nCombustion Science and Technology 2015, + 187(11), 1759-1789. doi: 10.1080/00102202.2015.1064911\nhttp://www.repository.cam.ac.uk/handle/1810/248829\nhttp://dx.doi.org/10.1080/00102202.2015.1064911\nen\nCreative + Commons Attribution 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nTaylor + & Francis\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248830\n + \ 2015-10-05T17:02:49Z\n com_1810_213729\n + \ col_1810_227522\n
\n + \ \nFailure mechanisms + of a notched CFRP laminate under multi-axial loading\nTan, + J. L. Y.\nDeshpande, V. S.\nFleck, + N. A.\nLaminates\nFracture\nStress + concentrations\nMechanical testing\nThis + is the author accepted manuscript. The final version is available from Elsevier + via http://dx.doi.org/10.1016/j.compositesa.2015.06.005\nA + quasi-isotropic CFRP laminate, containing a notch or circular hole, is subjected + to combined tension and shear, or compression. The measured failure strengths + of the specimens are used to construct failure envelopes in stress space. + Three competing failure mechanisms are observed, and for each mechanism splitting + within the critical ply reduces the stress concentration from the hole or + notch: (i) a tension-dominated mode, with laminate failure dictated by tensile + failure of the 0? plies, (ii) a shear-dominated mode entailing microbuckling + of the -45? plies, and (iii) microbuckling of the 0? plies under remote compression. + The net section strength (for all stress states investigated) is greater for + specimens with a notch than a circular hole, and this is associated with greater + split development in the load-bearing plies. The paper contributes to the + literature by reporting sub-critical damage modes and failure envelopes under + multi-axial loading for two types of stress raiser.\nFinancial + support from Mitsubishi Heavy Industries (MHI) and the US Office of Naval + Research are gratefully acknowledged.\n2015-07-02T14:29:28Z\n2015-07-02T14:29:28Z\n2015-06-14\nArticle\naccepted + version\nhttp://www.repository.cam.ac.uk/handle/1810/248830\nhttp://dx.doi.org/10.1016/j.compositesa.2015.06.005\nen\n\n\n + \
\n \n
\n oai:dspace-production:1810/248834\n + \ 2015-10-05T17:08:37Z\n com_1810_721\n + \ col_1810_227512\n
\n + \ \nHydroxyproline + Ring Pucker Causes Frustration of Helix Parameters in the Collagen Triple + Helix\nChow, W. Ying\nBihan, + Dominique\nForman, Chris J.\nSlatter, + David A.\nReid, David G.\nWales, + David J.\nFarndale, Richard W.\nDuer, + Melinda J.\nThis is the final version of the + article. It first appeared from NPG via http://dx.doi.org/10.1038/srep12556\nCollagens, + the most abundant proteins in mammals, are defined by their triple-helical + structures and distinctive Gly-Xaa-Yaa repeating sequence, where Xaa is often + proline and Yaa, hydroxyproline (Hyp/O). It is known that hydroxyproline in + the Yaa position stabilises the triple helix, and that lack of proline hydroxylation + in vivo leads to dysfunctional collagen extracellular matrix assembly, due + to a range of factors such as a change in hydration properties. In addition, + we note that in model peptides, when Yaa is unmodified proline, the Xaa proline + has a strong propensity to adopt an endo ring conformation, whilst when Yaa + is hydroxyproline, the Xaa proline adopts a range of endo and exo conformations. + Here we use a combination of solid-state NMR spectroscopy and potential energy + landscape modelling of synthetic triple-helical collagen peptides to understand + this effect. We show that hydroxylation of the Yaa proline causes the Xaa + proline ring conformation to become metastable, which in turn confers flexibility + on the triple helix.\nThe authors acknowledge + BBSRC grant number BB/G021392/1 (MJD, DGR), EPSRC DTA studentship and Doctoral + Prize (WYC), British Heart Foundation RG/09/003/27122 and PG/08/011/24416 + (RWF, DB, DAS), Wellcome Trust 094470/Z/10/Z (RWF, DB, DAS), ERC and EPSRC + (DJW).\n2015-07-03T10:16:52Z\n2015-07-03T10:16:52Z\n2015-07-29\nArticle\npublished + version\nScientific Reports 2015, 5, 12556. doi: + 10.1038/srep12556\nhttp://www.repository.cam.ac.uk/handle/1810/248834\nhttp://dx.doi.org/10.1038/srep12556\nen\nCreative + Commons Attribution 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nNPG\n\n\n + \
\n \n
\n oai:dspace-production:1810/248835\n + \ 2015-10-05T14:32:00Z\n com_1810_221680\n + \ com_1810_194745\n col_1810_221691\n + \
\n \nPopulism and + technocracy: opposites or complements?\nBickerton, + Christopher\nAccetti, Carlo Invernizzi\npopulism\ntechnocracy\nparty + democracy\nmediation\nlegitimacy\nPierre + Rosanvallon\nErnesto Laclau\nThis + is the author accepted manuscript. The final version is available from Taylor + & Francis via http://dx.doi.org/10.1080/13698230.2014.995504\nAlthough + populism and technocracy increasingly appear as the two organising poles of + politics in contemporary Western democracies, the exact nature of their relationship + has not been the focus of systematic attention. This article argues that whilst + these two terms ? and the political realities they refer to ? are usually + assumed to be irreducibly opposed to one another, there is also an important + element of complementarity between them. This complementarity consists in + the fact that both populism and technocracy are predicated upon an implicit + critique of a specific political form, referred to in this article as ?party + democracy?. This is defined as a political regime based on two key features: + the mediation of political conflicts through the institution of political + parties and a procedural conception of political legitimacy according to which + political outcomes are legitimate to the extent that they are the product + of a set of democratic procedures revolving around the principles of parliamentary + deliberation and electoral competition. This argument is made through a close + analysis of works by Ernesto Laclau and Pierre Rosanvallon, chosen as exemplary + manifestations of the contemporary cases for populism and technocracy, respectively.\n2015-07-03T10:49:31Z\n2015-07-03T10:49:31Z\n2015-04-07\nArticle\naccepted + version\nCritical Review of International Social + and Political Philosophy 2015. doi: 10.1080/13698230.2014.995504\nhttp://dx.doi.org/10.1080/13698230.2014.995504\nhttp://www.repository.cam.ac.uk/handle/1810/248835\nen\nTaylor + & Francis\n\n\n
\n + \ \n
\n oai:dspace-production:1810/248838\n + \ 2015-10-05T11:21:10Z\n com_1810_213729\n + \ col_1810_227522\n
\n + \ \nAssociation between + femur size and a focal defect of the superior femoral neck\nGee, + A. H.\nTreece, G. M.\nTonkin, + C. J.\nBlack, D. M.\nPoole, + K. E. S.\ncortical bone mapping\nosteoporotic + fractures\nhip structure analysis\nThis + is the final version of the article. It first appeared from Elsevier via http://dx.doi.org/10.1016/j.bone.2015.06.024.\nWithin + each sex, there is an association between hip fracture risk and the size of + the proximal femur, with larger femurs apparently more susceptible to fracture. + Here, we investigate whether the thickness and density of the femoral cortex + play a role in this association: might larger femurs harbour focal, cortical + defects? To answer this question, we used cortical bone mapping to measure + the distribution of cortical mass surface density (CMSD, mg/cm^2) in cohorts + of 308 males and 125 females. Principal component analysis of the various + femoral surfaces led to a measure of size that is \nlinearly independent + from shape. After mapping the data onto a canonical femur surface, we used + statistical parametric mapping to identify any regions where CMSD depends + on size, allowing for other confounding covariates including shape. Our principal + finding was a focal patch on the superior femoral neck, where CMSD is reduced + by around 1% for each 1% increase in proximal-distal size (p < 0:000005 + in the males, p < 0:001 in the females). This finding appears to be consistent + with models of functional adaptation, and may help with the design of interventional + strategies for reducing fracture risk.\nKESP + acknowledges the support of the NIHR Biomedical Research Centre, Cambridge, + and funding from Arthritis Research UK (reference 20109). The MrOS study is + supported by National Institutes of Health (NIH) funding. The following institutes + provide support: the National Institute on Aging, the National Institute of + Arthritis and Musculoskeletal and Skin Diseases, the National Center for Advancing + Translational Sciences and the NIH Roadmap for Medical Research, under the + following grant numbers: U01 AG027810, U01 AG042124, U01 AG042139, U01 AG042140, + U01 AG042143, U01 AG042145, U01 AG042168, U01 AR066160 and UL1 TR000128.\n2015-07-03T11:41:57Z\n2015-07-03T11:41:57Z\n2015\nArticle\npublished + version\nGee et al. Bone (2015) 81: 60-66\nhttp://www.repository.cam.ac.uk/handle/1810/248838\nhttp://dx.doi.org/10.1016/j.bone.2015.06.024\nen\nAttribution-NonCommercial-NoDerivs + 2.0 UK: England & Wales\nhttp://creativecommons.org/licenses/by-nc-nd/2.0/uk/\nElsevier\n\n\n + \
\n \n
\n oai:dspace-production:1810/248844\n + \ 2015-10-05T14:54:20Z\n com_1810_237406\n + \ com_1810_34581\n col_1810_237407\n + \
\n \nCombining MRI + with PET for partial volume correction improves image-derived input functions + in mice\nEvans, Eleanor\nBuonincontri, + Guido\nIzquierdo, David\nMethner, + Carmen\nHawkes, Rob C.\nAnsorge, + Richard E.\nKrieg, Thomas\nCarpenter, + T. Adrian\nSawiak, Stephen J.\narterial + input function\ngeometric transfer matrix\nMRI\npartial + volume correction\nsmall animal PET\nThis + is the author accepted manuscript. The final version is available from IEEE + via http://dx.doi.org/10.1109/TNS.2015.2433897\nAccurate + kinetic modelling using dynamic PET requires knowledge of the tracer concentration + in plasma, known as the arterial input function (AIF). AIFs are usually determined + by invasive blood sampling, but this is prohibitive in murine studies due + to low total blood volumes. As a result of the low spatial resolution of PET, + image-derived input functions (IDIFs) must be extracted from left ventricular + blood pool (LVBP) ROIs of the mouse heart. This is challenging because of + partial volume and spillover effects between the LVBP and myocardium, contaminating + IDIFs with tissue signal. We have applied the geometric transfer matrix (GTM) + method of partial volume correction (PVC) to 12 mice injected with ^{18}{\\rm + F} - {\\rm FDG} affected by a Myocardial Infarction (MI), of which 6 were + treated with a drug which reduced infarction size . We utilised high resolution + MRI to assist in segmenting mouse hearts into 5 classes: LVBP, infarcted myocardium, + healthy myocardium, lungs/body and background. The signal contribution from + these 5 classes was convolved with the point spread function (PSF) of the + Cambridge split magnet PET scanner and a non-linear fit was performed on the + 5 measured signal components. The corrected IDIF was taken as the fitted LVBP + component. It was found that the GTM PVC method could recover an IDIF with + less contamination from spillover than an IDIF extracted from PET data alone. + More realistic values of {{\\rm K}_{\\rm i}} were achieved using GTM IDIFs, + which were shown to be significantly different ( {\\rm p} < 0.05 ) between + the treated and untreated groups.\nE. Evans + was funded by an MRC studentship and travel to PSMR 2014 was funded by the + EU COST action for PET/MR.\n2015-07-07T12:02:18Z\n2015-07-07T12:02:18Z\n2015-06-05\nArticle\naccepted + version\nIEEE Transactions on Nuclear Science, 62(3), + 628-633. doi: 10.1109/TNS.2015.2433897\nhttp://dx.doi.org/10.1109/TNS.2015.2433897\nhttp://www.repository.cam.ac.uk/handle/1810/248844\nen\nIEEE\n\n\n + \
\n \n
\n oai:dspace-production:1810/248850\n + \ 2015-10-05T17:24:43Z\n com_1810_245310\n + \ col_1810_245311\n
\n + \ \nThe NEWMEDS rodent + touchscreen test battery for cognition relevant to schizophrenia\nHvoslef-Eide, + M.\nMar, A. C.\nNilsson, + S. R. O.\nAlsi?, J.\nHeath, + C. J.\nSaksida, Lisa M.\nRobbins, + T. W.\nBussey, T. J.\nDrug + discovery\nneuropsychiatric disease\nattention\nworking + memory\nlong-term memory\nexecutive + function\ncognitive flexibility\nresponse + inhibition\nrat\nmouse\nThis + is the author accepted manuscript. The final version is available from Springer + via http://dx.doi.org/10.1007/s00213-015-4007-x\nRationale \nThe + NEWMEDS initiative (Novel Methods leading to New Medications in Depression + and Schizophrenia, http://www.newmeds-europe.com) is a large industrial-academic + collaborative project aimed at developing new methods for drug discovery for + schizophrenia. As part of this project, Work package 2 (WP02) has developed + and validated a comprehensive battery of novel touchscreen tasks for rats + and mice for assessing cognitive domains relevant to schizophrenia. \n \nObjectives \nThis + article provides a review of the touchscreen battery of tasks for rats and + mice for assessing cognitive domains relevant to schizophrenia and highlights + validation data presented in several primary articles in this issue and elsewhere. \n \nMethods + \nThe battery consists of the 5-choice serial reaction time task and + a novel rodent continuous performance task for measuring attention, a 3-stimulus + visual reversal and the serial visual reversal task for measuring cognitive + flexibility, novel nonmatching-to-sample based tasks for measuring spatial + working memory and paired-associates learning for measuring long term memory. \n \nResults \nThe + rodent (i.e. both rats and mice) touchscreen operant chamber and battery has + high translational value across species due to its emphasis on construct as + well as face validity. In addition, it offers cognitive profiling of models + of diseases with cognitive symptoms (not limited to schizophrenia) through + a battery approach, whereby multiple cognitive constructs can be measured + using the same apparatus, enabling comparisons of performance across tasks. \n \nConclusion \nThis + battery of tests constitutes an extensive tool package for both model characterisation + and preclinical drug discovery.\nThis work + was supported by the Innovative Medicine Initiative Joint Undertaking under + grant agreement no. 115008 of which resources are composed of EFPIA in-kind + contribution and financial contribution from the European Union?s Seventh + Framework Programme (FP7/2007-2013). The authors thank Charlotte Oomen for + valuable comments on the manuscript.\n2015-07-07T14:26:53Z\n2015-07-07T14:26:53Z\n2015-07-24\nArticle\naccepted + version\nJournal of Psychopharmacology 2015. doi: + 10.1007/s00213-015-4007-x\nhttp://www.repository.cam.ac.uk/handle/1810/248850\nhttp://dx.doi.org/10.1007/s00213-015-4007-x\nen\nSpringer\n\n\n + \
\n \n
\n oai:dspace-production:1810/248855\n + \ 2015-10-05T17:28:35Z\n com_1810_224463\n + \ col_1810_227538\n
\n + \ \nWaiting impulsivity + : the influence of acute methylphenidate and feedback\nVoon, + Valerie\nChang-Webb, Yee Chien\nMorris, + Laurel S.\nCooper, Ella\nSethi, + Arjun\nBaek, Kwangyeol\nGrant, + Jon\nRobbins, Trevor W.\nHarrison, + Neil A.\naddiction\nbrain + drinking\nimpulsivity\nmethylphenidate\npremature + responding\nstimulant dependence\nThis + is the final version of the article. It first appeared from Oxford University + Press via http://dx.doi.org/10.1093/ijnp/pyv074\nBackground: + The ability to wait and to weigh evidence is critical to behavioural regulation. + These behaviors are known as waiting and reflection impulsivity. In Study + 1, we examined the effects of methylphenidate (MPH), a dopamine and norepinephrine + reuptake inhibitor, on waiting and reflection impulsivity in healthy young + individuals. In Study 2, we assessed the role of learning from feedback in + disorders of addiction. \n \nMethods: We used the recently developed + 4-Choice Serial Reaction Time task and the Beads task. Twenty-eight healthy + volunteers were tested twice in a randomized double-blind placebo controlled + cross-over trial with 20mg MPH. In the second study we analyzed premature + responses as a function of prior feedback in disorders of addiction. \n \nResults: + Study 1: MPH was associated with greater waiting impulsivity to a cue predicting + reward along with faster responding to target onset without a generalized + effect on reaction time or attention. MPH influenced reflection impulsivity + based on baseline impulsivity. Study 2: more premature responses occurred + after premature responses in stimulant dependent subjects. \n \nConclusions: + We show that MPH has dissociable effects on waiting and reflection impulsivity. + Chronic stimulant exposure impairs learning from prior premature responses + suggesting a failure to learn that premature responding is suboptimal. These + findings provide a greater mechanistic understanding of waiting impulsivity.\nVV + and NAH are Wellcome Trust (WT) intermediate Clinical Fellows. LSM is an MRC + student. The BCNI is supported by a WT and MRC grant. The authors report no + conflicts of interest. TWR consults for Cambridge Cognition, Lundbeck, Teva, + Shire Pharmaceuticals, Otsuka, has research grants from Lundbeck, GSK. Royalties + Cambridge Cognition and receives editorial honoraria from Springer, Elsevier.\n2015-07-07T15:55:07Z\n2015-07-07T15:55:07Z\n2015-07-01\nArticle\npublished + version\nVoon et al. International Journal of Neuropsychopharmacology + (2015). DOI: 10.1093/ijnp/pyv074\nhttp://dx.doi.org/10.1093/ijnp/pyv074\nhttp://www.repository.cam.ac.uk/handle/1810/248855\nen\nCreative + Commons Attribution 4.0\nhttp://creativecommons.org/licenses/by/4.0/\nOxford + University Press\n\n\n
\n + \ \n
\n oai:dspace-production:1810/250497\n + \ 2015-10-05T09:21:32Z\n com_1810_213729\n + \ col_1810_227522\n
\n + \ \nModified Push-Off + Testing of an Inclined Shear Plane in Reinforced concrete Strengthened with + CFRP Fabric\nFoster, R. M.\nMorley, + C. T.\nLees, J. M.\nThis + is the author accepted manuscript. It is currently under an indefinite embargo + pending publication by American Society of Civil Engineers.\nThis + study reports the findings of an experimental investigation into the behaviour + of an inclined shear plane in reinforced concrete, such as a diagonal crack + in the web of a beam, strengthened with externally bonded Carbon Fibre Reinforced + Polymer (CFRP) fabric. A modified push-off test of novel geometry was developed + for this study. This test generates a diagonal failure plane subject to combined + shear and tension. Both unwrapped and wrapped tests were conducted, allowing + the load sharing and load displacement behaviour of the reinforced concrete, + and the reinforced concrete with externally bonded CFRP fabric, to be investigated. + Fully wrapped and U-wrapped CFRP fabric configurations were tested. Results + indicate that for the arrangement tested, concrete, steel and CFRP contributions + to resistance are not independent, and that effective anchorage lengths given + in the UK and US guidance for U-wrapped CFRP may not be adequate in some cases.\nThe + authors wish to gratefully acknowledge the financial support of the UK Engineering + and Physical Sciences Research Council (EPSRC) through grant EP/I018972/1 + . The authors also wish to extend their sincere thanks to Jan Nilsson, Martin + Touhey and the staff of the University of Cambridge Structures Research Lab + for their invaluable assistance in carrying out the experimental programme + reported above.\n2015-09-04T11:05:44Z\n2015-09-04T11:05:44Z\n2015\nArticle\naccepted + version\nJournal of Composites for Construction\nhttps://www.repository.cam.ac.uk/handle/1810/250497\nhttp://www.repository.cam.ac.uk/handle/1810/249023\nen\nAmerican + Society of Civil Engineers\n\n\n
\n + \ \n
\n oai:dspace-production:1810/251273\n + \ 2015-10-05T16:16:23Z\n com_1810_221765\n + \ col_1810_245325\n
\n + \ \nData associated + with publication: HSV-1 glycoproteins are delivered to virus assembly sites + through dynamin-dependent endocytosis. Traffic. 2015\nAlbecka, + Anna\nLaine, Romain F.\nJanssen, + Anne F.J.\nKaminski, Clemens F.\nCrump, + Colin M.\nORCID ID: 0000-0001-9918-9998\nHSV\nglycoprotein\nendocytosis\ndynamin\ndSTORM\nvirus + assembly\nFluorescence microscopy images used + for quantification Raw numerical data as excel files Example dSTORM image + data\nThis record is embargoed until publication. + This record will be updated with publication details.\nThis + work was supported by the EPSRC [grant numbers EP/H018301/1 and EP/L015889/1], + MRC [grant number MR/K015850/1], Royal Society [grant number UF090010] and + the Leverhulme Trust [grant number RPG-2012-793] .\n2015-10-01T13:54:45Z\n2015-10-01T13:54:45Z\n2015-10-01\nDataset\nhttps://www.repository.cam.ac.uk/handle/1810/251273\nAttribution + 2.0 UK: England & Wales\nhttp://creativecommons.org/licenses/by/2.0/uk/\nxlsx + (Microsoft Excel) lsm (Confocal microscopy data) tif\n\n\n + \
\n \n
\n oai:dspace-production:1810/251291\n + \ 2015-10-05T17:32:51Z\n com_1810_247340\n + \ com_1810_213729\n col_1810_247394\n + \
\n \nCambridgeLandmarks_TrinityGreatCourt\nKendall, + Alex\nGrimes, Matthew\nCipolla, + Roberto\nORCID ID: 0000-0003-1904-5885\nRelocalization\nRelocalisation\nSLAM\nSimultaneous + Localization and Mapping\nComputer Vision\nMachine + Learning\nTrinity Great Court scene from Cambridge + Landmarks, a large scale outdoor visual relocalisation dataset taken around + Cambridge University. Contains original video, with extracted image frames + labelled with their 6-DOF camera pose and a visual reconstruction of the scene. + If you use this data, please cite our paper: Alex Kendall, Matthew Grimes + and Roberto Cipolla \"PoseNet: A Convolutional Network for Real-Time 6-DOF + Camera Relocalization.\" Proceedings of the International Conference on Computer + Vision (ICCV), 2015.\n2015-10-02T15:29:27Z\n2015-10-02T15:29:27Z\n2015-10-02\nDataset\nhttps://www.repository.cam.ac.uk/handle/1810/251291\nhttp://mi.eng.cam.ac.uk/projects/relocalisation/\nhttp://mi.eng.cam.ac.uk/projects/relocalisation/\nAttribution-NonCommercial-ShareAlike + 2.0 UK: England & Wales\nhttp://creativecommons.org/licenses/by-nc-sa/2.0/uk/\nImages + (.png), Video (.mp4), Text (.txt), Reconstructions (.nvm can be opened with + Visual SFM, http://ccwu.me/vsfm/ )\n\n\n + \
\n \n
\n oai:dspace-production:1810/251292\n + \ 2015-10-05T17:38:26Z\n com_1810_247340\n + \ com_1810_213729\n col_1810_247394\n + \
\n \nCambridgeLandmarks_Street\nKendall, + Alex\nGrimes, Matthew\nCipolla, + Roberto\nORCID ID: 0000-0003-1904-5885\nRelocalization\nRelocalisation\nSLAM\nSimultaneous + Localization and Mapping\nComputer Vision\nMachine + Learning\nStreet scene from Cambridge Landmarks, + a large scale outdoor visual relocalisation dataset taken around Cambridge + University. Contains original video, with extracted image frames labelled + with their 6-DOF camera pose and a visual reconstruction of the scene. If + you use this data, please cite our paper: Alex Kendall, Matthew Grimes and + Roberto Cipolla \"PoseNet: A Convolutional Network for Real-Time 6-DOF Camera + Relocalization.\" Proceedings of the International Conference on Computer + Vision (ICCV), 2015.\nThis record supports + publication and is available at http://mi.eng.cam.ac.uk/projects/relocalisation/\n2015-10-05T13:16:32Z\n2015-10-05T13:16:32Z\n2015-10-05\nDataset\nhttps://www.repository.cam.ac.uk/handle/1810/251292\nhttp://mi.eng.cam.ac.uk/projects/relocalisation/\nhttp://mi.eng.cam.ac.uk/projects/relocalisation/\nAttribution-NonCommercial-ShareAlike + 2.0 UK: England & Wales\nhttp://creativecommons.org/licenses/by-nc-sa/2.0/uk/\nImages + (.png), Video (.mp4), Text (.txt), Reconstructions (.nvm can be opened with + Visual SFM, http://ccwu.me/vsfm/ )\n\n\n + \
\n \n
\n oai:dspace-production:1810/251293\n + \ 2015-10-05T13:42:46Z\n com_1810_247368\n + \ com_1810_198332\n col_1810_247426\n + \
\n \nInput data for + ONETEP calculations\nZuehlsdorff, Tim J.\nThe + file contains all input files used to generate the data in the publication + \"Linear-scaling time-dependent density-functional theory beyond the Tamm-Dancoff + approximation: obtaining efficiency and accuracy with \\emph{in situ} optimised + local orbitals\" submitted to the Journal of Chemical Physics (JCP). The folder + azobenzene/ contains input data necessary to reproduce Fig. 1 and Table 1. + The folder bacteriochlorophyll/ contains data necessary to reproduce Fig. + 2, Fig. 3, Fig 4 and Fig. 5. The folder linear_scaling_test contains data + necessary to reproduce Fig. 6 and Fig 7. Furthermore, the folder bacteriochlorophyll/ + also contains the raw excitation energy and oscillator strength data necessary + to generate Fig. 4 and Fig 5. All calculations were performed using ONETEP + Version 4.1.12.7\nThis record will be updated + with publication details.\nThis work was + supported by the EPSRC [grant numbers EP/J017639/1, EP/J015059/1 ] and the + ARCHER eCSE programme.\n2015-10-05T13:38:40Z\n2015-10-05T13:38:40Z\n2015-10-05\nDataset\nhttps://www.repository.cam.ac.uk/handle/1810/251293\nAttribution-ShareAlike + 2.0 UK: England & Wales\nhttp://creativecommons.org/licenses/by-sa/2.0/uk/\nText + files\n\n\n
\n \n + \
\n oai:dspace-production:1810/251294\n + \ 2015-10-05T17:40:40Z\n com_1810_247340\n + \ com_1810_213729\n col_1810_247394\n + \
\n \nCambridgeLandmarks_StMarysChurch\nKendall, + Alex\nGrimes, Matthew\nCipolla, + Roberto\nORCID ID: 0000-0003-1904-5885\nRelocalization\nRelocalisation\nSLAM\nSimultaneous + Localization and Mapping\nComputer Vision\nMachine + Learning\nSt Mary's Church scene from Cambridge + Landmarks, a large scale outdoor visual relocalisation dataset taken around + Cambridge University. Contains original video, with extracted image frames + labelled with their 6-DOF camera pose and a visual reconstruction of the scene. + If you use this data, please cite our paper: Alex Kendall, Matthew Grimes + and Roberto Cipolla \"PoseNet: A Convolutional Network for Real-Time 6-DOF + Camera Relocalization.\" Proceedings of the International Conference on Computer + Vision (ICCV), 2015.\nThis record supports + publication and is available at http://mi.eng.cam.ac.uk/projects/relocalisation/\n2015-10-05T14:01:22Z\n2015-10-05T14:01:22Z\n2015-10-05\nDataset\nhttps://www.repository.cam.ac.uk/handle/1810/251294\nhttp://mi.eng.cam.ac.uk/projects/relocalisation/\nhttp://mi.eng.cam.ac.uk/projects/relocalisation/\nAttribution-NonCommercial-ShareAlike + 2.0 UK: England & Wales\nhttp://creativecommons.org/licenses/by-nc-sa/2.0/uk/\nImages + (.png), Video (.mp4), Text (.txt), Reconstructions (.nvm can be opened with + Visual SFM, http://ccwu.me/vsfm/ )\n\n\n + \
\n
\n
\n"} + headers: + cache-control: [no-cache] + connection: [close] + content-type: [application/xml] + date: ['Tue, 06 Oct 2015 14:37:06 GMT'] + server: [Apache-Coyote/1.1] + via: [1.1 www.repository.cam.ac.uk] + status: {code: 200, message: OK} +version: 1 diff --git a/tests/vcr/chapman.yaml b/tests/vcr/chapman.yaml new file mode 100644 index 00000000..12db941e --- /dev/null +++ b/tests/vcr/chapman.yaml @@ -0,0 +1,134 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.4.1 CPython/2.7.10 Darwin/13.4.0] + method: GET + uri: http://digitalcommons.chapman.edu/do/oai/?verb=ListRecords&metadataPrefix=oai_dc&from=2015-10-18T00:00:00Z&until=2015-10-20T00:00:00Z + response: + body: + string: !!binary | + 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 + TsCj/wEGEl+IRFAAAA== + headers: + cache-control: [private] + content-encoding: [gzip] + content-type: [text/xml; charset=UTF-8] + date: ['Tue, 20 Oct 2015 18:38:51 GMT'] + server: [nginx/1.2.1] + set-cookie: [bp_plack_session=a41fd4222684f84ffd0e9704b4b8bce2e6078dfc; path=/; + HttpOnly, SERVERID=apollo_nginx; path=/] + status: {code: 200, message: OK} +version: 1 diff --git a/tests/vcr/citeseerx.yaml b/tests/vcr/citeseerx.yaml new file mode 100644 index 00000000..14b3e6f7 --- /dev/null +++ b/tests/vcr/citeseerx.yaml @@ -0,0 +1,7162 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.4.1 CPython/2.7.9 Darwin/13.4.0] + method: GET + uri: http://citeseerx.ist.psu.edu/oai2?verb=ListRecords&metadataPrefix=oai_dc&from=2015-10-03&until=2015-10-05 + response: + body: {string: "\n\n + \ 2015-10-07T15:22:28Z\n http://citeseerx.ist.psu.edu/oai2\n + \ \n \n
\n oai:CiteSeerX.psu:10.1.1.101.3924\n + \ 2015-10-05\n
\n \n + \ \n + \ An improved bound for the monochromatic cycle partition + number\n Andr\xE1s Gy\xE1rf\xE1s \n + \ Mikl\xF3s Ruszink\xF3 \n G\xE1bor + N. S\xE1rk\xF6zy \n Endre Szemer\xE9di \n + \ Edge colorings\n Monochromatic + partitions\n Regularity Lemma\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-02\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.101.3924\n + \ http://www.cs.wpi.edu/~gsarkozy/Cikkek/25.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.101.6222\n + \ 2015-10-05\n
\n \n + \ \n + \ All-Pairs Min-Cut in Sparse Networks\n Srinivasa + R. Arikati\n Shiva Chaudhuri\n + \ Christos D. Zaroliagis\n Algorithms + are presented for the all-pairs min-cut problem in bounded treewidth, planar, + and sparse networks. The approach used is to preprocess the input n-vertex + network so that afterward, the value of a min-cut between any two vertices + can be efficiently computed. A tradeoff is shown between the preprocessing + time and the time taken to compute min-cuts subsequently. In particular, after + an Onlog \u017D n. preprocessing of a bounded tree-width network, it is possible + to find the value of a min-cut between any two vertices in constant time. + This implies that for \u017D 2 such networks the all-pairs min-cut problem + can be solved in time On.. This algorithm is used in conjunction with a graph + decomposition technique of Frederickson to obtain algorithms for sparse and + planar networks. The running times depend upon a topological property, \uFFFD, + of the input network. The parameter \uFFFD varies between 1 and \uFFFD\u017D. + n; the algorithms perform well when \uFFFD \uFFFD on. \u017D. The value \u017D + 2 of a min-cut can be found in time On\uFFFD \uFFFD log \uFFFD. and all-pairs + min-cut can be \u017D 2 4 solved in time On \uFFFD \uFFFD log \uFFFD. for + sparse networks. The corresponding running \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-02\n + \ 1998\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.101.6222\n + \ http://www.ceid.upatras.gr/faculty/zaro/pub/jalg-apmc.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.101.6829\n + \ 2015-10-05\n
\n \n + \ \n + \ On solving multi-type railway line planning problems\n + \ Jan-willem Goossens\n Stan + van Hoesel\n Leo Kroon\n Integer + programming\n Combinatorial optimisation\n + \ Railway transportation\n An + important strategic element in the planning process of a railway operator + is the development of a line plan, i.e., a set of routes (paths) on the network + of tracks, operated at a given hourly frequency. The models described in the + literature have thus far con-sidered only lines that halt at all stations + along their route. In this paper we introduce several models for solving line + planning problems in which lines can have different halting patterns. Correctness + and equivalence proofs for these models are given, as well as an evaluation + using several real-life instances.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-02\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.101.6829\n + \ http://www.t75.nl/jgoossens/research/rm02009_v2.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.102.6934\n + \ 2015-10-05\n
\n \n + \ \n + \ Imposing a Memory Management Discipline on Software Deployment\n + \ Eelco Dolstra , Eelco Visser , Merijn de Jonge \n + \ The deployment of software components frequently + fails because dependencies on other components are not declared explicitly + or are declared imprecisely. This results in an incomplete reproduction of + the environment necessary for proper operation, or in interference between + incompatible variants. In this paper we show that these deployment hazards + are similar to pointer hazards in memory models of programming languages and + can be countered by imposing a memory management discipline on software deployment. + Based on this analysis we have developed a generic, platform and language + independent, discipline for deployment that allows precise dependency verification; + exact identification of component variants; computation of complete closures + containing all components on which a component depends; maximal sharing of + components between such closures; and concurrent installation of revisions + and variants of components. We have implemented the approach in the Nix deployment + system, and used it for the deployment of a large number of existing Linux + packages. We compare its effectiveness to other deployment systems. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-04-02\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.102.6934\n + \ http://people.cs.uu.nl/eelco/pubs/immdsd-icse2004-final.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.104.3087\n + \ 2015-10-05\n
\n \n + \ \n + \ Combining column generation and . . . \n Dennis + Huisman\n Raf Jans\n Marc + Peeters\n Albert P. M. Wagelmans\n + \ logistiek\n management + informatiesystemen\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-03\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.104.3087\n + \ http://publishing.eur.nl/ir/repub/asset/1098/ERS 2003 + 092 LIS.pdf\n en\n Metadata + may be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.104.5973\n + \ 2015-10-05\n
\n \n + \ \n + \ Experience in implementing an http service closure\n + \ Steven Schwartzberg\n Alva + Couch\n One ideal of configuration management + is to specify only desired behavior in a high-level language, while an automatic + configuration management system assures that behavior on an ongoing basis. + We call a self-managing subsystem of this kind a closure. To better understand + the nature of closures, we implemented an HTTP service closure on top of an + Apache web server. While the procedure for building the server is imperative + in nature, and the configuration language for the original server is declarative, + the language for the closure must be transactional; i.e., based upon predictable + and verifiable atomic changes in behavioral state. We study the desirable + properties of such transactional configuration management languages, and conclude + that these languages may well be the key to solving the change management + problem for network configuration management.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-03\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.104.5973\n + \ http://www.usenix.org/events/lisa04/tech/full_papers/schwartzberg/schwartzberg.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.105.6571\n + \ 2015-10-05\n
\n \n + \ \n + \ Suffix arrays: A new method for on-line string searches\n + \ Udi Manber\n Gene + Myers\n A new and conceptually simple + data structure, called a suffix array, for on-line string searches is intro-duced + in this paper. Constructing and querying suffix arrays is reduced to a sort + and search paradigm that employs novel algorithms. The main advantage of suffix + arrays over suffix trees is that, in practice, they use three to five times + less space. From a complexity standpoint, suffix arrays permit on-line string + searches of the type, &quot;Is W a substring of A?&quot; to be answered + in time O(P + log N), where P is the length of W and N is the length of A, + which is competitive with (and in some cases slightly better than) suffix + trees. The only drawback is that in those instances where the underlying alphabet + is finite and small, suffix trees can be constructed in O(N) time in the worst + case, versus O(N log N) time for suffix arrays. However, we give an augmented + algorithm that, regardless of the alphabet size, constructs suffix arrays + in O(N) expected time, albeit with lesser space efficiency. We believe that + suffix arrays will prove to be better in practice than suffix trees for many + applications. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-03\n + \ 1991\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.105.6571\n + \ http://webglimpse.net/pubs/suffix.pdf\n en\n + \ Metadata may be used without restrictions as long as + the oai identifier remains attached to it.\n \n + \ \n
\n \n
\n oai:CiteSeerX.psu:10.1.1.105.8939\n + \ 2015-10-04\n
\n \n + \ \n + \ Vertex-distinguishing proper edge colourings of some regular + graphs\n Roman Sot\xE1k, et al.\n + \ edge colouring\n vertex-distinguishing + index\n equitable colouring\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-04\n 2008-04-03\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.105.8939\n + \ http://umv.science.upjs.sk/preprints/dokumenty/A7-2006.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.106.1577\n + \ 2015-10-04\n
\n \n + \ \n + \ An adjacency lemma for critical multigraphs\n + \ David Cariolaro\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2008-04-03\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.106.1577\n + \ http://www.math.sinica.edu.tw/post-doctor/cariolaro/zhang_rev.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.106.2951\n + \ 2015-10-05\n
\n \n + \ \n + \ A polynomial-time algorithm to design push plans for sensorless + parts sorting\n Mark de Berg\n + \ Xavier Goaoc\n A. + Frank van der Stappen \n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-03\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.106.2951\n + \ http://www.loria.fr/~goaoc/papers/Sorting-Parts.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.106.977\n + \ 2015-10-04\n
\n \n + \ \n + \ On the maximum even factor in . . . \n Gyula + Pap\n L\xE1szl\xF3 Szeg\xF5\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-04\n 2008-04-03\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.106.977\n + \ http://www.cs.elte.hu/~gyuszko/evenfactor.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.107.5379\n + \ 2015-10-05\n
\n \n + \ \n + \ Decoding non-unique oligonucleotide hybridization experiments + of targets related by a phylogenetic tree\n Alexander + Schliep\n Sven Rahmann\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-04-03\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.107.5379\n + \ http://bioinformatics.oxfordjournals.org/cgi/reprint/22/14/e424.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.11.3066\n + \ 2015-10-05\n
\n \n + \ \n + \ The Cournot-Bertrand Profit Differential: A Reversal Result + in a Differentiated Duopoly with Wage Bargaining\n M\xF3nica + Correa L\xF3pez\n Robin A. Naylor\n + \ This paper compares Cournot and Bertrand equilibria + in a downstream differentiated duopoly in which the input price (wage) paid + by each downstream firm is the outcome of a strategic bargain with its upstream + supplier (labour union). We show that the standard result that Cournot equilibrium + profits exceed those under Bertrand competition - when the differentiated + duopoly game is played in imperfect substitutes - is reversible. Whether equilibrium + profits are higher under Cournot or Bertrand competition is shown to depend + upon the nature of the upstream agents&apos; preferences, on the distribution + of bargaining power over the input price and on the degree of product market + differentiation. We find that the standard result holds unless unions are + both powerful and place considerable weight on the wage argument in their + utility function. One implication of this is that if the upstream agents are + profit-maximising firms, then the standard result will obtain.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2007-11-21\n + \ 2001\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.11.3066\n + \ http://www.warwick.ac.uk/fac/soc/Economics/research/papers/twerp631.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.112.9891\n + \ 2015-10-05\n
\n \n + \ \n + \ It\u2019s Elementary, Dear Watson: Applying Logic Programming + To Convergent System Management Processes\n + \ Alva L. Couch\n Michael Gilfix\n + \ In an ideal world, the system administrator would + simply specify a complete model of system requirements and the system would + automatically fulfill them. If requirements changed, or if the system deviated + from requirements, the system would change itself to converge with requirements. + Current specialized tools for convergent system administration already provide + some ability to do this, but are limited by specification languages that cannot + adequately represent all possible sets of requirements. We take the opposite + approach of starting with a general-purpose logic programming language intended + for specifying requirements and analyzing system state, and adapting that + language for system administration. Using Prolog with appropriate extensions, + one can specify complex system requirements and convergent processes involving + multiple information domains, including information about files, filesystems, + users, and processes, as well as information from databases. By hiding unimportant + details, Prolog allows a simple relationship between requirements and the + scripts that implement them. We illustrate these observations by use of a + simple proof-of-concept prototype.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-08-14\n + \ 1999\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.112.9891\n + \ http://www.michaelgilfix.com/files/publications/prolog-lisa99.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.113.8830\n + \ 2015-10-05\n
\n \n + \ \n + \ A GLOBALLY CONVERGENT AUGMENTED LAGRANGIAN PATTERN SEARCH + ALGORITHM FOR OPTIMIZATION WITH GENERAL CONSTRAINTS AND SIMPLE BOUNDS \n + \ Robert Michael Lewis\n Virginia + Torczon\n Key words. augmentedLagrangian\n + \ constrainedoptimization\n direct + search\n We give a pattern search methodfor + nonlinearly constrained optimization that is an adaption of a bound constrained + augmented Lagrangian method first proposed by Conn, Gould, andToint [SIAM + J. Numer. Anal., 28 (1991), pp. 545\u2013572]. In the pattern search adaptation, + we solve the bound constrained subproblem approximately using a pattern search + method. The stopping criterion proposedby Conn, Gould, andToint for the solution + of the subproblem requires explicit knowledge of derivatives. Such information + is presumed absent in pattern search methods; however, we show how we can + replace this with a stopping criterion basedon the pattern size in a way that + preserves the convergence properties of the original algorithm. In this way + we proceedby successive, inexact, bound constrained minimization without knowing + exactly how inexact the minimization is. As far as we know, this is the first + provably convergent direct search method for general nonlinear programming.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-08-14\n + \ 2002\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.113.8830\n + \ http://www.math.wm.edu/~buckaroo/pubs/siopt02/siopt02.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.115.6956\n + \ 2015-10-05\n
\n \n + \ \n + \ Artificial neural networks: Are they . . . \n + \ John Griffith\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-08-14\n + \ 2000\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.115.6956\n + \ http://mdm.sagepub.com/cgi/reprint/20/2/243.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.115.7175\n + \ 2015-10-05\n
\n \n + \ \n + \ Linear Programming and the Worst-Case Analysis of Greedy + Algorithms on Cubic Graphs \n W. Duckworth + \ \n N. C. Wormald \n Key + words\n worst-case analysis\n + \ cubic\n 3-regular\n + \ graphs\n linear programming\n + \ We introduce a technique using linear programming + that may be used to analyse the worst-case performance of a class of greedy + heuristics for certain optimisation problems on regular graphs. We demonstrate + the use of this technique on heuristics for bounding the size of a minimum + maximal matching (MMM), a minimum connected dominating set (MCDS) and a minimum + independent dominating set (MIDS) in cubic graphs. As a result, we show that + for n-vertex connected cubic graphs, the size of a MMM is at most 9n/20 + + O(1), the size of a MCDS is at most 3n/4 + O(1) and the size of a MIDS is + at most 29n/70 + O(1). We also consider n-vertex connected cubic graphs of + girth at least 5 and for such graphs we show that the size of a MMM is at + most 3n/7 + O(1), the size of a MCDS is at most 2n/3 + O(1) and the size of + a MIDS is at most 3n/8 + O(1).\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-08-14\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.115.7175\n + \ http://www.math.uwaterloo.ca/~nwormald/papers/LP.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.116.6918\n + \ 2015-10-05\n
\n \n + \ \n + \ The Maelstrom: Network Service Debugging via \u2018\u2018Ineffective + Procedures\u2019\u2019\n Alva L. Couch\n + \ Noah Daniels\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-08-14\n + \ 2001\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.116.6918\n + \ http://www.usenix.org/events/lisa01/tech/full_papers/couch/couch.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.117.1034\n + \ 2015-10-05\n
\n \n + \ \n + \ Algorithms and Experiments for . . . Hard Graph Problems\n + \ Falk H\xFCffner\n abdeckt. + Es hat Anwendungen in Compileroptimierung\n geometrischen + Berechnungsproblemen und angewandter Statistik. Beim Balanced Subgraph-Problem\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-08-14\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.117.1034\n + \ http://theinf1.informatik.uni-jena.de/publications/diss-hueffner07.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.117.2198\n + \ 2015-10-05\n
\n \n + \ \n + \ Integrated and Dynamic Vehicle and Crew Scheduling\n + \ Dennis Huisman\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-08-14\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.117.2198\n + \ http://publishing.eur.nl/ir/repub/asset/6779/few_huisman_20040220.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.120.4829\n + \ 2015-10-04\n
\n \n + \ \n + \ Oblique graphs\n Jens + Schreyer\n The main issue of this work + is to investigate asymmetric structures in graphs. While symmetry structures + in graphs are well observed, the opposite question has not been investigated + deeply so far. It is known from a theorem of Wright, that almost all graphs + are asymmetric. The class of asymmetric graphs is restricted further by forbidding + even local symmetries. The main question is to determine how many graphs do + have this stronger so-called obliqueness property. On the one hand the superclass + of asymmetric graphs is not only infinite, but contains almost all graphs. + On the other hand many Ramsey type results indicate, that growing structures + enforce at least local symmetries or regularities. In the first part of the + work oblique structures in polyhedral graphs are investigated. Several type + definitions for faces and edges of a polyhedral graph are introduced. A polyhedral + graph is called oblique with respect to a type definition if it does not contain + two faces or edges, respectively, which are of the same type. The main results + of that part are theorems that show the finiteness of the class of such oblique + polyhedral graphs. In some cases it is shown\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2008-12-03\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.120.4829\n + \ http://deposit.ddb.de/cgi-bin/dokserv?idn=981044115&dok_var=d1&dok_ext=pdf&filename=981044115.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.120.6876\n + \ 2015-10-05\n
\n \n + \ \n + \ Pattern Search Methods for Linearly Constrained Minimization\n + \ Robert Michael Lewis \n Virginia + Torczon\n Key words. pattern search\n + \ linearly constrained minimization\n + \ We extend pattern search methods to linearly constrained minimization. We + develop a general class of feasible point pattern search algorithms and prove + global convergence to a Karush\u2013Kuhn\u2013Tucker point. As in the case + of unconstrained minimization, pattern search methods for linearly constrained + problems accomplish this without explicit recourse to the gradient or the + directional derivative of the objective. Key to the analysis of the algorithms + is the way in which the local search patterns conform to the geometry of the + boundary of the feasible region.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-12-03\n + \ 2000\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.120.6876\n + \ http://www.math.wm.edu/~buckaroo/pubs/siopt00/siopt00.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.120.8990\n + \ 2015-10-05\n
\n \n + \ \n + \ A Computational Study of Dantzig-Wolfe Decomposition\n + \ James Richard Tebboth\n This + thesis evaluates the computational merits of the Dantzig-Wolfe decomposition + algorithm. We use modern computer hardware and software, and, in particular, + we have developed an efficient parallel implementation of Dantzig-Wolfe decomposition. + We were able to solve problems of up to 83,500 rows, 83,700 columns, and 622,000 + non-zero elements, and one important instance was solved in 63 % of the time + taken by a commercial implementation of the simplex method. If we were content + with a solution guaranteed to be within 0.1 % of optimality, then the solution + time can be cut by a further 32%. Using parallel hardware we can cut the solution + time further: by 59 % on a four processor PC (equivalent to a speed-up of + 2.42) or 81 % on seven processors of a Silicon Graphics workstation (a speed-up + of 5.22). Dantzig-Wolfe decomposition is an optimisation technique for solving + large scale, block structured, linear programming (LP) problems. Problems + from many different fields such as production planning, refinery optimisation, + and resource allocation may be formulated as LP problems. Where there is some + structure arising from repeated components in the problem, such as the handling + of multi-periods,\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-12-03\n + \ 2001\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.120.8990\n + \ http://www.blisworthhouse.co.uk/OR/Decomposition/tebboth.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.121.4153\n + \ 2015-10-05\n
\n \n + \ \n + \ Geometric design of part feeders\n Robert-Paul + Mario Berretty\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-12-03\n + \ 2000\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.121.4153\n + \ http://igitur-archive.library.uu.nl/dissertations/1940512/full.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.121.7174\n + \ 2015-10-05\n
\n \n + \ \n + \ Cutting Plane Algorithms for Variational Inference in + Graphical Models\n David Alexander Sontag\n + \ In this thesis, we give a new class of outer bounds + on the marginal polytope, and propose a cutting-plane algorithm for efficiently + optimizing over these constraints. When combined with a concave upper bound + on the entropy, this gives a new variational inference algorithm for probabilistic + inference in discrete Markov Random Fields (MRFs). Valid constraints are derived + for the marginal polytope through a series of projections onto the cut polytope. + Projecting onto a larger model gives an efficient separation algorithm for + a large class of valid inequalities arising from each of the original projections. + As a result, we obtain tighter upper bounds on the logpartition function than + possible with previous variational inference algorithms. We also show empirically + that our approximations of the marginals are significantly more accurate. + This algorithm can also be applied to the problem of finding the Maximum a + Posteriori assignment in a MRF, which corresponds to a linear program over + the marginal polytope. One of the main contributions of the thesis is to bring + together two seemingly different fields, polyhedral combinatorics and probabilistic + inference,\n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-12-03\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.121.7174\n + \ http://people.csail.mit.edu/dsontag/masters_thesis.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.122.3818\n + \ 2015-10-05\n
\n \n + \ \n + \ Maintaining Large Software Repositories with SLINK\n + \ Alva L. Couch\n Greg + Owen\n The traditional practice of installing + a mix of software packages in a single filesystem tree creates several problems + when the installation tree has a long lifetime. As software is replaced and + deleted, it is difficult to completely remove any package, so that over time + the tree gradually becomes corrupted with files of unclear function. Because + all installers work in the same tree, they can unknowingly undo the work of + other installers in ways that are difficult to detect. Many special-purpose + repository management tools solve these problems by allowing installers to + segregate software into disjoint package trees while presenting them to the + user in a union tree constructed from directories and symbolic links. Packages + can then be added, deleted, and installed with no risk of affecting other + packages. Most of these tools impose a rigid structure on the package hierarchy + and support many features, such as software distribution. SLINK is a general-purpose + UNIX utility that incrementally constructs arbitrary symbolic unions of UNIX + directory trees from normal UNIX directories and symbolic links. When used + as a repository management tool, it imposes few limits on package structure + and location, is very easy to learn to use, and supports a more fluid and + flexible administrative protocol than that of special-purpose tools. Using + SLINK and appropriate administrative protocols, one can avoid repository corruption, + maintain multiple user environments, customize read-only filesystems such + as CD-ROMS, and construct tiered hierarchies of local and imported repositories.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-12-03\n + \ 1995\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.122.3818\n + \ http://www.eecs.tufts.edu/~couch/slink/src/sans95-paper.ps\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.124.3277\n + \ 2015-10-05\n
\n \n + \ \n + \ AGENT-BASED PERSONALIZED TOURIST ROUTE ADVICE SYSTEM\n + \ Yuxian Sun \n Lyndon + Lee \n KEY WORDS\n Automation\n + \ data mining\n navigation\n + \ GIS\n mathematics\n + \ knowledge base\n requirements\n + \ This paper proposes a tourist route model that is + based on the integration of GIS spatial analysis functions and a kind of heuristic + search algorithm based on local optimisation. A vector-based model is used + to represent tourists\u2019 personal interests and the available tourist resources. + Based on these two representations, the system can build a user model that + indicates the attractions values of the tourist features in a particular area + to individual tourists. The route agent then uses this user model to generate + personalized tourist routes. This research adopts a Tabu search method, called + extension/collapse algorithm, that is applied in the operations research for + maximizing some utilities under certain constraints. It is a heuristic search + method that progressively selects each tourist site based on both its attraction + value and the cost value. An empirical evaluation has been carried out on + the personalized route advice system. The result suggests that the tourist + route model generates tourist routes that are empirically consistent with + the tourists\u2019 preferences.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-12-04\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.124.3277\n + \ http://www.cartesia.org/geodoc/isprs2004/comm2/papers/147.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.125.6859\n + \ 2015-10-04\n
\n \n + \ \n + \ Topological properties of activity orders for matroid + bases\n Rieuwert J. Blok\n Bruce + E. Sagan\n Key Words\n externally + active\n homology\n lattice\n + \ matroid\n m\xF6bius\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-04\n 2008-12-04\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.125.6859\n + \ http://www.math.msu.edu/~sagan/Papers/Old/tpa.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.127.6012\n + \ 2015-10-05\n
\n \n + \ \n + \ Graph Minors. XX. Wagner\u2019s conjecture\n + \ Neil Robertson\n P. + D. Seymour\n We prove Wagner&apos;s + conjecture, that for every infinite set of finite graphs, one of its members + is isomorphic to a minor of another. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-12-29\n + \ 2004\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.127.6012\n + \ http://www.math.princeton.edu/~pds/papers/GM20/GM20.ps\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.129.4528\n + \ 2015-10-05\n
\n \n + \ \n + \ Global impact analysis of dynamic library dependencies\n + \ Yizhan Sun\n Alva + L. Couch\n Sowhat is an administrative + tool that performs global impact analysis of dynamic library dependencies + for Solaris systems. Sowhat runs in two phases. It first builds a database + of dependencies offline in the background, and then answers user queries and + generates reports in real time based upon stored knowledge. Using sowhat, + one can find problems with library bindings in large program repositories + before these problems annoy potential users. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-12-30\n + \ 2001\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.129.4528\n + \ http://www.eecs.tufts.edu/~couch/sowhat/sowhat.ps\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.132.7654\n + \ 2015-10-05\n
\n \n + \ \n + \ Exploiting group communication for reliable high volume + data distribution\n Jeremy R. Cooperstock\n + \ Steve Kotsopoulos\n + The design and implementation of a protocol to provide reliable and efficient + distribution of large quantities of data to many hosts on a local area network + or internetwork is described. By exploiting the one-to-many transmission capabilities + of multicast and broadcast, it is possible to transmit data to multiple hosts + simultaneously, using less bandwidth and thus obtaining greater efficiency + than repeated unicasting. Although performance measurements indicate the superiority + of multicast, we dynamically select from available transmission modes so as + to maximize efficiency and throughput while providing reliable delivery of + data to all hosts. Our results demonstrate that filedistribution programs + based on this protocol can benefit from a linear speed-up over TCP-based programs + such as rdist. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-12-30\n + \ 1995\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.132.7654\n + \ http://www.cim.mcgill.ca/sre/publications/ieee95.afdp.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.135.4281\n + \ 2015-10-05\n
\n \n + \ \n + \ Trap Design for Vibratory Bowl Feeders \n + \ Robert-Paul Berretty\n Ken + Goldberg\n Lawrence Cheung \n + \ Mark H. Overmars, A. Frank van der Stappen, et al.\n + \ The vibratory bowl feeder is the oldest and still + most common approach to the automated feeding (orienting) of industrial parts. + In this paper we consider a class of vibratory bowl filters that can be described + by removing polygonal sections from the track; we refer to this class of filters + as imps. For an n-sided convex polygonal part and m-sided convex polygonal + trap, we give an O((n + m) log(n + m)) algorithm to decide if the part will + be rejected by the trap, and an O((nrn(n + m))l+\u2019) algorithm which deals + with non-convex parts and traps. We then consider the problem of designing + traps for a given part, and consider two rectilinear subclasses, balconies + and gap ~. We give linear and 0(n\xB2) algorithms for designing feeders and + have tested the results with physical experiments using a commercial inline + vibratory feeder. Our algorithms can be tested using online java applets:\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2009-02-02\n + \ 1999\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.135.4281\n + \ http://lims.mech.northwestern.edu/~lynch/patterns/feeder.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.136.769\n + \ 2015-10-05\n
\n \n + \ \n + \ It\u2019s Elementary, Dear Watson: Applying Logic Programming + To Convergent System Management Processes\n Alva + L. Couch\n Michael Gilfix\n + \ In an ideal world, the system administrator would + simply specify a complete model of system requirements and the system would + automatically fulfill them. If requirements changed, or if the system deviated + from requirements, the system would change itself to converge with requirements. + Current specialized tools for convergent system administration already provide + some ability to do this, but are limited by specification languages that cannot + adequately represent all possible sets of requirements. We take the opposite + approach of starting with a general-purpose logic programming language intended + for specifying requirements and analyzing system state, and adapting that + language for system administration. Using Prolog with appropriate extensions, + one can specify complex system requirements and convergent processes involving + multiple information domains, including information about files, filesystems, + users, and processes, as well as information from databases. By hiding unimportant + details, Prolog allows a simple relationship between requirements and the + scripts that implement them. We illustrate these observations by use of a + simple proof-of-concept prototype.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2009-02-02\n + \ 1999\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.136.769\n + \ http://www.usenix.org/events/lisa99/full_papers/couch/couch.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.137.4035\n + \ 2015-10-05\n
\n \n + \ \n + \ Nix: A Safe and Policy-free System for Software Deployment\n + \ Eelco Dolstra\n Merijn + de Jonge\n Eelco Visser \n + \ Existing systems for software deployment are neither + safe nor sufficiently flexible. Primary safety issues are the inability to + enforce reliable specification of component dependencies, and the lack of + support for multiple versions or variants of a component. This renders deployment + operations such as upgrading or deleting components dangerous and unpredictable. + A deployment system must also be flexible (i.e., policy-free) enough to support + both centralised and local package management, and to allow a variety of mechanisms + for transferring components. In this paper we present Nix, a deployment system + that addresses these issues through a simple technique of using cryptographic + hashes to compute unique paths for component instances.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ USENIX\n 2015-10-05\n + \ 2009-02-02\n 2004\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.137.4035\n + \ http://www.st.ewi.tudelft.nl/~dolstra/pubs/nspfssd-lisa2004-final.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.141.4780\n + \ 2015-10-04\n
\n \n + \ \n + \ Crossing number, pair-crossing number, and expansion\n + \ Petr Kolman\n Jiri + Matousek\n We also prove by similar + methods that a graph G with crossing number k = cr(G) ? Cpssqd(G) m log2 n + has a nonplanar subgraph on at most O\\Gamma \\Delta nm log2 nk \\Delta vertices, + where m is the number of edges, \\Delta is the maximum degree in G, and C + is a suitable sufficiently large constant.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2009-07-03\n + \ 2004\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.141.4780\n + \ http://kam.mff.cuni.cz/~kolman/papers/pcr.ps\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.145.7252\n + \ 2015-10-05\n
\n \n + \ \n + \ A short convergence proof for a class of Ant Colony Optimization + algorithms\n Thomas St\xFCtzle\n + \ Marco Dorigo\n + In this paper, we prove some convergence properties for a class of ant colony + optimization algorithms. In particular, we prove that for any small constant + 0 and for a sufficiently large number of algorithm iterations, the probability + of finding an optimal solution at least once is ( ) 1 and that this probability + tends to 1 for. We also prove that, after an optimal solution has been found, + it takes a finite number of iterations for the pheromone trails associated + to the found optimal solution to grow higher than any other pheromone trail + and that, for, any fixed ant will produce the optimal solution during the + th iteration with probability 1 ^ ( min max), where min and max are the minimum + and maximum values that can be taken by pheromone trails. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2009-11-03\n + \ 2002\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.145.7252\n + \ http://code.ulb.ac.be/dbfiles/StuDor2002tec.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.148.6783\n + \ 2015-10-05\n
\n \n + \ \n + \ A polynomial-time algorithm to design push plans for sensorless + parts sorting\n Mark de Berg\n + \ Xavier Goaoc \n A. + Frank van der Stappen\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2009-12-22\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.148.6783\n + \ http://www.roboticsproceedings.org/rss01/p13.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.15.1390\n + \ 2015-10-05\n
\n \n + \ \n + \ Very Large-Scale Linear Programming: A Case Study in Exploiting + Both Parallelism and Distributed Memory\n Anne + Kilgore\n EXPLOITING BOTH PARALLELISM AND\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-21\n + \ 1993\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.15.1390\n + \ http://www.crpc.rice.edu/CRPC/softlib/CRPC-TR93354-S.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.15.5938\n + \ 2015-10-05\n
\n \n + \ \n + \ Why Use a Fishing Line When You Have a Net? An Adaptive + Multicast Data Distribution Protocol \n Jeremy + R. Cooperstock\n Steve Kotsopoulos\n + \ The design and implementation of a system to provide + reliable and efficient distribution of large quantities of data to many hosts + on a local area network or internetwork is described. By exploiting the one-to-many + transmission capabilities of multicast and broadcast, it is possible to transmir + data to multiple hosts simultaneously, using less bandwidth and thus obtaining + greater efficiency than repeated unicasting. Although performance measurements + indicate the superiority of multicast, we dynamically select from available + transmission modes so as to maximize efficiency and throughput while providing + reliable delivery of data to all hosts. Our results demonstrate that file-distribution + programs based on our protocol can benefit from a substantial speed-up over + TCPbased programs such as rdist. For example, our system has been used to + distribute a 133 Kbyte password file to 68 hosts in 20 seconds, whereas the + equivalent rdist took 251 seconds.\n The + Pennsylvania State University CiteSeerX Archives\n The + USENIX Association\n 2015-10-05\n + \ 2007-11-21\n 1996\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.15.5938\n + \ http://www.cim.mcgill.ca/~jer/pub/usenix96.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.15.7447\n + \ 2015-10-05\n
\n \n + \ \n + \ Geometric Eccentricity and the Complexity of Manipulation + Plans\n A. Frank van der Stappen\n + \ Ken Goldberg\n Mark + H. Overmars\n when they are constructed + with pathological `worst-case&apos; scenarios that rarely appear in practice. + Complexity can in some cases be reduced bycharacterizing nonpathological objects + in terms of intuitive geometric properties. In this ... paper we consider + \ the number of push and push-squeeze actions needed to orient a part without + sensors and improve on the upper bound of O(n) for polygonal parts given + by Chen and Ierardi in [9]. We define the geometric eccentricity of a planar + part based on the aspect ratio of a distinguished bounding box. We show that + only O(1) actions are required for parts with non-zero eccentricity. The + analysis also applies to curved parts, providing the first complexity bound + for non-polygonal parts. Our results also yield new bounds on part feeders + that use fences and conveyor belts.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-21\n + \ 1996\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.15.7447\n + \ http://www.ieor.berkeley.edu/~goldberg/pubs/eccentricity.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.150.8663\n + \ 2015-10-05\n
\n \n + \ \n + \ Exploratory Analysis . . . Algorithms in Biobjective Optimization\n + \ Manuel L\xF3pez-ib\xE1\xF1ez\n Luis + Paquete\n Thomas St\xFCtzle\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2010-01-12\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.150.8663\n + \ http://iridia.ulb.ac.be/IridiaTrSeries/IridiaTr2009-015r001.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.153.5699\n + \ 2015-10-04\n
\n \n + \ \n + \ Matrix Embedding with Pseudorandom Coefficient Selection + and Error Correction for Robust and Secure Steganography\n Anindya + Sarkar\n Upamanyu Madhow\n + \ B. S. Manjunath\n Index + Terms\n In matrix embedding (ME) based + steganography, the host coefficients are minimally perturbed such that the + transmitted bits fall in a coset of a linear code, with the syndrome conveying + the hidden bits. The corresponding embedding distortion and vulnerability + to steganalysis are significantly less than that of conventional quantization + index modulation (QIM) based hiding. However, ME is less robust to attacks, + with a single host bit error leading to multiple decoding errors for the hidden + bits. In this paper, we employ the ME-RA scheme, a combination of ME-based + hiding with powerful repeat accumulate (RA) codes for error correction, to + address this problem. A key contribution of this paper is to compute log likelihood + ratios (LLRs) for RA decoding, taking into account the many-to-one mapping + between the host coefficients and an encoded bit, for ME. To reduce detectability, + we hide in randomized blocks, as in the recently proposed Yet Another Steganographic + Scheme (YASS), replacing the QIM-based embedding in YASS by the proposed ME-RA + scheme. We also show that the embedding performance can be improved by employing + punctured RA codes. Through experiments based on a couple of thousand images, + we show that for the same embedded data-rate and a moderate attack level, + the proposed ME-based method results in a lower detection rate than that obtained + for QIM-based YASS.\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2010-02-24\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.153.5699\n + \ http://vision.ece.ucsb.edu/publications/Anindya_ME_TIFS_10.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.156.5983\n + \ 2015-10-05\n
\n \n + \ \n + \ Recent Models and Algorithms for One-to-One Pickup and + Delivery Problems \n Jean-Fran\xE7ois Cordeau\n + \ Gilbert Laporte\n Stefan + Ropke\n In one-to-one Pickup and Delivery + Problems (PDPs), the aim is to design a set of least cost vehicle routes starting + and ending at a common depot in order to satisfy a set of pickup and delivery + requests between location pairs, subject to side constraints. Each request + originates at one location and is destined for one other location. These requests + apply to the transportation of goods or people, in which case the problem + is often called the dial-a-ride problem. In recent years, there have been + several significant developments in the area of exact and heuristic algorithms + for PDPs. The purpose of this article is to report on these developments. + It contains two main sections devoted to single vehicle and multi-vehicle + problems, respectively. Each section is subdivided into two parts, one on + exact algorithms and one on heuristics. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2010-03-13\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.156.5983\n + \ http://www.diku.dk/users/sropke/Papers/Recent%20Models%20and%20Algorithms%20for%20One-to-One%20Pickup%20and%20Delivery%20Problems_revised.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.159.5909\n + \ 2015-10-05\n
\n \n + \ \n + \ Checkpointing and Rollback-Recovery for Disitributed + Systems\n Richard Koo\n Sam + Toueg\n We consider the problem of + bringing a distributed system to a consistent state after transient failures. + We address the two components of this problem by describing a distributed + algorithm to create consistent checkpoints, as well as a rollback-recovery + algorithm to recover the system to a consistent state. In contrast to previous + algorithms, they tolerate failures that occur during their executions. Furthermore, + when a process takes a checkpoint, a minimal number of additional processes + are forced to take checkpoints. Similarly, when a process rolls back and restarts + after a failure, a minimal number of additional processes are forced to roll + back with it. Our algorithms require each process to store at most two checkpoints + in stable storage. This storage requirement is shown to be minimal under general + assumptions. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2010-04-04\n + \ 1987\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.159.5909\n + \ http://www.utdallas.edu/~praba/Koo-Toueg.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.178.7193\n + \ 2015-10-05\n
\n \n + \ \n + \ filetsf: A File Transfer Systems Based on lpr/lpd\n + \ John Sellens\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2010-12-25\n + \ 1995\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.178.7193\n + \ http://www.usenix.org/publications/library/proceedings/lisa95/full_papers/sellens.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.182.5165\n + \ 2015-10-05\n
\n \n + \ \n + \ The Augmented Lagrange Multiplier Method for Exact Recovery + of Corrupted Low-Rank Matrices \n Zhouchen + Lin\n Minming Chen\n Leqin + Wu\n Yi Ma\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2011-03-05\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.182.5165\n + \ http://perception.csl.illinois.edu/matrix-rank/Files/Lin09-MP.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.182.8986\n + \ 2015-10-05\n
\n \n + \ \n + \ Stochastic local search . . . -- Graph Colouring . . + .\n Marco Chiarandini\n + This thesis is about advances in the application of Stochastic Local Search + methods for solving graph colouring problems and highly constrained combinatorial + optimisation problems that arise from real world systems. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2011-03-08\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.182.8986\n + \ http://imada.sdu.dk/%7Emarco/Publications/Files/ChiarandiniPhD.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.187.7810\n + \ 2015-10-05\n
\n \n + \ \n + \ Fast algorithms for recovering a corrupted low-rank matrix + \n Arvind Ganesh\n Zhouchen + Lin\n John Wright\n Leqin + Wu\n Minming Chen\n Yi + Ma\n This paper studies algorithms + for solving the problem of recovering a low-rank matrix with a fraction of + its entries arbitrarily corrupted. This problem can be viewed as a robust + version of classical PCA, and arises in a number of application domains, including + image processing, web data ranking, and bioinformatic data analysis. It was + recently shown that under surprisingly broad conditions, it can be exactly + solved via a convex programming surrogate that combines nuclear norm minimization + and \u2113 1-norm minimization. This paper develops and compares two complementary + approaches for solving this convex program. The first is an accelerated proximal + gradient algorithm directly applied to the primal; while the second is a gradient + algorithm applied to the dual problem. Both are several orders of magnitude + faster than the previous stateof-the-art algorithm for this problem, which + was based on iterative thresholding. Simulations demonstrate the performance + improvement that can be obtained via these two algorithms, and clarify their + relative merits. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2011-04-29\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.187.7810\n + \ http://research.microsoft.com/en-us/people/zhoulin/Publications/2009-CAMSAP-RPCA.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.187.8640\n + \ 2015-10-05\n
\n \n + \ \n + \ Orienting Toleranced Polygonal Parts\n Srinivas + Akella\n Matthew T. Mason\n + \ Parts manufactured to tolerances have variations + in shape. Most previous work in robotic manipulation assumes that parts do + not have shape variations. Orienting devices such as bowl feeders often fail + due to variations in part shape. We study the effects of uncertainty in part + shape on orienting to develop systems that can orient toleranced polygonal + parts. We present a tolerance model in which the part center of mass and vertices + lie in circular uncertainty zones around their nominal positions. The variations + in part shape are characterized by the tolerance model and the part\u2019s + nominal shape. We describe the nondeterminism that arises due to part shape + uncertainty for a conveyor-based orienting system and show that sensor-based + and sensorless orienting plans can exist for toleranced polygonal parts. We + present implemented planners that generate orienting plans for the entire + variational class of part shapes\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2011-04-29\n + \ 2000\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.187.8640\n + \ http://www.ri.cmu.edu/pub_files/pub4/akella_srinivas_2000_1/akella_srinivas_2000_1.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.188.8022\n + \ 2015-10-05\n
\n \n + \ \n + \ Branch and Tree Decomposition Techniques for Discrete + Optimization\n Illya V. Hicks\n + \ Arie M. C. A. Koster, et al.\n Treewidth\n + \ Graph algorithms\n Combinatorial + Optimization\n This chapter gives a + general overview of two emerging techniques for discrete optimization that + have footholds in mathematics, computer science, and operations research: + branch decompositions and tree decompositions. Branch decompositions and tree + decompositions along with their respective connectivity invariants, branchwidth + and treewidth, were first introduced to aid in proving the Graph Minors Theorem, + a wellknown conjecture (Wagner\u2019s conjecture) in graph theory. The algorithmic + importance of branch decompositions and tree decompositions for solving NP-hard + problems modelled on graphs was first realized by computer scientists in relation + to formulating graph problems in monadic second order logic. The dynamic programming + techniques utilizing branch decompositions and tree decompositions, called + branch decomposition and tree decomposition based algorithms, fall into a + class of algorithms known as fixed-parameter tractable algorithms and have + been shown to be effective in a practical setting for NP-hard problems such + as minimum domination, the travelling salesman problem, general minor containment, + and frequency assignment problems.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2011-05-09\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.188.8022\n + \ http://www.cs.duke.edu/%7Ebrd/Teaching/Bio/asmb/current/3papers/Review-Algorithms/hicks-TW-BW.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.19.2201\n + \ 2015-10-05\n
\n \n + \ \n + \ Geometry and Part Feeding\n A. + Frank van der Stappen\n Robert-Paul Berretty\n + \ Ken Goldberg\n Mark + H. Overmars\n Many automated manufacturing + processes require parts to be oriented prior to assembly. A part feeder takes + in a stream of identical parts in arbitrary orientations and outputs them + in uniform orientation. We consider\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-21\n + \ 2001\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.19.2201\n + \ http://archive.cs.uu.nl/pub/RUU/CS/techreps/CS-2001/2001-11.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.193.3983\n + \ 2015-10-04\n
\n \n + \ \n + \ On monitoring large-scale Wireless Mesh Networks \n + \ Gregory Detal\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2011-07-19\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.193.3983\n + \ http://inl.info.ucl.ac.be/system/files/wmnmon2009.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.200.2802\n + \ 2015-10-05\n
\n \n + \ \n + \ A review and classification of heuristics for permutation + flowshop scheduling with makespan objective \n Jose + M. Framinan\n Jatinder N. D. Gupta\n + \ Rainer Leisten\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2011-10-29\n + \ 2002\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.200.2802\n + \ http://taylor.us.es/cicyt/reports/TROI-2001-02.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.212.2012\n + \ 2015-10-05\n
\n \n + \ \n + \ Fare Planning\n Marc + Pfetsch\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2012-02-20\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.212.2012\n + \ http://www.zib.de/borndoerfer/Homepage/Documents/IPOV-WS06-FarePlanning.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.219.294\n + \ 2015-10-04\n
\n \n + \ \n + \ On security threats for robust perceptual hashing\n + \ O. Koval \n S. Voloshynovskiy + \ \n P. Bas \n F. + Cayre \n Perceptual hashing has to + deal with the constraints of robustness, accuracy and security. After modeling + the process of hash extraction and the properties involved in this process, + two different security threats are studied, namely the disclosure of the secret + feature space and the tampering of the hash. Two different approaches for + performing robust hashing are presented: Random-Based Hash (RBH) where the + security is achieved using a random projection matrix and Content-Based Hash + (CBH) were the security relies on the difficulty to tamper the hash. As for + digital watermarking, different security setups are also devised: the Batch + Hash Attack, the Group Hash Attack, the Unique Hash Attack and the Sensitivity + Attack. A theoretical analysis of the information leakage in the context of + Random-Based Hash is proposed. Finally, practical attacks are presented: (1) + Minor Component Analysis is used to estimate the secret projection of Random-Based + Hashes and (2) Salient point tampering is used to tamper the hash of Content-Based + Hashes systems. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2012-04-12\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.219.294\n + \ http://cvml.unige.ch/publications/postscript/2009/spie_security_2009.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.22.3362\n + \ 2015-10-05\n
\n \n + \ \n + \ On the History of Combinatorial Optimization (till 1960)\n + \ Alexander Schrijver\n + \ As a coherent mathematical discipline, combinatorial optimization is relatively + young. When studying the history of the field, one observes a number of independent + lines of research, separately considering problems like optimum assignment, + shortest spanning tree, transportation, and the traveling salesman problem. + Only in the 1950&apos;s, when the unifying tool of linear and integer + programming became available and the area of operations research got intensive + attention, these problems were put into one framework, and relations between + them were laid. Indeed, linear programming forms the hinge in the history + of combinatorial optimization. Its initial conception by Kantorovich and Koopmans + was motivated by combinatorial applications, in particular in transportation + and transshipment. After the formulation of linear programming as generic + problem, and the development in 1947 by Dantzig of the simplex method as a + tool, one has tried to attack about all combinatorial opti\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2007-11-21\n + \ application/postscript\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.22.3362\n + \ http://www.cwi.nl/~lex/files/histco.ps\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.220.5886\n + \ 2015-10-04\n
\n \n + \ \n + \ Facial parity edge colouring\n J\xFAlius + Czap\n Stanislav Jendrol, et al.\n + \ plane graph\n facial + walk\n edge colouring Math. Subj. Class\n + \ 05C10\n 05C15\n + \ The facial parity edge colouring of a connected + bridgeless plane graph is such an edge colouring in which no two face-adjacent + edges (consecutive edges of a facial walk of some face) receive the same colour, + in addition, for each face \u03B1 and each colour c, either no edge or an + odd number of edges incident with \u03B1 is coloured with c. From the Vizing\u2019s + theorem it follows that every 3-connected plane graph has a such colouring + with at most \u2206 \u2217 + 1 colours, where \u2206 \u2217 is the size + of the largest face. In this paper we prove that any connected bridgeless + plane graph has a facial parity edge colouring with at most 92 colours.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2012-05-06\n + \ 2011\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.220.5886\n + \ http://hal.inria.fr/docs/00/63/49/47/PDF/CJK11.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.224.8574\n + \ 2015-10-04\n
\n \n + \ \n + \ Balanced edge colorings\n P. + N. Balister\n A A. Kostochka\n + \ Hao Li\n R. H. Schelp + \ \n This paper contains two principal + results. The first proves that any graph G can be given a balanced proper + edge coloring by k colors for any kXw0\xF0G\xDE: Here balanced means that + the number of vertices incident with any set of d colors is essentially fixed + for each d; that is, for two different d-sets of colors the number of vertices + incident with each of them can differ by at most 2. 90 \nThe second result + gives upper bounds for the vertex-distinguishing edge chromatic number of + graphs G with few vertices of low degree. In particular, it proves a conjecture + of Burris and Schelp in the case when D\xF0G\xDEX ffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffi + p 2jV\xF0G\xDEj \xFE 4 and d\xF0G\xDEX5: r 2003 Elsevier Inc. All rights reserved. + 1.\n The Pennsylvania State University + CiteSeerX Archives\n \n 2015-10-04\n + \ 2012-05-09\n 2004\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.224.8574\n + \ http://www.math.uiuc.edu/%7Ekostochk/docs/2004/jctb04bls.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.227.4970\n + \ 2015-10-04\n
\n \n + \ \n + \ Steganalysis by Subtractive Pixel Adjacency Matrix\n + \ Tom\xE1\u0161 Pevn\xFD\n Patrick + Bas\n Jessica Fridrich\n LSB + matching\n \xB11 embedding Categories and\n + \ This paper presents a novel method for detection + of steganographic methods that embed in the spatial domain by adding a low-amplitude + independent stego signal, an example of which is LSB matching. First, arguments + are provided for modeling differences between adjacent pixels using first-order + and second-order Markov chains. Subsets of sample transition probability matrices + are then used as features for a steganalyzer implemented by support vector + machines. The accuracy of the presented steganalyzer is evaluated on LSB matching + and four different databases. The steganalyzer achieves superior accuracy + with respect to prior art and provides stable results across various cover + sources. Since the feature set based on second-order Markov chain is highdimensional, + we address the issue of curse of dimensionality using a feature selection + algorithm and show that the curse did not occur in our experiments.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2012-05-18\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.227.4970\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.230.4053\n + \ 2015-10-04\n
\n \n + \ \n + \ High resolution SAR-image classification by Markov random + fields and finite mixtures\n Gabriele Moser + \ \n Vladimir Krylov \n Sebastiano + B. Serpico \n Josiane Zerubia \n + \ SAR image classification\n dictionary\n + \ amplitude probability density\n stochastic + expectation maximization\n Markov\n + \ In this paper we develop a novel classification + approach for high and very high resolution polarimetric synthetic aperture + radar (SAR) amplitude images. This approach combines the Markov random field + model to Bayesian image classification and a finite mixture technique for + probability density function estimation. The finite mixture modeling is done + via a recently proposed dictionary-based stochastic expectation maximization + approach for SAR amplitude probability density function estimation. For modeling + the joint distribution from marginals corresponding to single polarimetric + channels we employ copulas. The accuracy of the developed semiautomatic supervised + algorithm is validated in the application of wet soil classification on several + high resolution SAR images acquired by TerraSAR-X and COSMO-SkyMed.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2012-05-27\n + \ 2010\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.230.4053\n + \ http://hal.inria.fr/docs/00/44/23/48/PDF/moserSPIE2010a.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.232.5982\n + \ 2015-10-04\n
\n \n + \ \n + \ Dictionary-based probability density function estimation + for high-resolution SAR data\n Vladimir Krylov + \ \n Gabriele Moser \n Sebastiano + B. Serpico \n Josiane Zerubia \n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-04\n 2012-06-21\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.232.5982\n + \ http://hal.inria.fr/docs/00/36/20/65/PDF/Krylov_spie09.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.24.220\n + \ 2015-10-05\n
\n \n + \ \n + \ Exploiting Group Communication for Reliable High Volume + Data Distribution\n Jeremy R. Cooperstock\n + \ Steve Kotsopoulos\n The + design and implementation of a protocol to provide reliable and efficient + distribution of large quantities of data to many hosts on a local area network + or internetwork is described. By exploiting the one-to-many transmission capabilities + of multicast and broadcast, it is possible to transmit data to multiple hosts + simultaneously, using less bandwidth and thus obtaining greater efficiency + than repeated unicasting. Although performance measurements indicate the superiority + of multicast, we dynamically select from available transmission modes so as + to maximize efficiency and throughput while providing reliable delivery of + data to all hosts. Our results demonstrate that filedistribution programs + based on this protocol can benefit from a linear speed-up over TCP-based programs + such as rdist.\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-21\n + \ 1995\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.24.220\n + \ http://www.ecf.toronto.edu:80/afdp/ieee95.afdp.ps\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.256.7414\n + \ 2015-10-05\n
\n \n + \ \n + \ Linear Stability of Ring Systems\n Robert + J. Vanderbei\n Consider the planar n+1-body + problem consisting of a large central body of mass M surrounded by a large + number, n, of smaller bodies each having a common mass m distributed uniformly + in a circle of radius r and in circular orbit about the central body. By analyzing + the situation where one of the smaller bodies is perturbed from this ideal + configuration, a linear stability analysis shows that the system is linearly + stable if where and M\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-01-04\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.256.7414\n + \ http://arxiv.org/pdf/astro-ph/0606510v1.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.259.1042\n + \ 2015-10-05\n
\n \n + \ \n + \ Output-sensitive peeling of convex and maximal layers\n + \ Franck Nielsen \n Convex + hulls\n Computational geometry\n + \ We give an output-sensitive algorithm to compute + the first k convex or maximal layers in 0 ( n log I&amp;)-time where Hk + is the number of points participating in the first k layers. Computing only + the first k layers is interesting in various problems that arise in computational + geometry (k-sets and dually k-levels, k-hulls and dually k-belts), pattern + recognition, statistics, operations research, etc.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-01-17\n + \ 1996\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.259.1042\n + \ http://www.informationgeometry.org/FrankNielsen/Journals/JOURNAL/1996-J-IPL-MaximaConvexLayers.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.26.6360\n + \ 2015-10-05\n
\n \n + \ \n + \ Experience-weighted Attraction Learning in Normal Form + Games\n Colin Camerer\n Teck-hua + Ho\n Learning\n behavioral + game theory\n reinforcement learning\n + \ ctitious play. Experience-weighted Attraction Learning + in Normal Form Games\n We describe a + general model, `experience-weighted attraction&apos; (EWA) learning, which + includes reinforcement learning and a class of weighted fictitious play belief + models as special cases. In EWA, strategies have attractions which reflect + prior predispositions, are updated based on payoff experience, and determine + choice probabilities according to some rule (e.g., logit). A key feature is + a parameter delta which weights the strength of hypothetical reinforcement + of strategies which were not chosen according to the payoff they would have + yielded. When delta = 0 choice reinforcement results. When delta = 1, levels + of reinforcement of strategies are proportional to expected payoffs given + beliefs based on past history. Another key feature is the growth rates of + attractions. The EWA model controls the growth rates by two decay parameters, + phi and rho, which depreciate attractions and amount of experience separately. + When phi = rho, belief-based models result; when rho = 0 choice reinforcement + results. Using three data se...\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-21\n + \ 1999\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.26.6360\n + \ http://www.hss.caltech.edu/SSPapers/wp1003.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.269.2271\n + \ 2015-10-05\n
\n \n + \ \n + \ Flow Shop Scheduling \n n.n.\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-01-31\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.269.2271\n + \ http://www.springerlink.com/content/w61p1353778673r3/fulltext.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.29.4658\n + \ 2015-10-05\n
\n \n + \ \n + \ Algorithms for Fence Design\n Robert-Paul + Berretty\n Ken Goldberg\n + \ Mark Overmars\n A. + Frank van der Stappen\n A common task + in automated manufacturing processes is to orient parts prior to assembly. + We address sensorless orientation of a polygonal part on a conveyor belt by + \ a sequence of stationary fences across this belt. Since fences can only + push against the motion of the belt, it is a challenging problem to compute + fence designs which orients a given part. In this paper, we give several + polynomial-time, algorithms to compute fence designs which are optimal with + respect to various criteria. We address both frictionless and frictional + fences. We also compute modular fence designs in which the fence angles are + restricted to a discrete set of angles instead of an interval. \n\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2007-11-21\n + \ 1998\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.29.4658\n + \ ftp://ftp.cs.ruu.nl/pub/RUU/CS/techreps/CS-1998/1998-06.ps.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.295.7465\n + \ 2015-10-05\n
\n \n + \ \n + \ Consumer Surplus in the Digital Economy: Estimating the + Value of Increased Product Variety at Online Booksellers\n Erik + Brynjolfsson\n Michael D. Smith\n + \ Yu (Jeffrey) Hu\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-07-15\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.295.7465\n + \ http://ebusiness.mit.edu/research/papers/2003.06_Brynjolfsson_Smith_Hu_Consumer + Surplus in the Digital Economy_176.pdf\n en\n + \ Metadata may be used without restrictions as long as + the oai identifier remains attached to it.\n \n + \ \n
\n \n
\n oai:CiteSeerX.psu:10.1.1.295.9010\n + \ 2015-10-05\n
\n \n + \ \n + \ Consumer Decision-making at an Internet Shopbot\n + \ Michael D. Smith\n Erik + Brynjolfsson\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-07-16\n + \ 2001\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.295.9010\n + \ http://ebusiness.mit.edu/research/papers/137_erikbinternetshopbots.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.297.3234\n + \ 2015-10-04\n
\n \n + \ \n + \ STEGANALYSIS OF DIGITAL IMAGES USING RICH IMAGE REPRESENTATIONS + AND ENSEMBLE CLASSIFIERS \n Jan Kodovsky\n + \ Modern detectors of steganographic communication + in digital images are implemented as supervised classifiers trained in pre-defined + feature spaces also called image models. Currently, the Support Vector Machine + (SVM) is the machine-learning tool of choice in the steganalysis community + due to its accuracy and a well-founded theory. However, in order to keep the + SVM training computationally feasible, feature spaces need to be designed + to be low-dimensional. Consequently, their construction often consists of + a series of clever tricks and heuristic dimensionality-reduction techniques. + Recent trends in steganalysis, however, have shown that more complex and higher-dimensional + image models could deliver substantially better performance. In this dissertation, + we propose a novel framework for steganalysis of digital images in which we + replace SVMs with the ensemble classifier, a scalable machine-learning alternative + offering comparable accuracy at a fraction of a computational cost. This allows + us to approach the feature-space building process in a more systematic and + exhaustive way. In particular, we propose to construct feature spaces as collections + of a large number of simpler submodels, each of them capturing different types + of dependencies among image coefficients. As a result, we obtain a high-dimensional + rich statistical\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2013-07-17\n + \ 2012\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.297.3234\n + \ http://dde.binghamton.edu/kodovsky/pdf/Kodovsky_PhD_Dissertation_2012.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.299.7769\n + \ 2015-10-05\n
\n \n + \ \n + \ The irace Package: Iterated Racing for Automatic Algorithm + Configuration\n Manuel L\xF3pez-ib\xE1\xF1ez\n + \ J\xE9r\xE9mie Dubois-lacoste\n Thomas + St\xFCtzle\n Mauro Birattari\n + \ automatic algorithm configuration\n racing\n + \ parameter tuning\n R\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-07-22\n + \ 2011\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.299.7769\n + \ http://iridia.ulb.ac.be/IridiaTrSeries/link/IridiaTr2011-004.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.299.8197\n + \ 2015-10-04\n
\n \n + \ \n + \ Novel Image Data-Hiding Methodologies for Robust and + Secure Steganography with Extensions to Image Forensics \n Anindya + Sarkar\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2013-07-22\n + \ 2010\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.299.8197\n + \ http://vision.ece.ucsb.edu/publications/Anindya-thesis.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.30.506\n + \ 2015-10-05\n
\n \n + \ \n + \ Chaos Out of Order: A Simple, Scalable File Distribution + Facility For `Intentionally Heterogeneous&apos; Networks\n + \ Alva L. Couch\n In + large networks, heterogeneity in hardware, operating systems, user needs, + and administrative responsibility often forms boundaries that inhibit sharing + of information, expertise, and responsibility. These boundaries can divide + networks into `feudal fiefdoms&apos; of administrators, each with a disjoint + domain of responsibility. DISTR is an easy-to-use file distribution tool + for homogeneous networks that also provides controlled file transfer between + \ disparate architectures and administrative domains. Using DISTR, administrators + of unrelated networks can collaborate to reduce duplication of effort while + retaining control of their own networks. DISTR&apos;s controls allow + collaboration, cooperation, and camaraderie to evolve, not from grand and + imposed designs, but from informal and serendipitous commonalities of mission + \ and purpose. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-22\n + \ 1997\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.30.506\n + \ http://www.usenix.org/publications/library/proceedings/lisa97/full_papers/19.couch/19.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.302.505\n + \ 2015-10-05\n
\n \n + \ \n + \ On the Railway Line Planning Models Considering the Various + Halting Patterns \n Bum Hwan Park \n + \ Chung-soo Kim \n Hag-lae + Rho\n railway\n line + planning\n halting pattern\n + \ NPhard\n We propose + railway line planning optimization models that determines the frequency of + each train so that it can meet passenger origindestination demands while minimizing + the related costs. Most line planning models assume that all trains on a supply + network stop at all intermediate stations. However to minimize passenger travelling + time and provide train service to as many stations as possible, we must consider + various halting patterns, that might be given in advance or be sought. Our + study considers two line planning problems considering halting patterns, describes + the computational complexities for each problem and present the optimization + models for both. We also present experimental results obtained for Korean + high speed railway network.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-07-23\n + \ 2010\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.302.505\n + \ http://www.iaeng.org/publication/IMECS2010/IMECS2010_pp2146-2151.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.304.8947\n + \ 2015-10-05\n
\n \n + \ \n + \ Euclidean Representation of 3D electronic institutions: + Automatic Generation\n Anton Bogdanovych\n + \ Sara Drago\n 3D Electronic + Institutions\n In this paper we present + the 3D Electronic Institutions metaphor and show how it can be used for the + specification of highly secure Virtual Worlds and how 3D Virtual Worlds can + be automatically generated from this specification. To achieve the generation + task we propose an algorithm for automatic transformation of the Performative + Structure graph into a 3D Virtual World, using the rectangular dualization + technique. The nodes of the initial graph are transformed into rooms, the + connecting arcs between nodes determine which rooms have to be placed next + to each other and define the positions of the doors connecting those rooms. + The proposed algorithm is sufficiently general to be used for transforming + any planar graph into a 3D Virtual World.\n The + Pennsylvania State University CiteSeerX Archives\n Press\n + \ 2015-10-05\n 2013-07-25\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.304.8947\n + \ http://www-staff.it.uts.edu.au/~anton/Publications/avi_2006.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.307.1300\n + \ 2015-10-04\n
\n \n + \ \n + \ An Open Framework for Rapid Prototyping of Signal Processing + Applications\n Maxime Pelcat\n + \ Jonathan Piat\n Matthieu + Wipliez\n Slaheddine Aridhi \n + \ Jean-Fran\xE7ois Nezan \n Embedded + real-time applications in communication systems have significant timing constraints, + thus requiring multiple computation units. Manually exploring the potential + parallelism of an application deployed on multicore architectures is greatly + time-consuming. This paper presents an open-source Eclipse-based framework + which aims to facilitate the exploration and development processes in this + context. The framework includes a generic graph editor (Graphiti), a graph + transformation library (SDF4J) and an automatic mapper/scheduler tool with + simulation and code generation capabilities (PREESM). The input of the framework + is composed of a scenario description and two graphs, one graph describes + an algorithm and the second graph describes an architecture. The rapid prototyping + results of a 3GPP Long-Term Evolution (LTE) algorithm on a multicore digital + signal processor illustrate both the features and the capabilities of this + framework. \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-04\n 2013-07-31\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.307.1300\n + \ http://jes.eurasipjournals.com/content/pdf/1687-3963-2009-598529.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.308.2067\n + \ 2015-10-05\n
\n \n + \ \n + \ MIPLIB 2010\n Thorsten + Koch\n Tobias Achterberg\n + \ Erling Andersen\n Oliver + Bastert\n Timo Berthold\n Robert + E. Bixby\n Emilie Danna\n Gerald + Gamrath\n Ambros M. Gleixner\n + \ Stefan Heinz\n Andrea + Lodi\n Hans Mittelmann\n Ted + Ralphs\n Domenico Salvagnin\n + \ Daniel E. Steffy\n Kati + Wolter\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-07-31\n + \ 2010\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.308.2067\n + \ http://coral.ie.lehigh.edu/~ted/files/papers/miplib5.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.310.6399\n + \ 2015-10-05\n
\n \n + \ \n + \ A Guide to the Discharging Method\n Daniel + W. Cranston, Douglas B. West\n We provide + a \u201Chow-to\u201D guide to the use and application of the Discharging Method. + Our aim is not to exhaustively survey results that have been proved by this + technique, but rather to demystify the technique and facilitate its wider + use. Along the way, we present some new proofs and new problems. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-08-02\n + \ 2013\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.310.6399\n + \ http://www.math.uiuc.edu/~west/pubs/discharg.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.318.7956\n + \ 2015-10-05\n
\n \n + \ \n + \ Shortest Path Based Column Generation on Large Networks + with Many Resource Constraints\n Faramroze + G. Engineer\n George L. Nemhauser\n + \ Martin W. P. Savelsbergh\n We + present a relaxation-based dynamic programming algorithm for solving resource + constrained shortest path problems arising in column generation pricing problems + for formulations involving extremely large networks and a huge number of local + resource constraints. Such formulations typically occur when time-expanded + networks are used to model a problem. The relaxation-based dynamic programming + algorithm alternates between a forward and a backward search. Each search + employs bounds derived in the previous search to prune the search space. Between + consecutive searches, the relaxation is tightened using a set of critical + resources and a set of critical arcs over which these resources are consumed. + As a result, a relatively small state space is maintained and many paths can + be pruned while guaranteeing that an optimal path is ultimately found. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-08-06\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.318.7956\n + \ http://www2.isye.gatech.edu/~mwps/publications/dayJet_ColGen(june08).pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.320.9954\n + \ 2015-10-05\n
\n \n + \ \n + \ An Auctioning Approach to Railway Slot Allocation\n + \ Ralf Bornd\xF6rfer\n Martin + Gr\xF6tschel\n Sascha Lukac\n + \ Kay Mitusch\n Thomas + Schlechte\n S\xF6ren Schultz\n + \ Andreas Tanner\n We + present an approach to implement an auction of railway slots. Railway network, + train driving characteristics, and safety requirements are described by a + simplified, but still complex macroscopic model. In this environment, slots + are modelled as combinations of scheduled track segments. The auction design + builds on the iterative combinatorial auction. However, combinatorial bids + are restricted to some types of slot bundles that realize positive synergies + between slots. We present a bidding language that allows bidding for these + slot bundles. An integer programming approach is proposed to solve the winner + determination problem of our auction. Computational results for auction simulations + in the Hannover-Fulda-Kassel area of the German railway network give evidence + that auction approaches can induce a more efficient use of railway capacity. + \ \n The Pennsylvania State University + CiteSeerX Archives\n \n 2015-10-05\n + \ 2013-08-08\n 2005\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.320.9954\n + \ http://www.zib.de/Publications/Reports/ZR-05-45.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.322.5007\n + \ 2015-10-05\n
\n \n + \ \n + \ Rectangular Layouts and Contact Graphs\n Adam + L. Buchsbaum\n Emden R. Gansner\n + \ Cecilia M. Procopiuc\n Suresh + Venkatasubramanian\n Categories and Subject + Descriptors\n F.2.2 [Nonnumerical Algorithms + and Problems\n Computations on discrete + structures\n G.2.2 [Graph Theory\n + \ Graph algorithms General Terms\n Algorithms\n + \ Theory Additional Key Words and Phrases\n + \ contact graphs\n rectangular + duals\n rectangular layouts\n + \ Contact graphs of isothetic rectangles unify many + concepts from applications including VLSI and architectural design, computational + geometry, and GIS. Minimizing the area of their corresponding rectangular + layouts is a key problem. We study the area-optimization problem and show + that it is NP-hard to find a minimum-area rectangular layout of a given contact + graph. We present O(n)-time algorithms that construct O(n2)-area rectangular + layouts for general contact graphs and O(n log n)-area rectangular layouts + for trees. (For trees, this is an O(log n)-approximation algorithm.) We also + present an infinite family of graphs (rsp., trees) that require \u2126(n2) + (rsp., \u2126(n log n)) area. We derive these results by presenting a new + characterization of graphs that admit rectangular layouts using the related + concept of rectangular duals. A corollary to our results relates the class + of graphs that admit rectangular layouts to rectangle of influence drawings.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-08-09\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.322.5007\n + \ http://adambuchsbaum.com/papers/rectlay.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.329.1376\n + \ 2015-10-05\n
\n \n + \ \n + \ Shortest Path Problems with Resource Constraints\n + \ Stefan Irnich\n Guy + Desaulniers\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-08-17\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.329.1376\n + \ http://www.or.rwth-aachen.de/publikationen/pdf/or_2004-01.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.330.7854\n + \ 2015-10-05\n
\n \n + \ \n + \ Multimodal Network Models for Robust Transportation Systems + \ \n Jennifer Duthie\n Erin + Ferguson\n Avinash Unnikrishnan\n + \ S. Travis Waller\n Since + transportation infrastructure projects have a lifetime of many decades, project + developers must consider not only the current demand for the project but also + the future demand. Future demand is of course uncertain and should be treated + as such during project design. Previous research for Southwest Region University + Transportation Center (Report 167556) explored the impact of uncertainty on + roadway improvements and found neglecting uncertainty to lead to suboptimal + network design decisions. This research is extended in the current work by + considering not only motor vehicle traffic, but other modes as well. The first + half of this report examines the problem of network flexibility in the face + of uncertainty when constructing a potentially revenue-generating toll road + project. Demand uncertainty and network design are considered by way of a + bilevel stochastic recourse model. The results from a test network, for which + a closed form solution is possible, indicate that the value of network flexibility + directly depends on initial network conditions, variance in future travel + demand, and toll pricing decisions. The second half of this report integrates + Environmental Justice into the transit frequency-setting problem while considering + uncertainty in travel demand from protected populations. The overarching purpose + is to improve access via transit to basic amenities to: 1) reduce the disproportionate + burden transit dependent populations\u2019 experience; and 2)\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-08-18\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.330.7854\n + \ http://d2dtl5nnlpfr0r.cloudfront.net/swutc.tamu.edu/publications/technicalreports/167867-1.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.330.9625\n + \ 2015-10-05\n
\n \n + \ \n + \ Particle Swarm Optimization Algorithm for Makespan and + Maximum Lateness Minimization in Permutation Flowshop Sequencing Problem\n + \ M. Fatih Tasgetiren \n Yun-chia + Liang \n Mehmet Sevkli \n + \ Gunes Gencyilmaz \n Scheduling\n + \ Particle swarm optimization\n Permutation + flowshop\n Makespan\n Maximum + lateness\n In this paper, a particle + swarm optimization algorithm (PSO) is presented to solve the permutaion flowshop + sequencing problem (PFSP) with the objectives of minimizing makespan and maximum + lateness of jobs, respectively. Simple but very efficient local search based + on variable neighborhood search (VNS) is embedded in the particle swarm optimization + algorithm to solve the well known benchmark suites in the literature. The + proposed PSO algorithm is applied to both 40 benchmark problems for makespan + criterion and 160 problem instances for maximum lateness\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-08-19\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.330.9625\n + \ http://www.fatih.edu.tr/~msevkli/IMS_PFSP_FTASGETIREN01.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.332.586\n + \ 2015-10-05\n
\n \n + \ \n + \ Shortest Paths in Digraphs of Small Treewidth \n + \ Shiva Chaudhuri\n Christos + D. Zaroliagis\n We consider the problem + of preprocessing an n-vertex digraph with real edge weights so that subsequent + queries for the shortest path or distance between any two vertices can be + efficiently answered. We give algorithms that depend on the treewidth of the + input graph. When the treewidth is a constant, our algorithms can answer distance + queries in O(\u03B1(n)) time after O(n) preprocessing. This improves upon + previously known results for the same problem. We also give a dynamic algorithm + which, after a change in an edge weight, updates the data structure in time + O(n \u03B2), for any constant 0 &lt; \u03B2 &lt; 1. The above two + algorithms are based on an algorithm of independent interest: computing a + shortest path tree, or finding a negative cycle in linear time. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-08-20\n + \ 1995\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.332.586\n + \ http://www.ceid.upatras.gr/faculty/zaro/pub/conf/C13-icalp95.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.333.3749\n + \ 2015-10-05\n
\n \n + \ \n + \ On the algebraic structure of convergence\n + \ Alva Couch\n Yizhan + Sun\n Current self-healing systems + are built from \u201Cconvergent\u201D actions that only make repairs when + necessary. Using an algebraic model of system administration, we challenge + the traditional notion of \u201Cconvergence\u201D and propose a stronger definition + with improved algebraic properties. Under the new definition, the structure + of traditional configuration management systems is a natural emergent property + of the algebraic model. We discuss the impact of the new definition, as well + as the changes required in current convergent tools in order to conform to + the new definition. \n The Pennsylvania + State University CiteSeerX Archives\n Springer\n + \ 2015-10-05\n 2013-08-22\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.333.3749\n + \ http://www.cs.tufts.edu/~couch/publications/dsom-03.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.337.2674\n + \ 2015-10-05\n
\n \n + \ \n + \ Frequency assignment in cellular phone networks\n + \ R. Bornd\xF6rfer\n A. + Eisenbl\xE4tter\n M. Gr\xF6tschel\n + \ A. Martin\n frequency + assignment\n cellular phone network\n + \ heuristics\n graph + coloring\n We present a graph-theoretic + model for the frequency assignment problem in cellular phone networks. Obeying + several technical and legal restrictions, frequencies have to be assigned + to transceivers so that interference is as small as possible. This optimization + problem is NP-hard. Good approximation cannot be guaranteed unless P = NP. + We describe several assignment heuristics. These heuristics are simple and + not too hard to implement. We give an assessment of the heuristics&apos; + efficiency and practical usefulness. For this purpose, typical instances of + frequency assignment problems with up to 4240 transceivers and 75 frequencies + of a German cellular phone network operator are used. The results are satisfying + from a practitioner&apos;s point of view. The best performing heuristics + were integrated into a network planning system used in practice.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-08-26\n + \ 1998\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.337.2674\n + \ http://www.zib.de/groetschel/pubnew/paper/borndoerfereisenblaettergroetscheletal1998.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.34.2133\n + \ 2015-10-05\n
\n \n + \ \n + \ Pattern Search Methods For Linearly Constrained Minimization\n + \ Robert Michael Lewis\n Virginia + Torczon\n We extend pattern search methods + to linearly constrained minimization. We develop a general class of feasible + point pattern search algorithms and prove global convergence to a Karush-Kuhn-Tucker + point. As in the case of unconstrained minimization, pattern search methods + for linearly constrained problems accomplish this without explicit recourse + to the gradient or the directional derivative of the objective. Key to the + analysis of the algorithms is the way in which the local search patterns conform + to the geometry of the boundary of the feasible region. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2007-11-22\n + \ 1999\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.34.2133\n + \ http://www.icase.edu/~buckaroo/papers/siam/siopt/linearly_constrained_pattern_search/paper.ps\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.34.3029\n + \ 2015-10-05\n
\n \n + \ \n + \ A Globally Convergent Augmented Lagrangian Pattern Search + Algorithm For Optimization With General Constraints And Simple Bounds\n + \ Robert Michael Lewis\n Virginia + Torczon\n Key words. augmented Lagrangian\n + \ constrained optimization\n direct + search\n nonlinear programming\n + \ pattern search\n + We give a pattern search adaptation of an augmented Lagrangian method due + to Conn, Gould, and Toint. The algorithm proceeds by successive bound constrained + minimization of an augmented Lagrangian. In the pattern search adaptation + we solve this subproblem approximately using a bound constrained pattern search + method. The stopping criterion proposed by Conn, Gould, and Toint for the + solution of this subproblem requires explicit knowledge of derivatives. Such + information is presumed absent in pattern search methods; however, we show + how we can replace this with a stopping criterion based on the pattern size + in a way that preserves the convergence properties of the original algorithm. + In this way we proceed by successive, inexact, bound constrained minimization + without knowing exactly how inexact the minimization is. So far as we know, + this is the first provably convergent direct search method for general nonlinear + programming. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-22\n + \ 2000\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.34.3029\n + \ http://www.icase.edu/~buckaroo/papers/siam/siopt/lance-little/paper.ps\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.34.6338\n + \ 2015-10-05\n
\n \n + \ \n + \ All-Pairs Min-Cut in Sparse Networks\n Srinivasa + R. Arikati\n Shiva Chaudhuri\n + \ Christos D. Zaroliagis\n Algorithms + are presented for the all-pairs min-cut problem in bounded tree-width, planar + and sparse networks. The approach used is to preprocess the input n-vertex + network so that, afterwards, the value of a min-cut between any two vertices + can be efficiently computed. A tradeoff is shown between the preprocessing + time and the time taken to compute mincuts subsequently. In particular, after + an O(n log n) preprocessing of a bounded tree-width network, it is possible + to find the value of a min-cut between any two vertices in constant time. + This implies that for such networks the all-pairs min-cut problem can be solved + in time O(n\xB2). This algorithm is used in conjunction with a graph decomposition + technique of Frederickson to obtain algorithms for sparse and planar networks. + The running times depend upon a topological property, fl, of the input network. + The parameter fl varies between 1 and \\Theta(n); the algorithms perform well + when fl = o(n). The value of a min-cut can be found in time...\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2007-11-22\n + \ 1996\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.34.6338\n + \ ftp://ftp.mpi-sb.mpg.de/pub/papers/reports/MPI-I-96-1-007.ps.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.353.37\n + \ 2015-10-04\n
\n \n + \ \n + \ Merging Markov and DCT Features for Multi-Class JPEG Steganalysis\n + \ Tom\xE1\u0161 Pevn\xFD , Jessica Fridrich \n + \ Blind steganalysis based on classifying feature + vectors derived from images is becoming increasingly more powerful. For steganalysis + of JPEG images, features derived directly in the embedding domain from DCT + coefficients appear to achieve the best performance (e.g., the DCT features10 + and Markov features21). The goal of this paper is to construct a new multi-class + JPEG steganalyzer with markedly improved performance. We do so first by extending + the 23 DCT feature set, 10 then applying calibration to the Markov features + described in 21 and reducing their dimension. The resulting feature sets are + merged, producing a 274-dimensional feature vector. The new feature set is + then used to construct a Support Vector Machine multi-classifier capable of + assigning stego images to\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2013-09-23\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.353.37\n + \ http://dde.binghamton.edu/tomas/pdfs/Pev07-SPIE.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.36.4951\n + \ 2015-10-05\n
\n \n + \ \n + \ Applying Iterated Local Search to the Permutation Flow + Shop Problem\n Thomas St\xFCtzle\n + \ Iterated local search (ILS) is a general and powerful + metaheuristic that can significantly improve the performance of local search + algorithms. We give a short overview of ILS approaches and widen the range + of successful ILS applications to the permutation flow shop problem (FSP). + We discuss the effect of specific choices for our ILS algorithm and give an + \ experimental analysis of its performance. Even with our use of a very simple + local search, ILS compares very to other metaheuristic approaches proposed + for the FSP, and in particular we find new best solutions among Taillard&apos;s + benchmark problems. Additionally, we show that the so called acceptance criterion + has a considerable influence on ILS performance and therefore should receive + more attention in future ILS applications. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-22\n + \ 1998\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.36.4951\n + \ http://aida.intellektik.informatik.tu-darmstadt.de/~kipr/Pubs/tom/AIDA-98-04.ps.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.362.3676\n + \ 2015-10-05\n
\n \n + \ \n + \ Separable permutations, Robinson-Schensted and shortest + containing supersequences \n Greta Panova\n + \ The Robinson-Schensted correspondence associates + to any permutation (or word) \u03C3 a pair of Young tableaux, each of equal + partition shape \u03BB =(\u03BB1,..., \u03BB k). We say that \u03C3 has shape + sh(\u03C3) =\u03BB. Many properties of \u03C3 translate to natural properties + of the tableaux and vice versa; the study of one object is made easier through + the study of the other. For example, the length of the longest increasing + subsequence of \u03C3 equals \u03BB1. In fact, Greene\u2019s Theorem [?] gives + a much more precise correspondence: The sum \u03BB 1 + \xB7\xB7\xB7+ \u03BB + k equals the maximum number of elements in a disjoint union of k increasing + subsequences of \u03C3. However, it is not generally true that one can find + k disjoint increasing subsequences u 1, u 2,..., u k with u i of length \u03BB + i for each i. (An example is afforded by \u03C3 = 236145 whose shape is (4, + 2).) Our main result is a sufficient condition for such a collection of subsequences + {u i} to exist: Theorem 1. Let \u03C3 be a separable permutation (i.e., 2413 + and 3142-avoiding) with sh(\u03C3) =\u03BB = (\u03BB1,..., \u03BB k). Then + there exist k disjoint, increasing subsequences u 1,..., u k, with u i of + maximum length in \u03C3 \\ (u 1 \u222A \xB7 \xB7 \xB7 \u222A u i\u22121), + such that the length of each u i is given by \u03BB i. The proof is based + on the inversion poset of \u03C3 and the fact that when \u03C3 is separable + its\n The Pennsylvania State University + CiteSeerX Archives\n \n 2015-10-05\n + \ 2013-10-04\n 2010\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.362.3676\n + \ http://www.math.dartmouth.edu/~pp2010/abstracts/Panova.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.362.6587\n + \ 2015-10-04\n
\n \n + \ \n + \ Modern Steganalysis Can Detect YASS \n Jan + Kodovsk\xFD \n Tom\xE1\u0161 Pevn\xFD \n + \ Jessica Fridrich \n YASS + is a steganographic algorithm for digital images that hides messages robustly + in a key-dependent transform domain so that the stego image can be subsequently + compressed and distributed as JPEG. Given the fact that state-of-the-art blind + steganalysis methods of 2007, when YASS was proposed, were unable to reliably + detect YASS, in this paper we steganalyze YASS using several recently proposed + general-purpose steganalysis feature sets. The focus is on blind attacks that + do not capitalize on any weakness of a specific implementation of the embedding + algorithm. We demonstrate experimentally that twelve different settings of + YASS can be reliably detected even for small embedding rates and in small + images. Since none of the steganalysis feature sets is in any way targeted + to the embedding of YASS, future modifications of YASS will likely be detectable + by them as well. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2013-10-04\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.362.6587\n + \ http://www.ws.binghamton.edu/fridrich/Research/yass_attack.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.362.7334\n + \ 2015-10-04\n
\n \n + \ \n + \ Steganalysis by Subtractive Pixel Adjacency Matrix\n + \ Tom\xE1\u0161 Pevn\xFD \n Patrick + Bas\n Jessica Fridrich\n Abstract\xE2€”This + paper presents a method for detection of steganographic methods that embed + in the spatial domain by adding a low-amplitude independent stego signal, + an example of which is LSB matching. First, arguments are provided for modeling + the differences between adjacent pixels using first-order and second-order + Markov chains. Subsets of sample transition probability matrices are then + used as features for a steganalyzer implemented by support vector machines. + The major part of experiments, performed on four diverse image databases, + focuses on evaluation of detection of LSB matching. The comparison to prior + art reveals that the presented feature set offers superior accuracy in detecting + LSB matching. Even though the feature set was developed specifically for spatial + domain steganalysis, by constructing steganalyzers for ten algorithms for + JPEG images it is demonstrated that the features detect steganography in the + transform domain as well. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2013-10-04\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.362.7334\n + \ http://www.ws.binghamton.edu/fridrich/Research/paper_6_dc.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.364.111\n + \ 2015-10-05\n
\n \n + \ \n + \ I/O-efficient planar range skyline and . . . \n + \ Casper Kejlberg-Rasmussen\n Yufei + Tao\n Konstantinos Tsakalidis\n + \ Kostas Tsichlas\n Jeonghun + Yoon\n We study the static and dynamic + planar range skyline reporting problem in the external memory model with block + size B, under a linear space budget. The problem asks for an O(n/B) space + data structure that stores n points in the plane, and supports reporting the + k maximal input points (a.k.a. skyline) among the points that lie within a + given query rectangle Q = [\u03B11, \u03B12] \xD7 [\u03B21, \u03B22]. When + Q is 3-sided, i.e. one of its edges is grounded, two variants arise: topopen + for \u03B22 = \u221E and left-open for \u03B11 = \u2212 \u221E (symmetrically + bottom-open and right-open) queries. We present optimal static data structures + for top-open queries, for the cases where the universe is R 2, a U \xD7 U + grid, and rank space [O(n)] 2. We also show that left-open queries are harder, + as they require \u2126((n/B) \u025B + k/B) I/Os for \u025B&gt; 0, when + only linear space is allowed. We show that the lower bound is tight, by a + structure that supports 4-sided queries in matching complexities. Interestingly, + these lower and upper bounds coincide with those of the planar orthogonal + range reporting problem, i.e., the skyline requirement does not alter the + problem difficulty at all! Finally, we present the first dynamic linear space + data structure that supports top-open queries in O(log 2B \u025B n + k/B 1\u2212\u025B) + and updates in O(log 2B \u025B n) worst case I/Os, for \u025B \u2208 [0, 1]. + This also yields a linear space data structure for 4-sided queries with optimal + query I/Os and O(log(n/B)) amortized update I/Os. We consider of independent + interest the main component of our dynamic structures, a new realtime I/O-efficient + and catenable variant of the fundamental structure priority queue with attrition + by Sundar. The full version is found on\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-10-09\n + \ 2013\n text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.364.111\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.367.3211\n + \ 2015-10-05\n
\n \n + \ \n + \ Consumer Surplus in the Digital Economy: Estimating the + Value of Increased Product Variety at Online Booksellers\n + Erik Brynjolfsson , Yu (Jeffrey) Hu \n + Michael D. Smith\n We present a framework + and empirical estimates that quantify the economic impact of increased product + variety made available through electronic markets. While efficiency gains + from increased competition significantly enhance consumer surplus, for instance, + by leading to lower average selling prices, our present research shows that + increased product variety made available through electronic markets can be + a significantly larger source of consumer surplus gains. One reason for increased + product variety on the Internet is the ability of online retailers to catalog, + recommend, and provide a large number of products for sale. For example, the + number of book titles available at Amazon.com is more than 23 times larger + than the number of books on the shelves of a typical Barnes &amp; Noble + superstore, and 57 times greater than the number of books stocked in a typical + large independent bookstore. Our analysis indicates that the increased product + variety of online bookstores enhanced consumer welfare by $731 million to + $1.03 billion in the year 2000, which is between 7 and 10 times as large as + the consumer welfare gain from increased competition and lower prices in this + market. There may also be large welfare gains in other SKU-intensive consumer + goods such as music, movies, consumer electronics, and computer software and + hardware.\n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-10-15\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.367.3211\n + \ http://ebusiness.mit.edu/erik/ConsumerSurplus.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.367.9416\n + \ 2015-10-05\n
\n \n + \ \n + \ The Golden Partition Conjecture posed by Marcin Peczarski\n + \ Andr\xE9 K\xE9zdy\n Let + P (\u2264, S) be a partial order on the set S. An extension of \u2264 is a + partial order \u2264 \u2217 on S such that u \u2264 v implies u \u2264 \u2217 + v, for all u, v \u2208 S. A linear extension of P is an extension of \u2264 + that forms a linear order (a.k.a a total order). The number of linear extensions + of P is denoted e(P). Conjecture (The Golden Partition Conjecture). For any + finite poset P that is not a chain, there exist two consecutive comparisons + such that regardless of their results the inequality e(P) \u2265 e(P1) + + e(P2) holds, where P1 and P2 are the posets obtained from P after the first + comparison and after both comparisons, respectively. The Golden Partition + Conjecture is motivated by conjectures whose root is a famous sorting problem. + Imagine that a finite set S with cardinality n has a hidden total order \u227A + that we would like to uncover by making comparisons between pairs of elements + from S. Comparing a pair u, v \u2208 S means uncovering either u \u227A v + or v \u227A u. How many comparisons are needed in the worst case? The classical + answer is \u0398(n log2(n)) comparisons are needed and \u2018merge sort\u2019, + for example, gives an algorithm to achieve this bound. How many comparisons + are needed if some partial information about \u227A is already known? Partial + information about \u227A can be summarized by a poset P (\u2264, S). Let C(P) + denote the number of comparisons required to find the hidden linear extension + \u227A, in the worst case, starting from partial information P?\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-10-21\n + \ 2010\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.367.9416\n + \ http://www.math.uiuc.edu/~west/regs/UL2010.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.370.3221\n + \ 2015-10-04\n
\n \n + \ \n + \ Two key estimation techniques for the broken-arrows watermarking + scheme\n Patrick Bas\n Andreas + Westfeld \n Security\n Algorithms + Keywords Zero-bit watermarking algorithm\n Security\n + \ Attack\n Subspace + Estimation\n This paper presents two + different key estimation attacks targeted for the image watermarking system + proposed for the BOWS-2 contest. Ten thousands images are used in order to + estimate the secret key and remove the watermark while minimizing the distortion. + Two different techniques are proposed. The first one combines a regression-based + denoising process to filter out the component of the original images and a + clustering algorithm to compute the different components of the key. The second + attack is based on an inline subspace estimation algorithm, which estimates + the subspace associated with the secret key without computing eigen decomposition. + The key components are then estimated using Independent Component Analysis + and a strategy designed to leave efficiently the detection region is presented. + On six test images, the two attacks are able to remove the mark with very + small distortions (between 41.8 dB and 49 dB).\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2013-10-25\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.370.3221\n + \ http://hal.archives-ouvertes.fr/docs/00/38/40/58/PDF/mmsec09.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.371.1217\n + \ 2015-10-05\n
\n \n + \ \n + \ Optimizing Limousine Service with AI\n Andy + Hon Wai Chun\n A common problem for + companies with strong business growth is that it is hard to find enough experienced + staff to support expansion needs. This problem is particularly pronounced + for operations planners and controllers, who must be very highly knowledgeable + and experienced with the business domain. This article is a case study of + how one of the largest travel agencies in Hong Kong alleviated this problem + by using AI to support decision making and problem solving so that its planners + and controllers can work more effectively and efficiently to sustain business + growth while maintaining consistent quality of service. AI is used in a mission-critical + fleet management system\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-10-28\n + \ 2011\n text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.371.1217\n + \ http://www.aaai.org/ojs/index.php/aimagazine/article/viewFile/2346/2214/\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.372.7040\n + \ 2015-10-04\n
\n \n + \ \n + \ A strengthening of Brooks\u2019 Theorem for line graphs\n + \ Landon Rabern\n We + prove that if G is the line { graph of a multigraph, } then the chromatic + number \u03C7(G) of G is at most max where \u03C9(G) and \u2206(G) are the + clique \u03C9(G), 7\u2206(G)+10 8 number and the maximum degree of G, respectively. + Thus Brooks \u2019 Theorem holds for line graphs of multigraphs in much stronger + form. Using similar methods we then prove that if G is the line graph of a + multigraph with \u03C7(G) \u2265 \u2206(G) \u2265 9, then G contains a clique + on \u2206(G) vertices. Thus the Borodin-Kostochka Conjecture holds for line + graphs of multigraphs. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2013-10-30\n + \ 2011\n text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.372.7040\n + \ http://www.combinatorics.org/ojs/index.php/eljc/article/viewFile/v18i1p145/pdf/\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.373.126\n + \ 2015-10-04\n
\n \n + \ \n + \ Rotation Based Acceleration of Informed Embedding in DPTC + Watermarking Scheme\n Marc Chaumont\n + \ psychovisual watermarking\n low\n + \ The Dirty Paper Trellis Code (DPTC) watermarking + scheme [1] is a very efficient high rate scheme. It has however a major drawback: + its computational complexity. This problem is addressed by using a faster + embedding technique. The embedding space is built by projecting some wavelet + coefficients onto secret carriers. The fast embedding is achieved with a dichotomous + rotation in the Cox, Miller, and Bloom plane. Besides, a modern watermarking + scheme should manage the psychovisual impact due to the watermarking signal. + This is addressed by using a psychovisual mask. Our low complexity watermarking + scheme is compared to two other psychovisual low complexity approaches and + results show a good behavior in terms of robustness. The obtained results + give a very clear vision, in realistic conditions of use, of the current state-of-the-art + for high-rate watermarking schemes of low complexity. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2013-10-30\n + \ 2012\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.373.126\n + \ http://hal.inria.fr/docs/00/80/70/70/PDF/IJIPVCV2012_CHAUMONT_RB-DPTC.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.375.654\n + \ 2015-10-05\n
\n \n + \ \n + \ Best Upgrade Plans for Large Road Networks\n + \ Yimin Lin\n Kyriakos + Mouratidis\n In this paper, we consider + a new problem in the context of road network databases, named Resource Constrained + Best Upgrade Plan computation (BUP, for short). Consider a transportation + network (weighted graph) G where a subset of the edges are upgradable, i.e., + for each such edge there is a cost, which if spent, the weight of the edge + can be reduced to a specific new value. Given a source and a destination in + G, and a budget (resource constraint) B, the BUP problem is to identify which + upgradable edges should be upgraded so that the shortest path distance between + source and destination (in the updated network) is minimized, without exceeding + the available budget for the upgrade. In addition to transportation networks, + the BUP query arises in other domains too, such as telecommunications. We + propose a framework for BUP processing and evaluate it with experiments on + large, real road networks. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-11-06\n + \ 2013\n text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.375.654\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.376.2774\n + \ 2015-10-05\n
\n \n + \ \n + \ Buyer Power and Supplier Incentives\n Roman + Inderst\n Christian Wey\n Buyer + Power\n Investments\n Competition + Policy\n This paper investigates how + the formation of larger buyers affects a supplier&apos;s profits and, + by doing so, his incentives to undertake non-contractible activities. We first + identify two chan-nels of buyer power, which allows larger buyers to obtain + discounts. We subsequently exam-ine the effects of buyer power on the supplier&apos;s + incentives and on social welfare. Contrary to some informal claims in the + policy debate on buyer power, we find that the exercise of buyer power-even + though reducing supplier&apos;s profits- may often increase a supplier&apos;s + incentive to undertake welfare enhancing activities.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-11-12\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.376.2774\n + \ http://bibliothek.wz-berlin.de/pdf/2003/ii03-05.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.377.1003\n + \ 2015-10-05\n
\n \n + \ \n + \ Convex Optimization &amp; Euclidean Distance Geometry\n + \ Jon Dattorro\n of + gratitude\n \n The + Pennsylvania State University CiteSeerX Archives\n Meboo + Publishing\n 2015-10-05\n 2013-11-26\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.377.1003\n + \ http://www.convexoptimization.com/TOOLS/0976401304_v2006.07.07.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.377.4480\n + \ 2015-10-05\n
\n \n + \ \n + \ Convex Optimization &amp; Euclidean Distance Geometry + \n Jon Dattorro\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-11-27\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.377.4480\n + \ http://www.convexoptimization.com/TOOLS/0976401304_v2007.05.05.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.377.766\n + \ 2015-10-05\n
\n \n + \ \n + \ Convex Optimization &amp; Euclidean Distance Geometry\n + \ Jon Dattorro\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ Meboo Publishing\n 2015-10-05\n + \ 2013-11-26\n 2005\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.377.766\n + \ http://www.convexoptimization.com/TOOLS/0976401304_v2006.02.23.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.377.7949\n + \ 2015-10-05\n
\n \n + \ \n + \ Acyclic Edge Colorings of Planar Graphs Without Short + Cycles \n Xiang-yong Sun\n Jian-liang + Wu\n acyclic edge coloring\n + \ A proper edge coloring of a graph G is called + acyclic if there is no 2-colored cycle in G. The acyclic edge chromatic number + of G is the least number of colors in an acyclic edge coloring of G. In this + paper, it is proved that the acyclic edge chromatic number of a planar graph + G is at most \u2206(G) + 2 if G contains no i-cycles, 4 \u2264 i \u2264 8, + or any two 3-cycles are not incident with a common vertex and G contains no + i-cycles, i = 4 and 5. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-11-27\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.377.7949\n + \ http://www.aporc.org/LNOR/8/ISORA2008F39.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.38.6974\n + \ 2015-10-05\n
\n \n + \ \n + \ Graph Partitioning -- A Survey\n Ulrich + Elsner\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-22\n + \ 1997\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.38.6974\n + \ http://www.mathematik.tu-chemnitz.de/preprint/quellen/1997/SFB393_27.ps.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.385.6596\n + \ 2015-10-05\n
\n \n + \ \n + \ Consumer Surplus in the Digital Economy: Estimating the + Value of Increased Product Variety at Online Booksellers\n + Erik Brynjolfsson , Yu (Jeffrey) Hu , Michael D. Smith \n We + present a framework and empirical estimates that quantify the economic impact + of increased product variety made available through electronic markets. While + efficiency gains from increased competition significantly enhance consumer + surplus, for instance, by leading to lower average selling prices, our present + research shows that increased product variety made available through electronic + markets can be a significantly larger source of consumer surplus gains. One + reason for increased product variety on the Internet is the ability of online + retailers to catalog, recommend, and provide a large number of products for + sale. For example, the number of book titles available at Amazon.com is more + than 23 times larger than the number of books on the shelves of a typical + Barnes &amp; Noble superstore, and 57 times greater than the number of + books stocked in a typical large independent bookstore. Our analysis indicates + that the increased product variety of online bookstores enhanced consumer + welfare by $731 million to $1.03 billion in the year 2000, which is between + 7 and 10 times as large as the consumer welfare gain from increased competition + and lower prices in this market. There may also be large welfare gains in + other SKU-intensive consumer goods such as music, movies, consumer electronics, + and computer software and hardware.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-12-10\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.385.6596\n + \ http://oz.stern.nyu.edu/cite05/readings/brynjolfsson4.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.385.8530\n + \ 2015-10-05\n
\n \n + \ \n + \ Optimizing and Visualizing Planar Graphs via Rectangular + Dualization\n Gianluca Quercini\n + \ Graphs are among the most studied and used mathematical + tools for representing data and their relationships. The increasing number + of applications exploiting their descriptive power makes graph visualization + a key issue in modern graph theory and computer science. This is witnessed + by the widespread interest Graph Drawing has been able to excite in the research + community over the past decade. Ever more often software offers a valuable + support to key fields of science (such as chemistry, biology, physics and + mathematics) in elaborating and interpreting huge quantities of data. Usually, + however, a drawing explains the nature of a phenomenon better than hundreds + of tables and sterile figures; that is why visualization is so important in + modern Computer Science. Graph Drawing is an important part of Information + Visualization addressing specific visualization problems on graphs. Most of + the research work in Graph Drawing aims at creating representations complying + with aesthetic criteria, relying on the principle that a drawing nice and + pleasant to see is also effective. Difficulties arise when the size of graphs + blows up; in this case appropriate optimization techniques must be used before + visualization. One widely used optimization\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-12-10\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.385.8530\n + \ http://www.disi.unige.it/dottorato/THESES/2009-03-QuerciniG.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.390.2549\n + \ 2015-10-05\n
\n \n + \ \n + \ PLANAR HARMONIC UNIVALENT AND RELATED MAPPINGS\n + \ Om P. Ahuja\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-12-14\n + \ 2000\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.390.2549\n + \ http://www.mat.ub.edu/EMIS/journals/JIPAM/images/140_05_JIPAM/140_05_www.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.392.1354\n + \ 2015-10-05\n
\n \n + \ \n + \ A SUBCLASS OF SALAGEAN-TYPE HARMONIC UNIVALENT FUNCTIONS + WITH MISSING COEFFICIENTS\n M. K. Aouf\n + \ In this paper, we define and investigate a subclass + of Salageantype harmonic univalent functions with missing coefficients. We + obtain coefficient conditions, extreme points, distortion bounds, convex combination + and radius of convexity for the above class of harmonic univalent functions.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-12-16\n + \ 2013\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.392.1354\n + \ http://emis.maths.adelaide.edu.au/journals/AUA/acta33/Paper1-Acta33-13.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.392.1488\n + \ 2015-10-05\n
\n \n + \ \n + \ Market Structure, Bargaining, and Technology Choice\n + \ Roman Inderst\n Christian + Wey\n Merger\n Bargaining + Power\n Technology Choice We are grateful + to Paul Heidhues and Lars-Hendrik R\xF6ller for their comments and su\n + \ The first part of this paper analyzes the impact + of horizontal mergers of suppliers or retailers on their respective bargaining + power. In contrast to previous approaches, we suppose that parties resolve + the bargaining problem efficiently. Moreover, by ensuring that demand is independent + at all retailers we exclude monopolization effects. We find that downstream + mergers are more likely (less likely) if suppliers have increasing (decreasing) + unit costs, while upstream mergers are more likely (less likely) if goods + are substitutes (complements). In both cases a merger enables the involved + parties to gain access to inframarginal rents. In the second part of the paper + we explore how the role of bargaining power affects technology choice under + different market structures. We isolate two effects. First, if retailers are + non-integrated, suppliers focus disproportionately more on inframarginal cost + reduction. Second, this bias is mitigated if goods are substitutes and suppliers + are\n The Pennsylvania State University + CiteSeerX Archives\n \n 2015-10-05\n + \ 2013-12-16\n 2000\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.392.1488\n + \ http://skylla.wzb.eu/pdf/2000/iv00-12.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.392.238\n + \ 2015-10-05\n
\n \n + \ \n + \ CERTAIN SUBCLASSES OF HARMONIC UNIVALENT FUNCTIONS ASSOCIATED + WITH GENERALIZED SALAGEAN OPERATOR\n Elif + Yasar\n Sibel Yalcin\n + In this paper, we investigate necessary and sufficient coefficient conditions, + distortion bounds, extreme points and convex combination of a new subclass + of harmonic univalent functions defined by a generalization of modified Salagean + operator.\n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-12-16\n + \ 2012\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.392.238\n + \ http://emis.maths.adelaide.edu.au/journals/AUA/acta29/Paper13-Acta29-2012.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.392.3009\n + \ 2015-10-05\n
\n \n + \ \n + \ S\u01CDL\u01CDGEAN-TYPE HARMONIC MULTIVALENT FUNCTIONS\n + \ Jay M. Jahangiri\n Sevtap + S\xFCmer Eker, et al.\n Harmonic Multivalent + Functions\n S\u01CEl\u01CEgean Derivative\n + \ extreme points\n distortion\n + \ We define and investigate a new class of S\u01CEl\u01CEgean-type + harmonic multivalent functions. we obtain coefficient inequalities, extreme + points and distortion bounds for the functions in this class.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-12-16\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.392.3009\n + \ http://emis.maths.adelaide.edu.au/journals/AUA/acta18/paper + 22-18-2009.pdf\n en\n Metadata + may be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.392.5764\n + \ 2015-10-05\n
\n \n + \ \n + \ The Incentives for Takeover in Oligopoly \n + \ Roman Inderst\n Christian + Wey\n Merger\n Takeover + Bidding\n Oligopoly\n This + paper presents a model of takeover incentives in an oligopolistic industry, + which, in contrast to previous approaches, takes both insiders&apos; and + outsiders&apos; gains from an increase in industry concentration into + account. Our main application is to compare takeover incentives in a differentiated + Cournot and Bertrand oligopoly model with linear demand and costs. We provide + a complete analysis for arbitrary numbers of firms, complements and substitutes, + and degrees of product differentiation. An increase in concentration is more + likely under Cournot competition if products are complements and more likely + under Bertrand competition if products are substitutes. Moreover, as products + become closer substitutes, a takeover becomes more likely under Bertrand and + less likely under Cournot competition.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-12-16\n + \ 2001\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.392.5764\n + \ http://skylla.wzb.eu/pdf/2001/iv01-24.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.392.656\n + \ 2015-10-05\n
\n \n + \ \n + \ A NEW CLASS OF HARMONIC MULTIVALENT FUNCTIONS DEFINED + BY AN INTEGRAL OPERATOR\n Luminita-Ioana Cotirla\n + \ Harmonic univalent functions\n integral + operator\n distortion\n + \ We define and investigate a new class of harmonic multivalent functions + defined by S\u0103l\u0103gean integral operator. We obtain coefficient inequalities + and distortion bounds for the functions in this class.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-12-16\n + \ 2010\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.392.656\n + \ http://emis.maths.adelaide.edu.au/journals/AUA/acta21/06-21.2010.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.393.516\n + \ 2015-10-05\n
\n \n + \ \n + \ Infrastructure Topology Optimization under Competition + through Cross-Entropy \n H\xE9l\xE8ne Le Cadre\n + \ Non-cooperative game\n Implicit + function\n Cross-entropy method\n + \ In this article, we study a two-level non-cooperative + game between providers acting on the same geographic area. Each provider has + the opportunity to set up a network of stations so as to capture as many consumers + as possible. Its deployment being costly, the provider has to optimize both + the number of settled stations as well as their locations. In the first level + each provider optimizes independently his infrastructure topology while in + the second level they price dynamically the access to their network of stations. + The consumers \u2019 choices depend on the perception (in terms of price, + congestion and distances to the nearest stations) that they have of the service + proposed by each provider. Each provider market share is then obtained as + the solution of a fixed point equation since the congestion level is supposed + to depend on the market share of the provider which increases with the number + of consumers choosing the same provider. We prove that the two-stage game + admits a unique equilibrium in price at any time instant. An algorithm based + on the crossentropy method is proposed to optimize the providers \u2019 infrastructure + topology and it is tested on numerical examples providing economic interpretations.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-12-17\n + \ 2012\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.393.516\n + \ http://hal.inria.fr/docs/00/74/09/10/PDF/coverage_game_or_v2.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.395.5054\n + \ 2015-10-05\n
\n \n + \ \n + \ Mixed Integer Nonlinear Programming (MINLP)\n + \ Sven Leyffer\n Jeff + Linderoth\n MINLP Tutorial Overview\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2013-12-23\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.395.5054\n + \ http://coral.ie.lehigh.edu/wp-content/uploads/presentations/informs-05-minlp-handout.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.396.8251\n + \ 2015-10-04\n
\n \n + \ \n + \ Modified BCH data hiding scheme for JPEG steganography\n + \ Vasily Sachnev\n Hyoung + Joong Kim\n BCH\n steganography\n + \ less detectable data hiding\n + \ In this article, a new Bose-Chaudhuri-Hochquenghem (BCH)-based data hiding + scheme for JPEG steganography is presented. Traditional data hiding approaches + hide data into each block, where all the blocks are not overlapping each other. + However, in the proposed method, two consecutive blocks can be overlapped + to form a combined block which is larger than a single block, but smaller + than two consecutive nonoverlapping blocks in size. In order to embed more + amounts of data into the combined block than a single block, the BCH-based + data hiding scheme has to be redesigned. In this article, we propose a way + to get a joint solution for hiding data into two blocks with intersected coefficients + such that any modification of the intersected area does not affect the data + hiding process into both blocks. Due to hiding more amounts of data into the + intersected area, embedding capacity is increased. On the other hand, the + nonzero DCT coefficient stream is modified to achieve better steganalysis + and to reduce the distortion impact after data hiding. This approach carefully + inserts or removes 1 or-1 coefficients into or from the DCT coefficient stream + according to the rule proposed in this article. Experimental results show + that the proposed algorithms work well and their performance is significant.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2013-12-28\n + \ 2012\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.396.8251\n + \ http://asp.eurasipjournals.com/content/pdf/1687-6180-2012-89.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.397.6090\n + \ 2015-10-05\n
\n \n + \ \n + \ Railway Track Allocation by Rapid Branching \n + \ Ralf Bornd\xF6rfer\n Thomas + Schlechte\n Steffen Weider\n + \ proximal\n The + track allocation problem, also known as train routing problem or train timetabling + problem, is to find a conflict-free set of train routes of maximum value in + a railway network. Although it can be modeled as a standard path packing problem, + instances of sizes relevant for real-world railway applications could not + be solved up to now. We propose a rapid branching column generation approach + that integrates the solution of the LP relaxation of a path coupling formulation + of the problem with a special rounding heuristic. The approach is based on + and exploits special properties of the bundle method for the approximate solution + of convex piecewise linear functions. Computational results for difficult + instances of the benchmark library TTPlib are reported.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2013-12-30\n + \ 2010\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.397.6090\n + \ http://drops.dagstuhl.de/opus/volltexte/2010/2746/pdf/2.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.407.9986\n + \ 2015-10-04\n
\n \n + \ \n + \ Decomposing toroidal graphs into . . . \n Baogang + Xu \n Lusheng Wang \n Decomposition\n + \ Circuit\n Torus\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-04\n 2014-01-22\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.407.9986\n + \ http://www.cs.cityu.edu.hk/~lwang/research/dam05.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.408.365\n + \ 2015-10-05\n
\n \n + \ \n + \ Removable edges in a cycle of a 4-connected graph \n + \ Jichang Wu \n Xueliang + Li \n Lusheng Wang \n 4-Connected + graph\n Removable edge\n Edge-vertex-cut + fragment\n Edge-vertex-cut atom\n + \ Let G be a 4-connected graph. For an edge e of G, + we do the following operations on G: first, delete the edge e from G, resulting + in the graph G \u2212 e; second, for all the vertices x of degree 3 in G \u2212 + e, delete x from G \u2212 e and then completely connect the 3 neighbors of + x by a triangle. If multiple edges occur, we use single edges to replace them. + The final resultant graph is denoted by G\uFFFDe.IfG\uFFFDe is still 4-connected, + then e is called a removable edge of G. In this paper, we investigate the + problem on how many removable edges there are in a cycle of a 4-connected + graph, and give examples to show that our results are in some sense the best + possible.\n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-01-22\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.408.365\n + \ http://www.cs.cityu.edu.hk/~lwang/research/dm04.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.41.1266\n + \ 2015-10-05\n
\n \n + \ \n + \ An Ant Approach to the Flow Shop Problem\n + \ Thomas St\xFCtzle\n In + this article we present an ant based approach to Flow Shop Scheduling problems. + Ant Colony Optimization is a new algorithmic approach, inspired by the behavior + of real ants, that can be used for the solution of combinatorial optimization + problems. (Artificial) ants are used to construct solutions for Flow Shop + Problems that subsequently are improved by a local search procedure. We compare + the results obtained with our procedure to some basic heuristics for Flow + Shop Problems, showing that our approach is very promising for the FSP. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ Verlag\n 2015-10-05\n + \ 2007-11-22\n 1997\n + \ application/postscript\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.41.1266\n + \ http://www.intellektik.informatik.tu-darmstadt.de/~kipr/TR/1997/97-07.ps.Z\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.41.8622\n + \ 2015-10-05\n
\n \n + \ \n + \ An Updated Survey of GA-Based Multiobjective Optimization + Techniques\n Carlos A. Coello Coello\n + \ Categories and Subject Descriptors\n I.2.8 + [Artificial Intelligence\n Problem Solving\n + \ Control Methods\n and + Search---heuristic methods General Terms\n Algorithms + Additional Key Words and Phrases\n artificial + intelligence\n genetic algorithms\n + \ multicriteria optimization\n multiobjective + optimization\n vector optimization\n + \ ... this paper is to summarize and organize the + information on these current approaches, emphasizing the importance of analyzing + the Operations Research techniques in which most of them are based, in an + attempt to motivate researchers to look into these mathematical programming + approaches for new ways of exploiting the search capabilities of evolutionary + algorithms. Furthermore, a summary of the main algorithms behind these approaches + is provided, together with a brief criticism that includes their advantages + and disadvantages, their degree of applicability and some of their known applications. + Finally, the future trends in this area and some possible paths of further + research are also addressed.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-22\n + \ 1998\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.41.8622\n + \ http://www.lania.mx/~biblania/REPORTES/Lania-RI-98-11.d/survey.ps.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.410.3180\n + \ 2015-10-05\n
\n \n + \ \n + \ Review of real-time vehicle schedule recovery methods + in transportation services\n Monize S\xE2mara + Visentini \n Denis Borenstein\n + \ Jing-quan Li\n Pitu + B. Mirchandani\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-01-28\n + \ 2013\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.410.3180\n + \ http://www.bilkent.edu.tr/~akturk/ie573/Visentini.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.416.6923\n + \ 2015-10-05\n
\n \n + \ \n + \ Simultaneous Solution of Lagrangean . . Preprocessing + for the Weight Constrained Shortest Path Problem\n Ranga + Muhandiramge\n Natashia Boland\n + \ The Weight Constrained Shortest Path Problem (WC\n + \ Conventional Lagrangean preprocessing for the network + Weight Constrained Shortest Path Christofides [3], calculates lower bounds + on the cost of using each node and edge in a feasible path using a single + optimal Lagrange multiplier for the relaxation of the WCSPP. These lower bounds + are used in conjunction with an upper bound to eliminate nodes and edges. + However, for each node and edge, a Lagrangean dual problem exists whose solution + may differ from the relaxation of the full problem. Thus, using one Lagrange + multiplier does not offer the best possible network reduction. Furthermore, + eliminating nodes and edges from the network may change the Lagrangean dual + solutions in the remaining reduced network, warranting an iterative solution + and reduction procedure. We develop a method for solving the related Lagrangean + dual problems for each edge simultaneously which is iterated with eliminating + nodes and edges. We demonstrate the effectiveness of our method computationally: + we test it against several others and show that it both reduces solve time + and the number of intractable problems encountered. We use a modified version + of Carlyle and Wood\u2019s [6] enumeration algorithm in the gap closing stage. + We also make improvements to this algorithm and test them computationally.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-01-31\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.416.6923\n + \ http://www.optimization-online.org/DB_FILE/2008/02/1906.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.417.6396\n + \ 2015-10-04\n
\n \n + \ \n + \ Strong parity vertex coloring of plane graphs \n + \ Mat\u011Bj Stehl\xEDk\n Riste + Skrekovski, et al.\n graph\n + \ strong parity vertex coloring\n strong + parity chromatic number\n proper coloring\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-04\n 2014-01-31\n + \ 2011\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.417.6396\n + \ http://www.imfm.si/preprinti/PDF/01144.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.42.1571\n + \ 2015-10-05\n
\n \n + \ \n + \ A Genetic Approach to the Quadratic Assignment Problem\n + \ David M. Tate\n Alice + E. Smith\n The Quadratic Assignment + Problem (QAP) is a well-known combinatorial optimization problem with a wide + variety of practical applications. Although many heuristics and semi-enumerative + procedures for QAP have been proposed, no dominant algorithm has emerged. + In this paper, we describe a Genetic Algorithm (GA) approach to QAP. Genetic + algorithms are a class of randomized parallel search heuristics which emulate + biological natural selection on a population of feasible solutions. We present + computational results which show that this GA approach finds solutions competitive + with those of the best previously-known heuristics, and argue that genetic + algorithms provide a particularly robust method for QAP and its more complex + extensions. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-22\n + \ 1992\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.42.1571\n + \ http://www.eng.auburn.edu/users/aesmith/postscript/genpaper.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.420.2338\n + \ 2015-10-05\n
\n \n + \ \n + \ Suffix arrays: A new method for on-line string searches\n + \ Udi Manber\n Gene + Myers \n Key words\n string + searching\n string matching\n + \ pattern matching\n suffix + trees\n algorithms\n text + indexing\n inverted\n + \ A new and conceptually simple data structure, called a suffix array, for + on-line string searches is introduced in this paper. Constructing and querying + suffix arrays is reduced to a sort and search paradigm that employs novel + algorithms. The main advantage of suffix arrays over suffix trees is that, + in practice, they use three to five times less space. From a complexity standpoint, + suffix arrays permit on-line string searches of the type, &quot;Is W a + substring of A? &quot; to be answered in time O(P + log N), where P is + the length of W and N is the length of A, which is competitive with (and in + some cases slightly better than) suffix trees. The only drawback is that in + those instances where the underlying alphabet is finite and small, suffix + trees can be constructed in O (N) time in the worst case, versus O (N log + N) time for suffix arrays. However, an augmented algorithm is given that, + regardless of the alphabet size, constructs suffix arrays in O (N) expected + time, albeit with lesser.space efficiency. It is believed that suffix arrays + will prove to be better in practice than suffix trees for many applications.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-02-04\n + \ 1993\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.420.2338\n + \ http://goanna.cs.rmit.edu.au/~e76763/pub/mm93-joc.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.420.3117\n + \ 2015-10-05\n
\n \n + \ \n + \ A Note on the Effects of Enforcing Bound Constraints on + Algorithm Comparisons using the IEEE CEC\u201905 Benchmark Function Suite\n + \ Tianjun Liao\n Marco + A. Montes De Oca\n Thomas St\xFCtzle\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-02-04\n + \ 2011\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.420.3117\n + \ http://iridia.ulb.ac.be/IridiaTrSeries/rev/IridiaTr2011-010r001.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.420.3963\n + \ 2015-10-05\n
\n \n + \ \n + \ The irace Package: Iterated Racing for Automatic Algorithm + Configuration\n Manuel L\xF3pez-ib\xE1\xF1ez\n + \ J\xE9r\xE9mie Dubois-lacoste\n Thomas + St\xFCtzle\n Mauro Birattari\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-02-04\n + \ 2011\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.420.3963\n + \ http://iridia.ulb.ac.be/IridiaTrSeries/rev/IridiaTr2011-004r001.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.420.6438\n + \ 2015-10-05\n
\n \n + \ \n + \ The irace Package: Iterated Racing for Automatic Algorithm + Configuration\n Manuel L\xF3pez-ib\xE1\xF1ez\n + \ J\xE9r\xE9mie Dubois-lacoste\n Thomas + St\xFCtzle\n Mauro Birattari\n + \ automatic algorithm configuration\n racing\n + \ parameter tuning\n R\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-02-04\n + \ 2011\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.420.6438\n + \ http://iridia.ulb.ac.be/IridiaTrSeries/rev/IridiaTr2011-004r002.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.423.3407\n + \ 2015-10-05\n
\n \n + \ \n + \ Shortest Paths in Digraphs of Small Treewidth. Part I: + Sequential Algorithms \n S. Chaudhuri\n + \ C. D. Zaroliagis\n + \ We consider the problem of preprocessing an n-vertex digraph with real edge + weights so that subsequent queries for the shortest path or distance between + any two vertices can be efficiently answered. We give algorithms that depend + on the treewidth of the input graph. When the treewidth is a constant, our + algorithms can answer distance queries in O(\u03B1(n)) time after O(n) preprocessing. + This improves upon previously known results for the same problem. We also + give a dynamic algorithm which, after a change in an edge weight, updates + the data structure in time O(n\u03B2), for any constant 0 &lt;\u03B2&lt;1. + Furthermore, an algorithm of independent interest is given: computing a shortest + path tree, or finding a negative cycle in linear time.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-02-06\n + \ 2000\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.423.3407\n + \ http://www.ceid.upatras.gr/faculty/zaro/pub/jou/J13-algo-spi-10016.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.423.5176\n + \ 2015-10-05\n
\n \n + \ \n + \ All-Pairs Min-Cut in Sparse Networks \n Srinivasa + R. Arikati\n Shiva Chaudhuri\n + \ Christos D. Zaroliagis\n + \ Algorithms for the all-pairs min-cut problem in bounded tree-width and sparse + networks are presented. The approach usedisto preprocess the input network + so that, afterwards, the value of a min-cut between any two vertices can be + e ciently computed. A tradeo between the preprocessing time and the time taken + to compute min-cuts subsequently is shown. In particular, after O(n log n) + preprocessing of a bounded tree-width network, it is possible to nd the value + of a min-cut between any two vertices in constant time. This implies that + for such networks the all-pairs min-cut problem can be solved in time O(n\xB2). + This algorithm is used in conjunction with a graph decomposition technique + of Frederickson to obtain algorithms for sparse networks. The running times + depend upon a topological property of the input network. The parameter varies + between 1 and (n) \uFFFD the algorithms perform well when = o(n). The value + of a min-cut can be found in time O(n + 2 log) and all-pairs min-cut can be + solved in time O(n 2 + 4 log). \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-02-06\n + \ 1995\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.423.5176\n + \ http://www.ceid.upatras.gr/faculty/zaro/pub/conf/C17-fsttcs95-apmc.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.424.2469\n + \ 2015-10-05\n
\n \n + \ \n + \ An Inductive Construction for Plane Laman Graphs via Vertex + Splitting\n Zsolt Fekete\n Tibor + Jord\xE1n\n Walter Whiteley\n + \ We prove that all planar Laman graphs (i.e. minimally + generically rigid graphs with a non-crossing planar embedding) can be generated + from a single edge by a sequence of vertex splits. It has been shown recently + [6,12] that a graph has a pointed pseudo-triangular embedding if and only + if it is a planar Laman graph. Due to this connection, our result gives a + new tool for attacking problems in the area of pseudotriangulations and related + geometric objects. One advantage of vertex splitting over alternate constructions, + such as edge-splitting, is that vertex splitting is geometrically more local. + We also give new inductive constructions for duals of planar Laman graphs + and for planar generically rigid graphs containing a unique rigidity circuit. + Our constructions can be found in O(n 3) time, which matches the best running + time bound that has been achieved for other inductive contructions. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-08-27\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.424.2469\n + \ http://www.ilab.sztaki.hu/~zsfekete/sajat_cikkek/plane_laman.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.425.369\n + \ 2015-10-05\n
\n \n + \ \n + \ Du reseau a la communaute . . . \n + M\xE9lanie BOS-CIUSSI\n confiance et amiti\xE9 + au CERAM Sophia Antipolis. \xC9galement St\xE9phane qui\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-08-27\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.425.369\n + \ http://tel.archives-ouvertes.fr/docs/00/12/93/84/PDF/eTheseCIUSSI_full_version.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.427.7570\n + \ 2015-10-04\n
\n \n + \ \n + \ Edge colourings of multigraphs\n Diego + Scheide\n Tag der wissenschaftlichen Aussprache\n + \ 27.02.2009\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2014-08-29\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.427.7570\n + \ http://www.db-thueringen.de/servlets/DerivateServlet/Derivate-18262/ilm1-2009000218.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.431.3049\n + \ 2015-10-04\n
\n \n + \ \n + \ Generic global rigidity of body\u2013bar frameworks\n + \ R. Connelly, et al.\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2014-09-02\n + \ 2013\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.431.3049\n + \ http://www.math.cornell.edu/~connelly/Connelly-Jordan-Whiteley.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.431.3189\n + \ 2015-10-05\n
\n \n + \ \n + \ Exact and metaheuristic algorithms for the urban transit + \ . . . \n Bruno Coswig Fiss\n + \ Marcus Ritt\n L&amp;T + \u2013 Logistics and transport\n MH \u2013 + Metaheuristics\n OC \u2013 Combinatorial + optimization\n The urban transit routing + problem (UTRP) consists of finding satisfying routes for public transportation + within a city or region. Urban scenarios get bigger and more complex every + day, making the design of routes an overwhelming task whose results are often + unsatisfactory, with high costs and travel times. We develop an exact MIP + formulation and a multi-objective genetic algorithm to solve this problem + with higher quality and more efficiently than with current techniques. We + benchmark our solutions on generally available real and artificial test cases + and achieve better results for all of them.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-09-02\n + \ 2012\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.431.3189\n + \ http://www.inf.ufrgs.br/~mrpritt/Publications/P41-sbpo2012.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.431.8687\n + \ 2015-10-05\n
\n \n + \ \n + \ A Penalty Search Algorithm for the Obstacle Neutralization + Problem\n Ali Fuat Alkaya \n + \ Vural Aksakalli \n Carey + E. Priebe \n combinatorial optimization\n + \ path planning\n weight-constrained + shortest path\n suboptimal algorithm\n + \ We consider a path planning problem wherein an agent + needs to swiftly navigate from a source to a destination through an arrangement + of obstacles in the plane. We suppose the agent has a limited neutralization + capability in the sense that it can safely pass through an obstacle upon neutralization + at a cost added to the traversal length. The agent\u2019s goal is to find + the sequence of obstacles to be neutralized en route that minimizes the overall + traversal length subject to the neutralization limit. We call this problem + the obstacle neutralization problem (ONP), which is essentially a variant + of the intractable weight-constrained shortest path problem in the literature. + In this study, we propose a simple, yet efficient and effective suboptimal + algorithm for ONP based on the idea of penalty search and we present special + cases where our algorithm is provably optimal. Computational experiments involving + both real and synthetic naval minefield data are also presented.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-09-03\n + \ 2014\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.431.8687\n + \ http://www.cis.jhu.edu/~parky/CEP-Publications/neutro.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.434.5268\n + \ 2015-10-04\n
\n \n + \ \n + \ Straight-line Grid Drawings of 3-Connected 1-Planar Graphs\n + \ Md. Jawaherul Alam\n Franz + J. Brandenburg\n Stephen G. Kobourov\n + \ A graph is 1-planar if it can be drawn in the plane + such that each edge is crossed at most once. In general, 1-planar graphs do + not admit straightline drawings. We show that every 3-connected 1-planar graph + has a straight-line drawing on an integer grid of quadratic size, with the + exception of a single edge on the outer face that has one bend. The drawing + can be computed in linear time from any given 1-planar embedding of the graph. + \ \n The Pennsylvania State University + CiteSeerX Archives\n \n 2015-10-04\n + \ 2014-09-04\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.434.5268\n + \ http://www.cs.arizona.edu/~kobourov/abk-slgd.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.445.3297\n + \ 2015-10-04\n
\n \n + \ \n + \ Local and mean Ramsey numbers for trees\n B. + Bollobas, et al.\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2014-09-09\n + \ 2000\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.445.3297\n + \ http://www.math.uiuc.edu/~kostochk/docs/2000/jctb2000BolSch.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.445.4616\n + \ 2015-10-05\n
\n \n + \ \n + \ Selected Topics in Column Generation\n Marco + E. L\xFCbbecke, Jacques Desrosiers\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-09-10\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.445.4616\n + \ http://www4.ncsu.edu/~kksivara/ma505/handouts/column-generation.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.446.8038\n + \ 2015-10-04\n
\n \n + \ \n + \ Every 3-connected, essentially . . . \n Hong-Jian + Lai, et al.\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2014-09-10\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.446.8038\n + \ http://www.math.wvu.edu/~hjlai/Pdf/Hong-Jian_Lai_Pdf/084-JCTB_2006.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.449.1189\n + \ 2015-10-05\n
\n \n + \ \n + \ Automotive Architecture Framework: Towards a Holistic + and Standardised System Architecture Description\n Manfred + Broy\n Mario Gleirscher\n Peter + Kluge\n Wolfgang Krenzer\n + \ Stefano Merenda\n + Doris Wild\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-09-10\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.449.1189\n + \ http://www4.in.tum.de/publ/papers/TUM-I0915.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.450.9775\n + \ 2015-10-05\n
\n \n + \ \n + \ Potential contaminant pathways from . . . \n + \ Tom Myers\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-09-10\n + \ 2012\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.450.9775\n + \ http://www.fossil.energy.gov/programs/gasregulation/authorizations/export_study/Exhibits_61-79.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.450.9892\n + \ 2015-10-05\n
\n \n + \ \n + \ On the Railway Line Planning Models Considering the Various + Halting Patterns\n Bum Hwan Park\n + \ Chung-soo Kim\n Hag-lae + Rho\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-09-10\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.450.9892\n + \ http://www.iaeng.org/publication/IMECS2010/IMECS2010_pp2146-2151.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.453.5852\n + \ 2015-10-05\n
\n \n + \ \n + \ Geometry and part feeding\n + A. Frank van der Stappen \n Robert-Paul + Berretty\n Ken Goldberg\n Mark + H. Overmars\n Many automated manufacturing + processes require parts to be oriented prior to assembly. A part feeder takes + in a stream of identical parts in arbitrary orientations and outputs them + in uniform orientation. We consider part feeders that do not use sensing information + to accomplish the task of orienting a part; these feeders include vibratory + bowls, parallel jaw grippers, and conveyor belts and tilted plates with so-called + fences. The input of the problem of sensorless manipulation is a description + of the part shape and the output is a sequence of actions that moves the part + from its unknown initial pose into a unique nal pose. For each part feeder + we consider, we determine classes of orientable parts, give algorithms for + synthesizing sequences of actions, and derive upper bounds on the length of + these sequences. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-11-25\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.453.5852\n + \ http://goldberg.berkeley.edu/pubs/geometry-part-feeding.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.454.7946\n + \ 2015-10-05\n
\n \n + \ \n + \ The Dial-a-Ride Problem (DARP): Variants, Modeling Issues + . . . \n Jean-fran\xE7ois Cordeau\n + \ Gilbert Laporte\n dial-a-ride + problem\n survey\n static + and dynamic pick-up and delivery\n + \ The Dial-a-Ride Problem (DARP) consists of designing vehicle routes and + schedules for n users who specify pick-up and drop-off requests between ori-gins + and destinations. The aim is to plan a set of m minimum cost vehicle routes + capable of accommodating asmany users as possible, under a set of constraints. + The most common example arises in door-to-door transportation for elderly + or disabled people. The purpose of this article is to review the scientific + literature on the DARP. The main features of the problem are described and + classified and some modeling issues are discussed. A summary of the most important + algorithms is provided.\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-11-26\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.454.7946\n + \ http://prolog.univie.ac.at/teaching/LVAs/KFK-Seminar/WS0506/Cordeau_DialARide.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.454.8348\n + \ 2015-10-05\n
\n \n + \ \n + \ Telebus Berlin: Vehicle scheduling in a dial-a-ride system\n + \ R. Bornd\xF6rfer\n M. + Gr\xF6tschel\n F. Klostermeier\n + \ C. K\xFCttner\n + \ Telebus is Berlin&apos;s dial-a-ride system for handicapped people who + cannot use the public transportation system. The service is provided by a + fleet of about 100 mini-buses and includes assistance in getting in and out + of the vehicle. Telebus has between 1,000 and 1,500 transportation requests + per day. The problem is to schedule these requests onto the vehicles such + that punctual service is provided while operation costs are minimized. Addi + tional constraints include pre-rented vehicles, fixed bus driver shift lengths, + obligatory breaks, and different vehicle capacities. We use a set partitioning + approach for the solution of the bus scheduling problem that consists of two + steps. The first clustering step identifies segments of possible bus tours + (&quot;orders&quot;) such that more than one person is transported + at a time; the aim in this step is to reduce the size of the problem and to + make use of larger vehicle capacities. The problem of selecting a set of orders + such that the traveling distance of the vehicles within the orders is minimal + is a set partitioning problem that can be solved to optimality. In\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-11-26\n + \ 1999\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.454.8348\n + \ http://www.zib.eu/groetschel/pubnew/paper/borndoerfergroetschelklostermeieretal1999.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.456.6844\n + \ 2015-10-04\n
\n \n + \ \n + \ A Survey of Steganography and Steganalysis Technique in + Image, Text, Audio and Video as Cover Carrier\n Souvik + Bhattacharyya\n Indradip Banerjee\n + \ Gautam Sanyal\n Cover + Image\n Steganography\n Image\n + \ The staggering growth in communication technology + and usage of public domain channels (i.e. Internet) has greatly facilitated + transfer of data. However, such open communication channels have greater vulnerability + to security threats causing unauthorized information access. Traditionally, + encryption is used to realize the communication security. However, important + information is not protected once decoded. Steganography is the art and science + of communicating in a way which hides the existence of the communication. + Important information is firstly hidden in a host data, such as digital image, + text, video or audio, etc, and then transmitted secretly to the receiver. + Steganalysis is another important topic in information hiding which is the + art of detecting the presence of steganography. This paper provides a critical + review of steganography as well as to analyze the characteristics of various + cover media namely image, text, a u dio and video in respects of the fundamental + concepts, the progress of steganographic methods and the development of the + corresponding steganalysis schemes.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2014-11-28\n + \ 2011\n text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.456.6844\n + \ http://jgrcs.info/index.php/jgrcs/article/download/99/99/\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.46.6014\n + \ 2015-10-05\n
\n \n + \ \n + \ Exploiting Group Communication for Reliable High Volume + Data Distribution\n Jeremy R. Cooperstock\n + \ Steve Kotsopoulos\n The + design and implementation of a protocol to provide reliable and efficient + distribution of large quantities of data to many hosts on a local area network + or internetwork is described. By exploiting the one-to-many transmission capabilities + of multicast and broadcast, it is possible to transmit data to multiple hosts + simultaneously, using less bandwidth and thus obtaining greater efficiency + than repeated unicasting. Although performance measurements indicate the superiority + of multicast, we dynamically select from available transmission modes so as + to maximize efficiency and throughput while providing reliable delivery of + data to all hosts. Our results demonstrate that filedistribution programs + based on this protocol can benefit from a linear speed-up over TCP-based programs + such as rdist. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-22\n + \ 1995\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.46.6014\n + \ http://www.cim.mcgill.ca/~jer/pub/ieee95.afdp.ps.Z\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.46.7676\n + \ 2015-10-05\n
\n \n + \ \n + \ Why Use a Fishing Line When You Have a Net? An Adaptive + Multicast Data Distribution Protocol\n Jeremy + R. Cooperstock\n Steve Kotsopoulos\n + \ The design and implementation of a system to provide + reliable and efficient distribution of large quantities of data to many hosts + on a local area network or internetwork is described. By exploiting the one-to-many + transmission capabilities of multicast and broadcast, it is possible to transmit + data to multiple hosts simultaneously, using less bandwidth and thus obtaining + greater efficiency than repeated unicasting. Although performance measurements + indicate the superiority of multicast, we dynamically select from available + transmission modes so as to maximize efficiency and throughput while providing + reliable delivery of data to all hosts. Our results demonstrate that file-distribution + programs based on our protocol can benefit from a substantial speed-up over + TCPbased programs such as rdist. For example, our system has been used to + distribute a 133 Kbyte password file to 68 hosts in 20 seconds, whereas the + equivalent rdist took 251 seconds. \n The + Pennsylvania State University CiteSeerX Archives\n The + USENIX Association\n 2015-10-05\n + \ 2007-11-22\n 1996\n + \ application/postscript\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.46.7676\n + \ http://www.cim.mcgill.ca/~jer/pub/usenix96.ps.Z\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.46.9029\n + \ 2015-10-05\n
\n \n + \ \n + \ Sinks in Acyclic Orientations of Graphs\n David + D. Gebhard\n Bruce E. Sagan\n + \ Key Words\n acyclic + orientation\n algorithm\n chromatic + polynomial\n graph\n induction\n + \ sink\n Greene + and Zaslavsky proved that the number of acyclic orientations of a graph with + a unique sink at a given vertex is, up to sign, the linear coefficient of + the chromatic polynomial. We give three new proofs of this result using pure + induction, noncommutative symmetric functions, and an algorithmic bijection. + \ \n The Pennsylvania State University + CiteSeerX Archives\n \n 2015-10-05\n + \ 2007-11-22\n 1999\n + \ application/postscript\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.46.9029\n + \ http://www.mth.msu.edu/~sagan/Papers/sao.ps\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.460.8506\n + \ 2015-10-04\n
\n \n + \ \n + \ 1-Visibility Representations of 1-Planar Graphs\n + \ Franz J. Brandenburg\n Communicated + by\n A 1-visibility representation of + a graph displays each vertex as a hor-izontal vertex-segment, called a bar, + and each edge as a vertical edge-segment between the segments of the vertices, + such that each edge-segment crosses at most one vertex-segment and each vertex-segment + is crossed by at most one edge-segment. A graph is 1-visible if it has such + a represen-tation. 1-visibility is related to 1-planarity where graphs are + drawn such that each edge is crossed at most once, and specializes bar 1-visibility + where vertex-segments can be crossed many times. We develop a linear time + algorithm to compute a 1-visibility repre-sentation of an embedded 1-planar + graph in O(n2) area. Hence, every 1-planar graph is 1-visible. Concerning + density, both 1-visible and 1-planar graphs of size n have at most 4n \u2212 + 8 edges. However, for every n \u2265 7 there are 1-visible graphs with 4n + \u2212 8 edges, which are not 1-planar. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2014-12-01\n + \ 2014\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.460.8506\n + \ http://emis.icm.edu.pl/journals/JGAA/accepted/2014/Brandenburg2014.18.3.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.463.3564\n + \ 2015-10-05\n
\n \n + \ \n + \ Communication-Aware Heterogeneous Multiprocessor Mapping + for Real-time Streaming Systems\n Jing Lin\n + \ Andreas Gerstlauer\n Brian + L. Evans\n Real-time streaming signal + processing systems typically desire high throughput and low latency. Many + such systems can be modeled as synchronous data flow graphs. In this paper, + we address the prob-lem of multi-objective mapping of SDF graphs onto heterogeneous + multiprocessor platforms, where we account for the overhead of bus-based inter-processor + communi-cation. The primary contributions include (1) an inte-ger linear programming + (ILP) model that globally optimizes throughput, latency and cost; (2) low-complexity + two-stage heuristics based on a combination of an evo-lutionary algorithm + with an ILP to generate either a single suboptimal mapping solution or a Pareto + front for design space optimization. In our simulations, the proposed heuristic + shows up to 12x run-time efficiency compared to the global ILP while maintaining + a 10\u22126 optimality gap in throughput.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-12-04\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.463.3564\n + \ https://hostdb.ece.utexas.edu/~bevans/papers/2012/multiprocessor/MultiprocSDFMappingJSPSDraft.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.464.9065\n + \ 2015-10-05\n
\n \n + \ \n + \ Behavioural Game Theory: Thinking, Learning and Teaching + \n Colin F. Camerer\n Teck-hua + Ho\n Juin Kuan Chong\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-12-04\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.464.9065\n + \ http://authors.library.caltech.edu/22240/2/Ch08Pg_119-179[1].pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.465.365\n + \ 2015-10-05\n
\n \n + \ \n + \ Discrete cost multicommodity network optimization problems + and exact solution methods\n Michel Minoux\n + \ We first introduce a generic model for discrete + cost multicommodity network optimization, together with several variants relevant + to telecommunication networks such as: the case where discrete node cost functions + (accounting for switching equipment) have to be included in the objective; + the case where survivability constraints with respect to single-link and/or + single-node failure have to be taken into account. An overview of existing + exact solution methods is presented, both for special cases (such as the so-called + single-facility and two-facility network loading problems) and for the general + case where arbitrary step-increasing link cost-functions are considered. The + basic discrete cost multicommodity flow problem (DCMCF) as well as its variant + with survivability constraints (DCSMCF) are addressed. Several possible directions + for improvement or future investigations are mentioned in the concluding section. + \ \n The Pennsylvania State University + CiteSeerX Archives\n \n 2015-10-05\n + \ 2014-12-05\n 2001\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.465.365\n + \ http://www-sop.inria.fr/members/Frederic.Havet/Cours/minoux02.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.465.4332\n + \ 2015-10-05\n
\n \n + \ \n + \ Planning for steerable bevel-tip needle insertion through + 2d soft tissue with obstacles \n Ron Alterovitz\n + \ Ken Goldberg\n Allison + Okamura\n Medical procedures such as + seed implantation, biopsies, and treatment injections require inserting a + needle to a specific target location inside the human body. Flexible needles + with bevel tips are known to bend when inserted into soft tissues and can + be inserted to targets unreachable by rigid symmetric-tip needles. Planning + for such procedures is difficult because needle insertion causes soft tissues + to displace and deform. In this paper, we develop a 2D planning algorithm + for insertion of highly flexible bevel-tip needles into tissues with obstacles. + Given an initial needle insertion plan specifying location, orientation, bevel + rotation, and insertion distance, the planner combines soft tissue modeling + and numerical optimization to generate a needle insertion plan that compensates + for simulated tissue deformations, locally avoids polygonal obstacles, and + minimizes needle insertion distance. Soft tissue deformations are simulated + using a finite element formulation that models the effects of needle tip and + frictional forces using a 2D mesh. The planning problem is formulated as a + constrained nonlinear optimization problem which is locally minimized using + a penalty method that converts the formulation to a sequence of unconstrained + optimization problems. We apply the planner to bevel-right and bevel-left + needles and generate plans for targets that are unreachable by rigid needles. + \ \n The Pennsylvania State University + CiteSeerX Archives\n \n 2015-10-05\n + \ 2014-12-05\n 2005\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.465.4332\n + \ http://www.ieor.berkeley.edu/~goldberg/pubs/ron-icra2005-v04.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.468.5449\n + \ 2015-10-05\n
\n \n + \ \n + \ The Augmented Lagrange Multiplier Method for Exact Recovery + of Corrupted Low-Rank Matrices\n Zhouchen + Lin\n Minming Chen\n Yi + Ma\n algorithms \xB7 Augmented Lagrange + multipliers\n This paper proposes scalable + and fast algorithms for solving the Robust PCA problem, namely recovering + a low-rank matrix with an unknown fraction of its entries being arbitrarily + corrupted. This problem arises in many applications, such as image processing, + web data ranking, and bioinformatic data analysis. It was recently shown that + under surprisingly broad conditions, the Robust PCA problem can be exactly + solved via convex optimization that minimizes a combination of the nuclear + norm and the \u21131-norm. In this paper, we apply the method of augmented + Lagrange multipliers (ALM) to solve this convex program. As the objective + function is non-smooth, we show how to extend the classical analysis of ALM + to such new objective functions and prove the optimality of the proposed algorithms + and characterize their convergence rate. Empirically, the proposed new algorithms + can be more than five times faster than the previous state-of-the-art algorithms + for Robust PCA, such as the accelerated proximal gradient (APG) algorithm. + Moreover, the new algorithms achieve higher precision, yet being less storage/memory + demanding. We also show that the ALM technique can be used to solve the (related + but somewhat simpler) matrix completion problem and obtain rather promising + results too. We further prove the necessary and sufficient condition for the + inexact ALM to converge globally. Matlab code of all algorithms discussed + are available at\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-12-08\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.468.5449\n + \ http://perception.csl.illinois.edu/matrix-rank/Files/ALM-v5.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.470.5706\n + \ 2015-10-05\n
\n \n + \ \n + \ An Ant Colony Optimization Approach to Flexible Protein-Ligand + Docking\n Oliver Korb\n Thomas + St\xFCtzle\n Thomas E. Exner\n + \ The prediction of the complex structure of a small + ligand with a protein, the so-called protein\u2013ligand docking problem, + is a central part of the rational drug design process. For this purpose, we + introduce the docking algorithm PLANTS (Protein\u2013Ligand ANT Sys-tem), + which is based on ant colony optimization, one of the most successful swarm + intelli-gence techniques. We study the effectiveness of PLANTS for several + parameter settings and present a direct comparison of PLANTS\u2019s performance + to a state-of-the-art program called GOLD, which is based on a genetic algorithm + and frequently used in the pharmaceutical industry for this task. Last but + not least, we also show that PLANTS can make effective use of protein flexibility + giving example results on cross-docking and virtual screening experi-ments + for protein kinase A. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-12-09\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.470.5706\n + \ http://natcomp.liacs.nl/SWI/papers/bioinformatics/aco.for.flexible.protein-ligand.docking.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.471.4772\n + \ 2015-10-05\n
\n \n + \ \n + \ The algorithm design manual - Second edition\n + \ Steven S. Skiena\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-12-10\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.471.4772\n + \ http://cad6.csie.fju.edu.tw/ecp100/Books/Springer.The + Algorithm Design Manual.pdf\n en\n + \ Metadata may be used without restrictions as long as + the oai identifier remains attached to it.\n \n + \ \n
\n \n
\n oai:CiteSeerX.psu:10.1.1.473.2633\n + \ 2015-10-05\n
\n \n + \ \n + \ A tabu search heuristic for the static multi-vehicle dial-a-ride + problem\n Jean-Fran\xE7ois Cordeau, et al.\n + \ Dial-a-ride problem\n Door-to-door + transportation\n Tabu search heuristic\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-12-10\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.473.2633\n + \ http://www.iro.umontreal.ca/~marcotte/PLU6000/PLU6000_H04/Cordeau2.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.48.6556\n + \ 2015-10-05\n
\n \n + \ \n + \ Pattern Search Methods for Linearly Constrained Minimization\n + \ Robert Michael Lewis\n Virginia + Torczon\n We extend pattern search + methods to linearly constrained minimization. We develop a general class of + feasible point pattern search algorithms and prove global convergence to a + Karush-Kuhn-Tucker point. As in the case of unconstrained minimization, pattern + search methods for linearly constrained problems accomplish this without explicit + recourse to the gradient or the directional derivative of the objective. Key + to the analysis of the algorithms is the way in which the local search patterns + conform to the geometry of the boundary of the feasible region. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2007-11-22\n + \ 1998\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.48.6556\n + \ http://www.cs.wm.edu/~va/research/linear.ps.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.483.8706\n + \ 2015-10-05\n
\n \n + \ \n + \ Routing in line planning for public transport\n + \ Marc E. Pfetsch\n Ralf + Bornd\xF6rfer\n The line planning problem + is one of the fundamental problems in strategic planning of public and rail + transport. It consists in finding lines and corresponding frequencies in a + network such that a given demand can be satisfied. There are two objectives. + Passengers want to minimize travel times, the transport company wishes to + minimize operating costs. We investigate three variants of a multi-commodity + flow model for line planning that differ with respect to passenger routings. + The first model allows arbitrary routings, the second only unsplittable routings, + and the third only shortest path routings with respect to the network. We + compare these models theoretically and computationally on data for the city + of Potsdam. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-12-17\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.483.8706\n + \ http://www.zib.de/borndoerfer/Homepage/Bibliography/paper/PfetschBorndoerfer2005.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.486.3541\n + \ 2015-10-05\n
\n \n + \ \n + \ An Auctioning Approach to Railway Slot Allocation\n + \ Ralf Bornd\xF6rfer , Martin Gro\u0308tschel \n + \ Sascha Lukac\n Kay + Mitusch \n Thomas Schlechte\n + \ S\xF6ren Schultz\n Andreas + Tanner\n We present an approach to implement + an auction of railway slots. Railway network, train driving characteristics, + and safety requirements are described by a simplified, but still complex macroscopic + model. In this environment, slots are modelled as combinations of scheduled + track segments. The auction design builds on the iterative combinatorial auction. + However, combinatorial bids are restricted to some types of slot bundles that + realize positive synergies between slots. We present a bidding language that + allows bidding for these slot bundles. An integer programming approach is + proposed to solve the winner determination problem of our auction. Computational + results for auction simulations in the Hannover-Fulda-Kassel area of the German + railway network give evidence that auction approaches can induce a more efficient + use of railway capacity. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-12-18\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.486.3541\n + \ http://www.trassenboerse.de/wp-content/uploads/2007/08/zib-report-05-45.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.487.3752\n + \ 2015-10-05\n
\n \n + \ \n + \ Quasi-isometries between graphs and trees \n + \ Bernhard Kr\xF6n \n R\xF6gnvaldur + G. M\xF6ller \n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-12-19\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.487.3752\n + \ http://homepage.univie.ac.at/bernhard.kroen/kroen_quasi.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.491.4090\n + \ 2015-10-05\n
\n \n + \ \n + \ Optimal Fares for Public Transport \n Ralf + Bornd\xF6rfer\n Marika Neumann\n + \ Marc E. Pfetsch\n The + fare planning problem for public transport is to design a sys-tem of fares + that maximize the revenue. We introduce a nonlinear optimization model to + approach this problem. It is based on a discrete choice logit model that expresses + demand as a function of the fares. We illustrate our approach by computing + and comparing two different fare systems for the intercity network of the + Netherlands. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-12-22\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.491.4090\n + \ http://www.zib.de/Publications/Reports/ZR-05-35.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.499.4311\n + \ 2015-10-05\n
\n \n + \ \n + \ Consumer surplus in the digital economy: Estimating the + value of increased product variety\n Erik + Brynjolfsson\n Michael D. Smith\n + \ Yu (Jeffrey) Hu\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-12-25\n + \ 2002\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.499.4311\n + \ http://www.heinz.cmu.edu/research/62full.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.502.3462\n + \ 2015-10-05\n
\n \n + \ \n + \ Infinite faces and ends of almost transitive plane graphs\n + \ Bernhard Kr\xF6n\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-12-28\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.502.3462\n + \ http://www.math.uni-hamburg.de/research/papers/hbm/hbm2006257.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.502.6854\n + \ 2015-10-05\n
\n \n + \ \n + \ Line Planning on Paths and Tree Networks with Applications + to the Quito Troleb\xFAs System\n Luis M. + Torres\n Ramiro Torres\n Ralf + Bornd\xF6rfer\n Marc E. Pfetsch\n + \ Line planning is an important step in the strategic + planning process of a public transportation system. In this paper, we discuss + an optimization model for this problem in order to minimize operation costs + while guaran-teeing a certain level of quality of service, in terms of available + transport capacity. We analyze the problem for path and tree network topologies + as well as several categories of line operation that are important for the + Quito Troleb\xFAs system. It turns out that, from a computational com-plexity + worst case point of view, the problem is hard in all but the most simple variants. + In practice, however, instances based on real data from the Troleb\xFAs System + in Quito can be solved quite well, and significant optimization potentials + can be demonstrated. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-12-28\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.502.6854\n + \ http://www.zib.de/Publications/Reports/ZR-08-35.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.503.5515\n + \ 2015-10-05\n
\n \n + \ \n + \ Removable Edges in a Cycle of a 4-Connected Graph\n + \ Jichang Wu\n Xueliang + Li\n Lusheng Wang\n Key + Words\n 4-Connected graph\n + \ Removable edge\n Edge-vertex-cut + fragment\n Let G be a 4-connected graph. + For an edge e of G, we do the following operations on G: first, delete the + edge e from G, resulting the graph G \u2212 e; second, for all the vertices + x of degree 3 in G \u2212 e, delete x from G \u2212 e and then completely + connect the 3 neighbors of x by a triangle. If multiple edges occur, we use + single edges to replace them. The final resultant graph is denoted by G \xAA + e. If G \xAA e is still 4-connected, then e is called a removable edge of + G. In this paper, we investigate the problem on how many removable edges there + are in a cycle of a 4-connected graph, and give examples to show that our + results are in some sense best possible.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-12-29\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.503.5515\n + \ http://www.combinatorics.cn/publications/papers/2004/LiXL-04A3.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.506.1526\n + \ 2015-10-05\n
\n \n + \ \n + \ The number of removable edges in a 4-connected graph\n + \ Jichang Wu\n Xueliang + Li\n Jianji Su \n 4-connected + graph\n Removable edge\n Let + G be a 4-connected graph. For an edge e of G; we do the following operations + on G: first, delete the edge e from G; resulting the graph G e; second, for + all the vertices x of degree 3 in G e; delete x from G e and then completely + connect the 3 neighbors of x by a triangle. If multiple edges occur, we use + single edges to replace them. The final resultant graph is denoted by G~e: + If G~e is still 4-connected, then e is called a removable edge of G: In this + paper we prove that every 4-connected graph of order at least six (excluding + the 2-cyclic graph of order six) has at least \xF04jGj \xFE 16\xDE=7 removable + edges. We also give the structural characterization of 4-connected graphs + for which the lower bound is sharp.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2014-12-30\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.506.1526\n + \ http://www.combinatorics.cn/publications/papers/2004/LiXL-04A1.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.507.3608\n + \ 2015-10-05\n
\n \n + \ \n + \ Fare planning for public transport\n Ralf + Bornd\xF6rfer\n Marika Neumann\n + \ Marc E. Pfetsch\n In + this paper we introduce the fare planning problem for public transport which + consists in designing a system of fares maximizing revenue. We propose a new + simple general model for this problem. It is based on a demand function and + constraints for the dierent fares. The constraints dene the structure of the + fare system, e.g., distance dependent fares or zone fares. We discuss a simple + example with a quadratic demand function and distance dependent fares. Then + we introduce a more realistic discrete choice model in which passen-gers choose + between dierent alternatives depending on the number of trips per month. We + demonstrate the examples by computational experiments. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-12-30\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.507.3608\n + \ http://www.zib.de/borndoerfer/Homepage/Bibliography/paper/BorndoerferNeumannPfetsch2005a.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.509.651\n + \ 2015-10-05\n
\n \n + \ \n + \ Recoverable Robustness for Railway Rolling Stock Planning\n + \ Valentina Cacchiani\n Alberto + Caprara\n Laura Galli\n Leo + Kroon\n Gabor Maroti\n Paolo + Toth\n In this paper we explore the + possibility of applying the notions of Recoverable Robustness and Price of + Recoverability (introduced by [5]) to railway rolling stock planning, being + interested in recoverability measures that can be computed in practice, thereby + evaluating the robustness of rolling stock schedules. In order to lower bound + the Price of Recoverability for any set of recovery algorithms, we consider + an \u201Coptimal\u201D recovery algorithm and propose a Benders decomposition + approach to assess the Price of Recoverability for this \u201Coptimal\u201D + algorithm. We evaluate the approach on real-life rolling stock planning problems + of NS, the main operator of passenger trains in the Netherlands. The preliminary + results show that, thanks to Benders decomposition, our lower bound can be + computed within relatively short time for our case study. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2014-12-31\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.509.651\n + \ http://drops.dagstuhl.de/opus/volltexte/2008/1590/pdf/08002.Cacchiani.1590.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.509.7147\n + \ 2015-10-04\n
\n \n + \ \n + \ Optimal 1-planar graphs which triangulate other surfaces\n + \ Yusuke Suzuki\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2014-12-31\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.509.7147\n + \ http://www.ngm.ed.ynu.ac.jp/negami/tgt/tgt20/abstract/suzuki_tgt20.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.510.3874\n + \ 2015-10-04\n
\n \n + \ \n + \ Edge-pancyclicity of coupled graphs\n Ko-wei + Lih \n Song Zengmin \n Wang + Weifan \n Zhang Kemin \n Coupled + graph\n Edge-panciclicity\n + \ Ear decomposition\n The + coupled graph c(G) of a plane graph G is the graph de.ned on the vertex set + V (G)\u222AF(G) so that two vertices in c(G) are joined by an edge if and + only if they are adjacent or incident in G. We prove that the coupled graph + of a 2-connected plane graph is edge-pancyclic. However, there exists a 2-edge-connected + plane graph G such that c(G) is not Hamiltonian. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2015-01-01\n + \ 2002\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.510.3874\n + \ http://math.nju.edu.cn/~zkmfl/kmzhang/100-123/Zhang103.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.518.3660\n + \ 2015-10-05\n
\n \n + \ \n + \ Metric ends, fibers and automorphisms of graphs\n + \ Bernhard Kr\xF6n , R\xF6gnvaldur G. M\xF6ller\n + \ Several results on the action of graph automorphisms + on ends and fibers are generalized for the case of metric ends. This includes + results on the action of the automorphisms on the end space, directions of + automorphisms, double rays which are invariant under a power of an automorphism + and metrically almost transitive automor-phism groups. It is proved that the + bounded automorphisms of a metrically almost transitive graph with more than + one end are precisely the kernel of the action on the space of metric ends. + \ \n The Pennsylvania State University + CiteSeerX Archives\n \n 2015-10-05\n + \ 2015-01-05\n 2008\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.518.3660\n + \ http://homepage.univie.ac.at/bernhard.kroen/kroen_metric.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.52.2568\n + \ 2015-10-05\n
\n \n + \ \n + \ A Globally Convergent Augmented Lagrangian Pattern Search + Algorithm For Optimization With General Constraints And Simple Bounds\n + \ Robert Michael Lewis\n Virginia + Torczon\n Key words. augmented Lagrangian\n + \ constrained optimization\n direct + search\n nonlinear programming\n + \ pattern search\n + We give a pattern search adaptation of an augmented Lagrangian method due + to Conn, Gould, and Toint. The algorithm proceeds by successive bound constrained + minimization of an augmented Lagrangian. In the pattern search adaptation + we solve this subproblem approximately using a bound constrained pattern search + method. The stopping criterion proposed by Conn, Gould, and Toint for the + solution of this subproblem requires explicit knowledge of derivatives. Such + information is presumed absent in pattern search methods; however, we show + how we can replace this with a stopping criterion based on the pattern size + in a way that preserves the convergence properties of the original algorithm. + In this way we proceed by successive, inexact, bound constrained minimization + without knowing exactly how inexact the minimization is. So far as we know, + this is the first provably convergent direct search method for general nonlinear + programming. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-22\n + \ 1998\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.52.2568\n + \ http://www.cs.wm.edu/~va/research/augmented.ps.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.52.2965\n + \ 2015-10-05\n
\n \n + \ \n + \ A Set Covering Approach To Infeasibility Analysis Of Linear + Programming Problems And Related Issues\n Mark + Richard Parker\n With the increased + sophistication of both computers and optimization software, linear programming + problems of a size inconceivable to solve only a few years ago are now readily + accessible. As model size and complexity increase, the issue of feasibility + becomes a major issue in model development. This thesis explores the analysis + of linear programming infeasibility through the use of Irreducible Infeasible + Subsystems, or I ISs. In particular, we develop a constraint generation algorithm + for identifying the minimum weight I IS cover, which isolates a minimal weight + set of constraints whose removal from the system yields a feasible system. + It has been shown that this set covering problem has a very special structure. + We also explore the facial structure of the set covering polyhedra and provide + a generalization to a class of covering problems. The link between this problem + and the linear discriminant problem is also explored. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2007-11-22\n + \ 1995\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.52.2965\n + \ http://www-math.cudenver.edu/graduate/thesis/mparker.ps.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.521.4588\n + \ 2015-10-05\n
\n \n + \ \n + \ Duty scheduling in public transit\n Martin + Gr\xF6tschel\n Ralf Bornd\xF6rfer\n + \ Andreas L\xF6bel\n + \ This article is about adaptive column generation techniques for the solution + of duty scheduling problems in public transit. The current optimization status + is exploited in an adaptive approach to guide the subroutines for duty generation, + LP resolution, and schedule construction toward relevant parts of 9. large + problem. Computational results for three European scenarios are reported. + \ \n The Pennsylvania State University + CiteSeerX Archives\n Springer\n + \ 2015-10-05\n 2015-01-06\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.521.4588\n + \ http://www.zib.de/groetschel/pubnew/paper/groetschelborndoerferloebel2003.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.525.3200\n + \ 2015-10-05\n
\n \n + \ \n + \ Cournot-Bertrand Competition in a Unionized Mixed Duopoly\n + \ Kangsik Choi\n Wage + Bargaining\n Union\n Cournot-Bertrand + Competition\n Mixed Duopoly\n + \ We investigate a differentiated mixed duopoly in + which private and public firms can choose to strategically set prices or quantities + by facing a union bargaining process. For the case of a unionized mixed duopoly, + only public firm is able to choose a type of contract based on the degree + of substitutability in the equilibrium. Focusing on the case of substitute + goods, we show that Bertrand (respectively, Cournot) competition entails higher + social welfare than Cournot (respectively, Bertrand) competition if the degree + of substitutability is relatively small (respectively, large). Thus, there + are multiple Nash equilibria in the contract stage of the game. As a result, + Singh and Vives \u2019 ranking of social welfare is reversed in a range of + substitution values for which it is a dominant strategy for public firm to + choose either quantity or price contracts.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-01-09\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.525.3200\n + \ http://mpra.ub.uni-muenchen.de/12787/1/08_Cournot_Bertrand_Mixed.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.526.768\n + \ 2015-10-05\n
\n \n + \ \n + \ Development of an Object-oriented Optimization Software + for Industrial Utilization\n Ssu-Yuan Hu, + et al.\n optimization\n software\n + \ object-oriented\n interface + programming\n Conventionally, optimization + problems are usually solved by first deriving governing equations for objective + functions before they are actually processed by optimizing algorithms, and + the procedure for arbitrary problems must be determined case by case. However, + this is usually unpractical to meet industrial needs, because it takes too + long to fully understand the problem academically. Therefore, an alternative + way to solve such an optimization problem emerges by exploring the trends + heuristically with numerical simulations. This paper presents the structure + of an interfacing software developed from a generic perspective of object-oriented + programming. The concept of the structure is to construct an environment for + simulation software, optimizing algorithms and objective functions to share + information and solve the problem together by coordinated cooperation. It + is shown that an optimization problem can be solved efficiently by an easily + constructed and flexibly expandable software with a relatively low cost. Some + practical examples are also listed to demonstrate that the concept possesses + great applicability to fulfill both industrial and academic needs.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-01-10\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.526.768\n + \ http://gra103.aca.ntu.edu.tw/gdoc/93/d89522013a.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.527.1608\n + \ 2015-10-05\n
\n \n + \ \n + \ Branch-And-Cut for the Maximum Feasible Subsystem Problem + \n Marc E. Pfetsch\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-01-11\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.527.1608\n + \ http://webserv.zib.de/Publications/Reports/ZR-05-46.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.528.4097\n + \ 2015-10-05\n
\n \n + \ \n + \ Optimising halting station of passenger railway lines\n + \ Jan-willem Goossens\n Stan + van Hoesel\n Leo Kroon\n Mixed + integer programming\n Railway problems\n + \ Lagrangian relaxation\n In + many real life passenger railway networks, the types of stations and lines + characterise the halting stations of the train lines. Common types are Regional, + Interregional or Intercity. This paper considers the problem of altering the + halts of lines by both upgrading and down-grading stations, such that this + results in less total travel time. We propose a combination of reduction methods, + Lagrangian relaxation, and a problem-specific multiplier adjustment algorithm + to solve the presented mixed integer linear programming formulation. A compu-tational + study of several real-life instances based on problem data of the Dutch passenger + railway operator NS Reizigers is included.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-01-12\n + \ 2004\n text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.528.4097\n + \ http://edocs.ub.unimaas.nl/loader/file.asp?id=886\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.528.426\n + \ 2015-10-05\n
\n \n + \ \n + \ Price Perception of Travel Demand with Cashless Payment + Mode: Evidence from . . . \n Hironori Kato\n + \ ings\n This paper + analyzes the traveler\u2019s price perception of urban rail travel demand + with cashless payment modes. The multinomial logit model is utilized to analyze + urban rail route choice; this choice is compared with respect to the price + perception based on three types of payment modes. I set up two hypotheses + mainly focusing on the farecard. The results indicate that the price perception + does not differ between the farecard and non-farecard holders but differs + among payment methods even in the case of a given route.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-01-12\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.528.426\n + \ http://www.trip.t.u-tokyo.ac.jp/eastsjwp/2008/0801/0801.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.529.1952\n + \ 2015-10-05\n
\n \n + \ \n + \ Consumer Decision-making at an Internet Shopbot\n + \ Michael D. Smith\n Erik + Brynjolfsson\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-01-12\n + \ 2001\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.529.1952\n + \ http://ebusiness.mit.edu/erik/CDIS 2001-07-24a.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.53.2011\n + \ 2015-10-04\n
\n \n + \ \n + \ Gallai&apos;s Conjecture for Disconnected Graphs\n + \ Nathaniel Dean\n Mekkia + Kouider\n The path number p(G) of a + graph G is the minimum number of paths needed to partition the edge set of + G. Gallai conjectured that p(G) b n+1 2 c for every connected graph G + of order n. Because of the graph consisting of disjoint triangles, the best + one could hope for in the disconnected case is p(G) b 2 3 nc. We prove the + sharper result that p(G) 1 2 u+ b 2 3 gc where u is the number of odd + vertices and g is the number of nonisolated even vertices. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2007-11-22\n + \ 1996\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.53.2011\n + \ http://www.caam.rice.edu/~nated/publics/gallai.ps\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.531.462\n + \ 2015-10-05\n
\n \n + \ \n + \ Branch-And-Cut for the Maximum Feasible Subsystem Problem\n + \ Marc E. Pfetsch\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-01-14\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.531.462\n + \ http://opus4.kobv.de/opus4-zib/frontdoor/deliver/index/docId/879/file/ZR-05-46.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.532.8868\n + \ 2015-10-05\n
\n \n + \ \n + \ Dynamic programming for stochastic target problems and + geometric flows\n H. Mete Soner\n + \ Nizar Touzi\n Key + words\n Stochastic control\n + \ Given a controlled stochastic process, the reachability + set is the collection of all initial data from which the state process can + be driven into a target set at a specified time. Differential properties of + these sets are studied by the dynamic programming principle which is proved + by the Jankov-von Neumann measurable selection theorem. This principle implies + that the reachability sets satisfy a geometric partial differen-tial equation, + which is the analogue of the Hamilton-Jacobi-Bellman equation for this problem. + By appropriately choosing the controlled process, this connection provides + a stochastic representation for mean curvature type geometric flows. Another + application is the super-replication problem in financial mathematics. Several + applications in this direction are also discussed.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-01-15\n + \ 2002\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.532.8868\n + \ http://www.cmap.polytechnique.fr/~touzi/st00.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.533.9545\n + \ 2015-10-05\n
\n \n + \ \n + \ Multicriteria Planar Ordered Median Problems \n + \ S. Nickel\n J. Puerto\n + \ A. M. Rodri\u0301guez-Chi\u0301a\n A. + Weissler\n In this paper, we deal + with the determination of the entire set of Pareto solutions of location problems + involving Q general criteria. These criteria include median, center, or centdian + objec-tive functions as particular instances. We characterize the set of Pareto + solutions of all these multicriteria problems for any polyhedral gauge. An + efficient algorithm is developed for the planar case and its complexity is + established. Extensions to the nonconvex case are also considered. The proposed + approach is more general than previously published approaches to multicriteria + location problems. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-01-16\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.533.9545\n + \ http://grupo.us.es/gpb97/curri_sevilla/doc/jota_multi_OMP.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.534.2207\n + \ 2015-10-04\n
\n \n + \ \n + \ Network information flow\n Rudolf + Ahlswede\n Ning Cai\n Shuo-yen + Robert Li\n Raymond W. Yeung\n + \ We introduce a new class of problems called network + information flow which is inspired by computer network applica-tions. Consider + a point-to-point communication network on which a number of information sources + are to be mulitcast to certain sets of destinations. We assume that the information + sources are mu-tually independent. The problem is to characterize the admissible + coding rate region. This model subsumes all previously studied models along + the same line. In this paper, we study the problem with one information source, + and we have obtained a simple characterization of the admissible coding rate + region. Our result can be regarded as the Max-flow Min-cut Theorem for network + information flow. Contrary to one\u2019s intuition, our work reveals that + it is in general not optimal to regard the information to be multicast as + a \u201Cfluid\u201D which can simply be routed or replicated. Rather, by employing + coding at the nodes, which we refer to as network coding, bandwidth can in + general be saved. This finding may have significant impact on future design + of switching systems. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2015-01-17\n + \ 2000\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.534.2207\n + \ http://www.ee.caltech.edu/EE/Courses/EE126/handouts/Ahlswede.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.539.4930\n + \ 2015-10-05\n
\n \n + \ \n + \ \tThe Cournot-Bertrand Profit Differential: A Reversal + Result in a Differentiated Duopoly with Wage Bargaining \n + M\xF3nica Correa L\xF3pez, Robin A. Naylor \n Di%erentiated + duopoly\n Wage bargaining\n + \ Cournot\n Bertrand\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-01-23\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.539.4930\n + \ http://www2.warwick.ac.uk/fac/soc/economics/staff/academic/naylor/publications/eer2004.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.54.2060\n + \ 2015-10-05\n
\n \n + \ \n + \ Graph Partitioning -- A Survey\n Ulrich + Elsner\n auf massiv parallelen Rechnern\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-22\n + \ 1997\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.54.2060\n + \ http://www.tu-chemnitz.de/~elsner/pre-A4.ps.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.540.3619\n + \ 2015-10-05\n
\n \n + \ \n + \ Privatization, Government\u2019s Preference and Unionization + Structure: A Mixed Oligopoly Approach\n Kangsik + Choi\n Government\u2019s Preference\n + \ Social Welfare\n Tax\n + \ Privatization\n Union\n + \ By introducing the government\u2019s preference + for tax revenues into the theoretical framework of unionized mixed oligopolies, + this study investigates the efficiency of privatization. The results show + that (i) regardless of the government\u2019s preference for tax revenues, + its incentive to privatize a public firm depends on the number of the private + firms and (ii) social welfare can decrease with an increase in the number + of firms depending on the level of government\u2019s preference for tax revenue. + Moreover, if the number of private firms and the government\u2019s preference + for tax revenue are sufficiently small, then social welfare under a unionized + priva-tized oligopoly is greater than under a unionized mixed oligopoly while + the government has an incentive not to privatize the public firm, and vice + versa if only the number of firms is sufficiently large.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-01-24\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.540.3619\n + \ http://mpra.ub.uni-muenchen.de/13028/1/MPRA_paper_13028.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.544.5287\n + \ 2015-10-05\n
\n \n + \ \n + \ Groups acting on locally finite graphs -- a survey of + the infinitely ended case \n R. M\xF6ller\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-01-30\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.544.5287\n + \ http://homepage.univie.ac.at/bernhard.kroen/moeller_surveyends.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.549.247\n + \ 2015-10-05\n
\n \n + \ \n + \ ANALOGUES OF CAYLEY GRAPHS FOR TOPOLOGICAL GROUPS\n + \ Bernhard Kr\xF6n , R\xF6gnvaldur G. M\xF6ller\n + \ We define for a compactly generated totally disconnected + locally compact group a graph, called a rough Cayley graph, that is a quasi-isometry + invariant of the group. This graph carries information about the group structure + in an analogue way as the ordinary Cayley graph for a finitely generated group. + With this construction the machinery of geometric group theory can be applied + to topological groups. This is illustrated by a study of groups where the + rough Cayley graph has more than one end and a study of groups where the rough + Cayley graph has polynomial growth.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-02-04\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.549.247\n + \ http://www.math.uni-hamburg.de/research/papers/hbm/hbm2006259.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.55.2065\n + \ 2015-10-05\n
\n \n + \ \n + \ Very Large-Scale Linear Programming: A Case Study In Exploiting + Both Parallelism And Distributed Memory\n Anne + Kilgore\n DISTRIBUTED MEMORY\n + \ There has been limited success with parallel implementations + of both the simplex method and interior point methods for solving real-world + linear programs. Experience with a parallel implementation of CPLEX, a state + of the art implementation of the simplex method, on an Intel distributed-memory + multiprocessor machine will be described. We will exploit the structure of + the class of problems arising from airline crew scheduling. A particular instance + with 12,753,313 variables will be studied. This instance is too large to fit + on current sequential machines in standard linear programming data structures. + We will show how our implementation exploits both distributed memory and parallelism + and allows the full problem to be kept in memory. Finally, we will discuss + algorithmic ideas that our implementation affords us and show results for + a variant of the greatest decrease al...\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-22\n + \ 1993\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.55.2065\n + \ ftp://softlib.rice.edu/pub/CRPC-TRs/reports/CRPC-TR93354-S.ps.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.55.3369\n + \ 2015-10-05\n
\n \n + \ \n + \ Maxmin Location of an Anchored Ray in 3-Space and Related + Problems (Extended Abstract)\n Frank Follert\n + \ We consider the problem of locating a ray emanating + from the origin of 3-space such as to maximize the minimum weighted Euclidean + distance to a set of weighted obstacles (points, lines or line segments). + We present algorithms based on the parametric search paradigm which run in + O(n log 4 n) time in the case of point obstacles, and in O(n 2 log 2 + \ n) (O(n 2 log 2 n 2 ff(n) )) time in the case of line (segment) obstacles. + We also show that for practically interesting restricted settings of the line + obstacle problem, subquadratic algorithms can be obtained. Furthermore we + discuss some related problems. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-22\n + \ application/postscript\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.55.3369\n + \ http://www-hotz.cs.uni-sb.de/~follert/publications/MLAR.ps.Z\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.55.6492\n + \ 2015-10-05\n
\n \n + \ \n + \ Beam: A Tool for Complex Update Operations on File Trees\n + \ Thomas Eirich\n Beam + is a program that synthesizes file trees from one or more source file trees. + An instruction file contains the synthesis rules. The simplest form of a synthesis + is making the destination tree an exact copy of a single source tree. If the + destination tree already exists, it is verified for consistency with the sources + and the synthesis rules. Updates occur when inconsistencies are detected. + We present a concept for automated updates of heterogeneous workstation clusters + using beam&apos;s powerful synthesis facilities. A decomposition of a + UNIX installation into separately maintainable file trees is proposed. Beam + then recomposes these file trees to synthesize individual UNIX installations + for each workstation. Another decomposition concept of beam are packs. A file + tree can be grouped into packs of files. Usually, files of one pack are related + to some common functionality of the software. Customizing a software package + to individual needs is reduced to the selection of an appropriate se...\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2007-11-22\n + \ 1994\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.55.6492\n + \ http://www4.informatik.uni-erlangen.de/TR/ps/TR-I4-94-08.ps.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.550.1705\n + \ 2015-10-05\n
\n \n + \ \n + \ Integrated Optimization of Hardware Configuration and + Capacity Dimensioning in SDH and opaque WDM networks\n Alexander + Kr\xF6ller, Roland Wess\xE4ly\n Integer + Programming\n Network Models\n + \ Network Planning\n Routing\n + \ Resource Allocation\n Survivability\n + \ Topological Design\n Sonet/SDH + Networks\n Optical Networks\n + \ We suggest a new model for the design of telecommunication + networks which integrates decisions about the topology, configuration of the + switching hardware, link dimen-sioning, and protected routing of communication + demands. Applying the branch-and-cut-algorithm implemented in our network + planning and optimization tool DISCNET, we demonstrate that real-world based + network planning instances of such an enhanced model can be solved.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-02-05\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.550.1705\n + \ http://www.zib.de/Publications/Reports/ZR-03-49.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.550.2084\n + \ 2015-10-05\n
\n \n + \ \n + \ Polyhedral investigations on stable multi-sets\n + \ Arie M. C. A. Koster \n Adrian + Zymolka\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-02-05\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.550.2084\n + \ http://webserv.zib.de/Publications/Reports/ZR-03-10.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.551.8428\n + \ 2015-10-05\n
\n \n + \ \n + \ STOCHASTIC TARGET PROBLEMS, DYNAMIC PROGRAMMING, AND VISCOSITY + SOLUTIONS \n H. Mete Soner, Nizar Touzi\n + \ Key words. stochastic control\n dynamic + programming\n discontinuous viscosity solutions\n + \ forward- backward SDEs\n + \ In this paper, we define and study a new class of optimal stochastic control + problems which is closely related to the theory of backward SDEs and forward-backward + SDEs. The controlled process (X\u03BD, Y \u03BD) takes values in Rd\xD7R and + a given initial data for X\u03BD(0). Then the control problem is to find the + minimal initial data for Y \u03BD so that it reaches a stochastic target at + a specified terminal time T. The main application is from financial mathematics, + in which the process X\u03BD is related to stock price, Y \u03BD is the wealth + process, and \u03BD is the portfolio. We introduce a new dynamic programming + principle and prove that the value function of the stochastic target problem + is a discontinuous viscosity solution of the associated dynamic programming + equation. The boundary conditions are also shown to solve a first order variational + inequality in the discontinuous viscosity sense. This provides a unique characterization + of the value function which is the minimal initial data for Y \u03BD.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-02-06\n + \ 2002\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.551.8428\n + \ http://www.cmap.polytechnique.fr/~touzi/st99siam.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.556.3255\n + \ 2015-10-05\n
\n \n + \ \n + \ Introduction to Ends of Graphs\n Bernhard + Kr\xF6n\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-02-10\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.556.3255\n + \ http://homepage.univie.ac.at/bernhard.kroen/ends_22_07_2005.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.557.2666\n + \ 2015-10-05\n
\n \n + \ \n + \ Polyhedral investigations on stable multi-sets\n + \ Arie M. C. A. Koster\n + Adrian Zymolka\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-02-12\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.557.2666\n + \ http://www.zib.de/Publications/Reports/ZR-03-11.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.564.7670\n + \ 2015-10-05\n
\n \n + \ \n + \ The Line Connectivity Problem \n Ralf + Bornd\xF6rfer\n Marika Neumann\n + \ Marc E. Pfetsch\n This + paper introduces the line connectivity problem, a generalization of the Steiner + tree problem and a special case of the line planning problem. We study its + complexity and give an IP formulation in terms of an exponential number of + constraints associated with \u201Dline cut constraints\u201D. These inequalities + can be separated in polynomial time. We also generalize the Steiner partition + inequalities. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-03-03\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.564.7670\n + \ http://opus4.kobv.de/opus4-zib/frontdoor/deliver/index/docId/1082/file/ZR_08_31.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.566.7422\n + \ 2015-10-05\n
\n \n + \ \n + \ Reconfigurable Hardware SAT Solving\n Wang + Zhanqing\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-03-06\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.566.7422\n + \ http://www.comp.nus.edu.sg/~henz/students/wang_zhangqing.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.567.7477\n + \ 2015-10-05\n
\n \n + \ \n + \ Best Upgrade Plans for Single and Multiple Source-Destination + Pairs\n Yimin Lin\n Kyriakos + Mouratidis\n In this paper, we study + Resource Constrained Best Upgrade Plan (BUP) com-putation in road network + databases. Consider a transportation network (weighted graph) G where a subset + of the edges are upgradable, i.e., for each such edge there is a cost, which + if spent, the weight of the edge can be reduced to a specific new value. In + the single-pair version of BUP, the input includes a source and a destination + in G, and a budget B (resource constraint). The goal is to identify which + upgradable edges should be upgraded so that the shortest path distance between + source and destination (in the updated network) is minimized, without exceeding + the available budget for the upgrade. In the multiple-pair version of BUP, + a set Q of source-destination pairs is given, and the problem is to choose + for upgrade those edges that lead to the smallest sum of shortest path distances + across all pairs in Q, subject to budget constraint B. In addition to transportation + networks, the BUP query arises in other domains too, such as telecommunications. + We propose a framework for BUP processing and evaluate it with experiments + on large, real road networks.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-03-06\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.567.7477\n + \ http://www.mysmu.edu/faculty/kyriakos/GeoInformatica14-BUP.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.570.1604\n + \ 2015-10-05\n
\n \n + \ \n + \ Reformulation and decomposition of integer programs \n + \ Fran\xE7ois Vanderbeck\n Laurence + A. Wolsey\n Integer program\n + \ Lagrangean relaxation\n column + generation\n branch-and-price\n + \ extended formulation\n Benders + &apos; algorithm\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-03-11\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.570.1604\n + \ http://www.uclouvain.be/cps/ucl/doc/core/documents/coredp2009_16.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.570.4320\n + \ 2015-10-05\n
\n \n + \ \n + \ Reformulation and decomposition of integer programs\n + \ Francois Vanderbeck\n Laurence + A. Wolsey\n In this survey we examine + ways to reformulate integer and mixed integer programs. Typically, but not + exclusively, one reformulates so as to obtain stronger linear programming + relaxations, and hence better bounds for use in a branch-and-bound based algorithm. + First we cover in detail reformulations based on decomposition, such as Lagrangean + relaxation, Dantzig-Wolfe and the resulting column generation and branch-and-price + algorithms. This is followed by an examination of Benders \u2019 type algorithms + based on projection. Finally we discuss in detail extended formulations involving + additional variables that are based on problem structure. These can often + be used to provide strengthened a priori formulations. Reformulations obtained + by adding cutting planes in the original variables are not treated here. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-03-11\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.570.4320\n + \ http://www.math.u-bordeaux1.fr/~fvanderb/papers/refDecompIPworkingPaper.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.571.7605\n + \ 2015-10-05\n
\n \n + \ \n + \ A Frequency Assignment Problem in Cellular Phone Networks + (Extended Abstract)\n Andreas Eisenbl\xE4tter + \ \n Frequency Assignment Problem\n + \ Cellular Phone Network\n Heuris- + tics\n Graph Coloring\n We + present a mathematical formulation of a frequency assignment problem encountered + in cellular phone networks: frequencies have to be assigned to stationary + transceivers (car-riers) such that as little interference as possible is induced + while obeying several technical and legal restrictions. The optimization problem + isNP-hard, and no good approximation can be guaranteed, unless P =NP. We sketch + some starting and improvement heuristics, and report on their successful application + for solving the frequency assignment problem under consideration. Computational + results on real-world instances with up to 2877 carriers and 50 frequencies + are presented.\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-03-12\n + \ 1997\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.571.7605\n + \ http://opus4.kobv.de/opus4-zib/frontdoor/deliver/index/docId/296/file/SC-97-27.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.571.868\n + \ 2015-10-05\n
\n \n + \ \n + \ Equilibrium Mode of Competition in Unionize Oligopolies: + Do Unions Act as Commitment Device to Cournot Outcomes? \n Constantine + Manasakis\n Minas Vlassis\n + \ Oligopoly\n Monopoly + unions\n Equilibrium mode of competition\n + \ In contrast with previous studies, we postulate + that there is no ex-ante commitment over the type of contract (i.e., price + or quantity) which a firm offers consumers. In the context of a unionized + symmetric duopoly we instead argue that the mode of competition which in equilibrium + emerges is the one that entails the most beneficial outcome for both the firm + and its labour union, in each firm/union pair, given the choice of the rival + pair. Our findings suggest that monopoly unions with risk-averse/neutral members + may effectively act as commitment devices driving firms to the symmetric Cournot + mode of competition.\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-03-12\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.571.868\n + \ http://www.soc.uoc.gr/crete2006/PAPERS_CRETE2006/Manasakis_CRETE2006.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.571.869\n + \ 2015-10-05\n
\n \n + \ \n + \ A Guide to the Discharging Method\n Daniel + W. Cranston, Douglas B. West\n We provide + a \u201Chow-to\u201D guide to the use and application of the Discharging Method. + Our aim is not to exhaustively survey results that have been proved by this + technique, but rather to demystify the technique and facilitate its wider + use. Along the way, we present some new proofs and new problems. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-03-12\n + \ 2013\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.571.869\n + \ http://www.math.illinois.edu/~dwest/pubs/discharg.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.572.857\n + \ 2015-10-04\n
\n \n + \ \n + \ Random planar graphs\n Colin + McDiarmid\n Angelika Steger \n + \ Dominic J. A. Welsh \n Random\n + \ Labelled\n Planar\n + \ Graph\n Counting\n + \ We study various properties of the random planar + graph Rn, drawn uniformly at random from the class Pn of all simple planar + graphs on n labelled vertices. In particular, we show that the probability + thatRn is connected is bounded away from 0 and from 1. We also show for example + that each positive integer k, with high probability Rn has linearly many vertices + of a given degree, in each embedding Rn has linearly many faces of a given + size, and Rn has exponentially many automorphisms. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2015-03-13\n + \ 2005\n text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.572.857\n + \ http://www.stats.ox.ac.uk/people/academic_staff/colin_mcdiarmid/?a=4091\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.574.2237\n + \ 2015-10-04\n
\n \n + \ \n + \ A Convolution Formula for the Tutte Polynomial\n + \ W. Kook\n V. Reiner\n + \ D. Stanton\n AM\n + \ Let M be a finite matroid with rank function r. + We will write AM when we mean that A is a subset of the ground set of M, and + write M|A and MA for the matroids obtained by restricting M to A and contracting + M on A respectively. Let M * denote the dual matroid to M. (See [1] for definitions). + The main theorem is\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2015-03-15\n + \ 2000\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.574.2237\n + \ http://www.math.uri.edu/~andrewk/convolution.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.574.5144\n + \ 2015-10-04\n
\n \n + \ \n + \ The cycle space of a 3-connected locally finite graph + is generated by its finite and infinite peripheral circuits\n Henning + Bruhn \n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2015-03-16\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.574.5144\n + \ http://www.math.uni-hamburg.de/home/bruhn/papers/LocFinTutte.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.576.177\n + \ 2015-10-04\n
\n \n + \ \n + \ MacLane\u2019s planarity criterion for locally finite + graphs\n Henning Bruhn\n Maya + Stein\n Infinite graphs\n Planarity\n + \ Cycle space\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2015-03-18\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.576.177\n + \ http://www.math.uni-hamburg.de/home/diestel/papers/others/MLBS.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.576.2033\n + \ 2015-10-04\n
\n \n + \ \n + \ Path decompositions and Gallai\u2019s conjecture\n + \ Genghua Fan\n Path\n + \ Decomposition\n Gallai\u2019s + conjecture\n LetG be a connected simple + graph on n vertices. Gallai\u2019s conjecture asserts that the edges ofG can + be decomposed into n2 paths. Let H be the subgraph induced by the vertices + of even degree in G. Lov\xE1sz showed that the conjecture is true ifH contains + at most one vertex. Extending Lov\xE1sz\u2019s result, Pyber proved that the + conjecture is true if H is a forest. A forest can be regarded as a graph in + which each block is an isolated vertex or a single edge (and so each block + has maximum degree at most 1). In this paper, we show that the conjecture + is true if H can be obtained from the emptyset by a series of so-defined -operations. + As a corollary, the conjecture is true if each block of H is a triangle-free + graph of maximum degree at most 3.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2015-03-18\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.576.2033\n + \ http://www.math.u-szeged.hu/~hajnal/seminars/kombszem/cikkek/szemi_gallai.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.576.2761\n + \ 2015-10-04\n
\n \n + \ \n + \ The cycle space of a 3-connected locally finite graph + is generated by its finite and infinite peripheral circuits\n Henning + Bruhn\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2015-03-18\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.576.2761\n + \ http://www.math.uni-hamburg.de/home/diestel/papers/others/BruhnTutte.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.577.9673\n + \ 2015-10-05\n
\n \n + \ \n + \ Combined Network Design and Multiperiod Pricing: Modeling, + Solution Techniques, and Computation\n Daniel + Bienstock\n Olga Raskina\n + \ Iraj Saniee\n Qiong + Wang\n In this paper we describe an + efficient algorithm for solving novel optimization models arising in the context + of multiperiod capacity expansion of optical networks. We assume that the + network operator must make investment decisions over a multiperiod planning + horizon while facing rapid changes in transmission technology, as evidenced + by a steadily decreasing per-unit cost of capacity. We deviate from traditional + and monopolistic models in which demands are given as input parameters, and + the objective is to minimize capacity deployment costs. Instead, we assume + that the carrier sets end-to-end prices of bandwidth at each period of the + planning horizon. These prices determine the demands that are to be met, using + a plausible and explicit price-demand relationship; the resulting demands + must then be routed, requiring an investment in capacity. The objective of + the optimization is now to simultaneously select end-to-end prices of bandwidth + and network capacities at each period of the planning horizon, so as to maximize + the overall net present value of expanding and operating the network. In the + case of typical large-scale optical networks with protection requirements, + the resulting optimization problems pose significant challenges to standard + optimization techniques. The complexity of the model, its nonlinear nature, + and the large size of realistic problem instances motivates the development + of efficient and scalable solution techniques. We show that while general-purpose + nonlinear solvers are typically not adequate for the task, a specialized decomposition + scheme is able to handle large-scale instances of this problem in reasonable + time, producing solutions whose net present value is within a small tolerance + of the optimum.\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-03-22\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.577.9673\n + \ http://ect.bell-labs.com/who/iis/publications/papers/1526-5463-2006-54-02-0261.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.578.8085\n + \ 2015-10-04\n
\n \n + \ \n + \ Mutually embeddable graphs and the tree alternative conjecture\n + \ Anthony Bonato \n Claude + Tardif \n Rayless tree\n Mutually + embeddable\n Self-embedding\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-04\n 2015-03-23\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.578.8085\n + \ http://www.math.ryerson.ca/~abonato/bonatotardif_jctb.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.578.8725\n + \ 2015-10-05\n
\n \n + \ \n + \ Using AI for Olympic Equestrian Event Preparation\n + \ Andy Hon Wai Chun\n This + paper describes our experience in using modern Web 2.0 architecture, lightweight + Python frameworks, and rapid prototyping to create an AI rostering and workforce + management system to help prepare for the 2008 Beijing Olympic Equestrian + Events, which will be held in Hong\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-03-23\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.578.8725\n + \ http://www.cs.cityu.edu.hk/~hwchun/research/PDF/iaai_2008.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.583.7110\n + \ 2015-10-05\n
\n \n + \ \n + \ Planning Problems in Public Transit \n Ralf + Bornd\xF6rfer\n Martin Gr\xF6tschel\n + \ Ulrich Jaeger\n Every + day, millions of people are transported by buses, trains, and airplanes in + Germany. Public transit (PT) is of major importance for the quality of life + of individuals as well as the productivity of entire regions. Quality and + efficiency of PT systems depend on the political framework (state-run, mar-ket + oriented) and the suitability of the infrastructure (railway tracks, airport + locations), the existing level of service (timetable, flight schedule), the + use of adequate technologies (information, control, and booking systems), + and the best possible deployment of equipment and resources (energy, vehicles, + crews). The decision, planning, and optimization problems arising in this + context are often gigantic and \u201Cscream \u201D for mathematical support + because of their complexity. This article sketches the state and the relevance + of mathematics in planning and operating public transit, describes today\u2019s + challenges, and suggests a number of innovative actions. The current contribution + of mathematics to public transit is \u2014 depending\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-04-02\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.583.7110\n + \ http://opus4.kobv.de/opus4-zib/frontdoor/deliver/index/docId/1125/file/ZR_09_13.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.584.3260\n + \ 2015-10-05\n
\n \n + \ \n + \ Models for Fare Planning in Public Transport \n + \ Ralf Bornd\xF6rfer\n Marika + Neumann\n Marc Pfetsch\n The + optimization of fare systems in public transit allows to pursue objectives + such as the maximization of demand, revenue, profit, or social welfare. We + propose a non-linear optimization approach to fare planning that is based + on a detailed discrete choice model of user behavior. The approach allows + to analyze different fare structures, optimization objectives, and operational + scenarios involving, e.g., subsidies. We use the resulting models to compute + optimized fare systems for the city of Potsdam, Germany. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-04-03\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.584.3260\n + \ http://www.zib.de/Publications/Reports/ZR-08-16.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.586.2850\n + \ 2015-10-05\n
\n \n + \ \n + \ Solving Public Transit Scheduling Problems\n + \ Marta Mesquita\n Margarida + Moz\n Ana Paias\n Jos\xE9 + Paix\xE3o\n Margarida Pato\n + \ Ana Resp\xEDcio\n binary + linear programming\n vehicle scheduling\n + \ crew scheduling\n Operational + planning within public transit companies has been extensively tackled but + still remains a challenging area for operations research models and techniques. + This phase of the planning process comprises vehicle scheduling, crew scheduling + and rostering problems. In this paper, a new integer mathematical formulation + to describe the integrated vehicle-crew-rostering problem is presented. The + method proposed to solve this multi-objective problem is a sequential algorithm + considered within a preemptive goal programming framework that starts from + the solution of an integrated vehicle and crew scheduling problem and ends + with the solution of a driver rostering problem. Feasible solutions for the + vehicle and crew scheduling problem are obtained by combining a column generation + scheme with a branch-and-bound method. These solutions are the input of the + rostering problem, which is tackled through a mixed binary linear programming + approach. An application to real data of a Portuguese bus company is reported + and shows the importance of integrating the three scheduling problems.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-04-07\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.586.2850\n + \ http://homepages.di.fc.ul.pt/~respicio/papers/CIO-tr-1.2008.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.588.8981\n + \ 2015-10-05\n
\n \n + \ \n + \ Reformulation and decomposition of integer programs\n + \ Fran\xE7ois Vanderbeck\n Laurence + A. Wolsey\n Integer program\n + \ Lagrangean relaxation\n column + generation\n branch-and-price\n + \ extended formulation\n Benders + &apos; algorithm\n In this survey + we examine ways to reformulate integer and mixed integer programs. Typically, + but not exclusively, one reformulates so as to obtain stronger linear programming + relaxations, and hence better bounds for use in a branch-and-bound based algorithm. + First we cover in detail reformulations based on decomposition, such as Lagrangean + relaxation, Dantzig-Wolfe column generation and the resulting branch-and-price + algorithms. This is followed by an examination of Benders\u2019 type algorithms + based on pro jection. Finally we discuss in detail extended formulations involving + additional variables that are based on problem structure. These can often + be used to provide strengthened a priori formulations. Reformulations obtained + by adding cutting planes in the original variables are not treated here.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-06-17\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.588.8981\n + \ http://www.ecore.be/DPs/dp_1238577331.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.589.8328\n + \ 2015-10-05\n
\n \n + \ \n + \ ENDS -- GROUP THEORETICAL AND TOPOLOGICAL ASPECTS\n + \ Bernhard Kr\xF6n\n Elmar + Teufl\n This is a survey of topological, + group theoretical and some graph theoretical aspects of ends. After discussing + the notion of ends in topology, we consider ends of graphs and show that the + metric end topology of connected graphs is metrizable. The \u201C1\u20132\u2013Cantor + theorem\u201D is proved for graphs whose ends are all limit ends, that is, + ends which are accumulation points of an orbit of the group of automorphisms. + We also discuss ends of finitely generated groups, Stallings\u2019 Structure + Theorem and further applications concerning the cycle space of a graph and + random walks. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-06-17\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.589.8328\n + \ http://homepage.univie.ac.at/bernhard.kroen/kroen_teufl_ends.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.59.3318\n + \ 2015-10-05\n
\n \n + \ \n + \ LGen --- A Lattice-Based Candidate Set Generation Algorithm + For I/O Efficient Association Rule Mining \n Chi-lap + Yip\n K. K. Loo\n Ben + Kao\n David Cheung\n C. + K. Cheng\n Data mining\n association + rules\n lattice\n Apriori\n + \ LGen\n Most algorithms + for association rule mining are variants of the basic Apriori algorithm [1]. + One characteristic of these Apriori-based algorithms is that candidate itemsets + are generated in rounds, with the size of the itemsets incremented by one + per round. The number of database scans required by Apriori-based algorithms + thus depends on the size of the largest large itemsets. In this paper we + devise a more general candidate set generation algorithm, LGen,which generates + candidate itemsets of multiple sizes during each database scan. Weshow that, + given a reasonable set of suggested large itemsets, LGen can significantly + \ reduce the number of I/O passes required. In the best cases, only two passes + are sufficient to discover all the large itemsets irrespective of the size + of the largest ones.\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-05\n + \ 1999\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.59.3318\n + \ http://www.cs.hku.hk/research/techreps/document/TR-99-01.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.59.3319\n + \ 2015-10-05\n
\n \n + \ \n + \ Crossings in Clustered Level Graphs\n Michael + Forster\n Contents iii\n Clustered + graphs are an enhanced graph model with a recursive clustering of the vertices + according to a given nesting relation. This prime technique for expressing + coherence of certain parts of the graph is used in many applications, such + as biochemical pathways and UML class diagrams. For directed clustered graphs + usually level drawings are used, leading to clustered level graphs. In this + thesis we analyze the interrelation of clusters and levels and their influence + on edge crossings and cluster/edge crossings. We present a new method for + the application of two-level crossing reduction algorithms to clustered level + graphs. Our approach is optimal in the sense that it does not introduce unnecessary + crossings, and therefore produces fewer crossings as previous results. In + contrast to other approaches, our extension scheme retains the optimality + of a one-sided two-level crossing reduction algorithm when extended to clustered + level graphs. We also give a new algorithm for constrained one-sided two-level + crossing reduction in level graphs, which appears as a subproblem in clustered + crossing reduction. Here, the relative position of some vertex pairs on the + second level is fixed. Based on the barycenter heuristic, we present a new + algorithm that runs in quadratic time and generates fewer crossings than existing + simple extensions. It is significantly faster than previous advanced algorithms, + while it compares well in terms of crossing number and is easy to implement. + Minimizing crossings also leads to the concept of planarity. Planar drawings + are easy to understand and thus preferable to non-planar drawings. Variations + of planarity have been studied intensively for level graphs and clustered + graphs. We combine these concepts and analyze a new problem: clustered level + planarity. We give an efficient algorithm that decides clustered level planarity + of elementary clustered level graphs and computes a clustered level embedding, + if one exists.\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-05\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.59.3319\n + \ http://www.michael-forster.de/publications/diss.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.592.3890\n + \ 2015-10-04\n
\n \n + \ \n + \ Randomly Colouring graphs (a Combinatorial View) \n + \ Jean-Se\u0301bastien Sereni \n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2015-06-29\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.592.3890\n + \ http://www.liafa.univ-paris-diderot.fr/~sereni/Articles/ser08.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.593.5335\n + \ 2015-10-05\n
\n \n + \ \n + \ New effective neighborhoods for the permutation flow shop + problem\n Laurent Deroussi\n + \ Michel Gourgand\n Sylvie + Norre\n Flow-Shop Problem\n + \ Metaheuristic\n Neighborhood\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-07-01\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.593.5335\n + \ http://hal.inria.fr/docs/00/67/80/53/PDF/RR-06-09b.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.597.5453\n + \ 2015-10-05\n
\n \n + \ \n + \ NETPAD: An interactive graphics system for network modeling + and optimization\n Nathaniel Dean\n + \ Monika Mevenkamp\n Clyde + L. Monma\n Network optimization\n + \ Graphical user interface (GUI\n Software\n + \ Algorithms l. Overview\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-07-06\n + \ 1995\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.597.5453\n + \ http://www.monma.com/clyde/docs/NAIG, 1995.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.599.4785\n + \ 2015-10-04\n
\n \n + \ \n + \ OLD AND NEW GENERALIZATIONS OF LINE GRAPHS\n + \ Jay Bagga\n Line + graphs have been studied for over seventy years. In 1932, H. Whitney showed + that for connected graphs, edge-isomorphism implies isomorphism except for + K3 and K1,3. The line graph transformation is one of the most widely studied + of all graph transformations. In its long history, the concept has been rediscovered + several times, with different names such as derived graph, interchange graph, + and edge-to-vertex dual. Line graphs can also be considered as intersection + graphs. Several variations and generalizations of line graphs have been proposed + and studied. These include the concepts of total graphs, path graphs, and + others. In this brief survey we describe these and some more recent generalizations + and extensions including super line graphs and triangle graphs.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2015-07-07\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.599.4785\n + \ http://www.emis.de/journals/HOA/IJMMS/Volume2004_29/398216.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.6.9040\n + \ 2015-10-05\n
\n \n + \ \n + \ Pattern Search Methods for Linearly Constrained Minimization\n + \ Robert Michael Lewis\n Virginia + Torczon\n We extend pattern search methods + to linearly constrained minimization. We develop a general class of feasible + point pattern search algorithms and prove global convergence to a Karush-KuhnTucker + point. As in the case of unconstrained minimization, pattern search methods + for linearly constrained problems accomplish this without explicit recourse + to the gradient or the directional derivative. Key to the analysis of the + algorithms is the way in which the local search patterns conform to the geometry + of the boundary of the feasible region.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2007-11-21\n + \ 1998\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.6.9040\n + \ http://techreports.larc.nasa.gov/icase/1998/icase-1998-3.ps.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.60.1691\n + \ 2015-10-05\n
\n \n + \ \n + \ Planning for Steerable Bevel-tip Needle Insertion through + 2D Soft Tissue with Obstacles\n Ron Alterovitz\n + \ Ken Goldberg\n Allison + Okamura \n We explore motion planning + for a new class of highly flexible bevel-tip medical needles that can be steered + to previously unreachable targets in soft tissue. Planning for these procedures + is difficult because the needles bend during insertion and cause the surrounding + soft tissues to displace and deform. In this paper, we develop a planning + algorithm for insertion of highly flexible bevel-tip needles into soft tissues + with obstacles in a 2D imaging plane. Given an initial needle insertion plan + specifying location, orientation, bevel rotation, and insertion distance, + the planner combines soft tissue modeling and numerical optimization to generate + a needle insertion plan that compensates for simulated tissue deformations, + locally avoids polygonal obstacles, and minimizes needle insertion distance. + The simulator computes soft tissue deformations using a finite element model + that incorporates the effects of needle tip and frictional forces using a + 2D mesh. We formulate the planning problem as a constrained nonlinear optimization + problem that is locally minimized using a penalty method that converts the + formulation to a sequence of unconstrained optimization problems. We apply + the planner to bevel-right and bevel-left needles and generate plans for targets + that are unreachable by rigid needles.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-05\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.60.1691\n + \ http://www.ieor.berkeley.edu/~ron/./research/papers/Alterovitz2005_ICRA.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.606.8789\n + \ 2015-10-05\n
\n \n + \ \n + \ Note on the Continuity of M-convex and L-convex Functions + in Continuous Variables\n Kazuo Murota\n + \ Akiyoshi Shioura\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-07-08\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.606.8789\n + \ http://www.keisu.t.u-tokyo.ac.jp/research/techrep/data/2008/METR08-12.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.61.1276\n + \ 2015-10-05\n
\n \n + \ \n + \ Orienting Toleranced Polygonal Parts\n Srinivas + Akella\n Matthew T. Mason\n + \ Parts manufactured to tolerances have variations + in shape. Most previous work in robotic manipulation assumes that parts do + not have shape variations. Orienting devices such as bowl feeders often fail + due to variations in part shape. We study the effects of uncertainty in part + shape on orienting to develop systems that can orient toleranced polygonal + parts. We present a tolerance model in which the part center of mass and vertices + lie in circular uncertainty zones around their nominal positions. The variations + in part shape are characterized by the tolerance model and the part&apos;s + nominal shape. We describe the nondeterminism that arises due to part shape + uncertainty for a conveyor-based orienting system and show that sensor-based + and sensorless orienting plans can exist for toleranced polygonal parts. We + present implemented planners that generate orienting plans for the entire + variational class of part shapes given a nominal part shape and tolerance + bounds. These plans use both deterministic and nondeterministic actions to + orient the parts, and we describe experiments to demonstrate them.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-02-05\n + \ 2000\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.61.1276\n + \ http://www.cs.rpi.edu/~sakella/papers/ToleranceIJRR.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.612.2924\n + \ 2015-10-04\n
\n \n + \ \n + \ Oriented Hamiltonian Paths in Tournaments: A Proof of + Rosenfeld\u2019s Conjecture\n Fr\xE9d\xE9ric + Havet, St\xE9phan Thomass\xE9 \n We + prove that with three exceptions, every tournament of order n contains each + oriented path of order n. The exceptions are the antidirected paths in the + 3-cycle, in the regular tournament on 5 vertices, and in the Paley tournament + on 7 vertices. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2015-08-22\n + \ 2000\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.612.2924\n + \ http://www-sop.inria.fr/members/Frederic.Havet/publi/path.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.618.4177\n + \ 2015-10-05\n
\n \n + \ \n + \ M-convex Function Minimization by Continuous Relaxation + Approach -- Proximity Theorem and Algorithm \n Satoko + Moriguchi\n Akiyoshi Shioura\n + \ Nobuyuki Tsuchimura\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-08-22\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.618.4177\n + \ http://www.keisu.t.u-tokyo.ac.jp/research/techrep/data/2008/METR08-38.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.619.9349\n + \ 2015-10-05\n
\n \n + \ \n + \ Buyer Power and Supplier Incentives\n Roman + Inderst\n Christian Wey\n This + paper investigates how the formation of larger buyers affects a supplier\u2019s + profits and, by doing so, his incentives to undertake non-contractible activities. + We first identify two channels of buyer power, which allows larger buyers + to obtain discounts. We subsequently examine the effects of buyer power on + the supplier\u2019s incentives and on social welfare. Contrary to some informal + claims in the policy debate on buyer power, we find that the exercise of buyer + power-even though reducing supplier\u2019s profits- may often increase a supplier\u2019s + incentive to undertake welfare enhancing activities.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-08-23\n + \ 2002\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.619.9349\n + \ http://dev3.cepr.org/meets/wkcn/6/6607/papers/wey.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.620.8343\n + \ 2015-10-05\n
\n \n + \ \n + \ Intelligent data storage and . . . \n C. + Peebles, et al.\n Engineering design + processes must efficiently incorporate analytical components of varying complexity + in multiple disciplines. The computational cost of slow and/or many ob-jective + function evaluations can be prohibitive in achieving a\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-08-23\n + \ 2005\n text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.620.8343\n + \ http://ctn.cvut.cz/ap/download.php?id=73\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.621.3964\n + \ 2015-10-04\n
\n \n + \ \n + \ Note Boxicity and maximum degree \n L. + Sunil Chandran\n Mathew C. Francis \n + \ Naveen Sivadasan \n Boxicity\n + \ Maximum degree\n Square + of a graph\n Chromatic number\n + \ A d-dimensional box is a Cartesian product of d + closed intervals on the real line. The boxicity of a graph is the minimum + dimension d such that it is representable as the intersection graph of d-dimensional + boxes. We give a short constructive proof that every graph with maximum degree + D has boxicity at most 2D\xB2. We also conjecture that the best upper bound + is linear in D. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2015-08-23\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.621.3964\n + \ http://clweb.csa.iisc.ernet.in/mathew/boxd2.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.623.9893\n + \ 2015-10-05\n
\n \n + \ \n + \ Un approccio metaeuristico al Dial-A-Ride Problem: il + caso del trasporto a chiamata a Genova\n Cristiano + Nattero\n I Introduzione 1\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-08-23\n + \ 2008\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.623.9893\n + \ http://www.cristianonattero.com/blog/wp-content/uploads/2008/10/nattero.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.627.116\n + \ 2015-10-04\n
\n \n + \ \n + \ \tTwo key estimation techniques for the broken-arrows + watermarking scheme\n Patrick Bas\n + \ Andreas Westfeld\n Security\n + \ Attack\n Sub- space + Estimation\n This paper presents two + different key estimation attacks targeted for the image watermarking system + proposed for the BOWS-2 contest. Ten thousands images are used in order to + estimate the secret key and remove the watermark while minimizing the distortion. + Two different techniques are pro-posed. The first one combines a regression-based + denoising process to filter out the component of the original images and a + clustering algorithm to compute the different components of the key. The second + attack is based on an inline subspace estimation algorithm, which estimates + the subspace associated with the secret key without computing eigen decomposition. + The key components are then estimated using Independent Component Analysis + and a strategy designed to leave efficiently the detection region is presented. + On six test images, the two attacks are able to remove the mark with very + small distortions (between 41.8 dB and 49 dB).\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2015-08-24\n + \ 2009\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.627.116\n + \ http://www.lirmm.fr/~chaumont/download/Two_Key_Estimation_Technique_for_the_Broken-Arrows_Watermarking_Scheme.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.63.2022\n + \ 2015-10-05\n
\n \n + \ \n + \ Computing Fence Designs for Orienting Parts \n + \ Robert-Paul Berretty \n Ken + Goldberg \n Mark H. Overmars \n + \ A. Frank van der Stappen\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-02-06\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.63.2022\n + \ http://www.cs.uu.nl/research/techreps/repo/CS-1997/1997-41.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.63.2320\n + \ 2015-10-05\n
\n \n + \ \n + \ A globally convergent augmented Lagrangian pattern search + algorithm for optimization with general constraints and simple bounds\n + \ Robert Michael Lewis\n Virginia + Torczon\n Subject classification. Applied + and Numerical Mathematics\n We give + a pattern search adaptation of an augmented Lagrangian method due to Conn, + Gould, and Toint. The algorithm proceeds by successive bound constrained minimization + of an augmented Lagrangian. In the pattern search adaptation we solve this + subproblem approximately using a bound constrained pattern search method. + The stopping criterion proposed by Conn, Gould, and Toint for the solution + of this subproblem requires explicit knowledge of derivatives. Such information + is presumed absent in pattern search methods; however, we show how we can + replace this with a stopping criterion based on the pattern size in a way + that preserves the convergence properties of the original algorithm. In this + way we proceed by successive, inexact, bound constrained minimization without + knowing exactly how inexact the minimization is. So far as we know, this is + the first provably convergent direct search method for general nonlinear programming.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-02-06\n + \ 1998\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.63.2320\n + \ http://historical.ncstrl.org/tr/pdf/icase/TR-98-31.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.630.495\n + \ 2015-10-05\n
\n \n + \ \n + \ Constraint Integer Programming \n Tobias + Achterberg\n ... den wir Constraint + Integer Programming (CIP) nennen. Sowohl Modellierungs- als auch L\xC3\xB6sungstechniken + beider Felder ie\xC3\xBFen in den neuen integrierten Ansatz ein, um die unterschiedlichen + St\xC3\xA4rken der beiden Gebiete zu kombinieren. Als weiteren Beitrag stellen + wir der wissens \nhaftlichen Gemeinschaft die Software SCIP zur Verf\xC3\xBCgung, + die ein Framework f\xC3\xBCr Constraint Integer Programming darstellt und + zus\xC3\xA4tzlich Techniken des SAT-L\xC3\xB6sens beinhaltet. SCIP ist im + Source Code f\xC3\xBCr akademische und nicht-kommerzielle Zwecke frei erh\xC3\xA4ltlich. + Unser Ansatz des Constraint Integer Programming ist eine Verallgemeinerung + von MIP, die zus\xC3\xA4tzlich die Verwendung beliebiger Constraints erlaubt, + solange sich diese dur \nh lineare Bedingungen ausdr\xC3\xBCcken lassen + falls alle ganzzahligen Variablen auf feste Werte eingestellt sind. Die Constraints + werden von einer beliebigen Kom-bination aus CP- und MIP-Techniken behandelt. + Dies beinhaltet insbesondere die Domain Propagation, die Relaxierung der Constraints + durch lineare Ungleichungen, sowie die Verst\xC3\xA4rkung der Relaxierung + durch dynamisch generierte Schnittebenen. Die derzeitige Version von SCIP + enth\xC3\xA4lt alle Komponenten, die f\xC3\xBCr das eziente\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-08-25\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.630.495\n + \ http://opus4.kobv.de/opus4-tuberlin/frontdoor/deliver/index/docId/1541/file/achterberg_tobias.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.630.990\n + \ 2015-10-05\n
\n \n + \ \n + \ On the Shortest Path and Minimum Spanning Tree Problems\n + \ Seth Pettie\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-08-25\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.630.990\n + \ http://repositories.lib.utexas.edu/bitstream/handle/2152/859/petties036.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.633.6147\n + \ 2015-10-05\n
\n \n + \ \n + \ THE BIOBJECTIVE TRAVELING SALESMAN PROBLEM WITH PROFIT + \n \xD6m\xFCr Simsek\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-08-25\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.633.6147\n + \ http://etd.lib.metu.edu.tr/upload/12608890/index.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.633.7654\n + \ 2015-10-04\n
\n \n + \ \n + \ Mod\xE9lisation flux de donn\xE9es et optimisation pour + architecture multi-c\u0153urs de motifs r\xE9p\xE9titifs\n Jonathan + Piat\n Acknowledgements\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2015-08-25\n + \ 2010\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.633.7654\n + \ http://tel.archives-ouvertes.fr/docs/00/56/45/22/PDF/full_thesis_jpiat.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.635.3377\n + \ 2015-10-05\n
\n \n + \ \n + \ Heuristic algorithms for a vehicle routing problem with + simultaneous delivery and pickup and time windows in home health care\n + \ Ran Liu \n Xiaolan + Xie \n Vincent Augusto \n Carlos + Rodriguez \n Home health care logistics\n + \ vehicle routing\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-08-26\n + \ 2013\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.635.3377\n + \ http://hal-clermont-univ.archives-ouvertes.fr/docs/00/83/82/53/PDF/VA-EJOR-Orig.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.635.6625\n + \ 2015-10-04\n
\n \n + \ \n + \ Statistical Modeling of SAR Images: A Survey\n + \ Gui Gao\n synthetic + aperture radar (SAR) images\n statistical + models\n parameter estimation\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-04\n 2015-08-26\n + \ 2010\n text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.635.6625\n + \ http://www.mdpi.com/1424-8220/10/1/775/pdf?view=inline\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.635.9657\n + \ 2015-10-04\n
\n \n + \ \n + \ Hyper-Cube Watermarking Scheme\n Marc + Chaumont \n Dalila Goudia \n + \ William Puechb\n Robust + watermarking\n Quantization-based watermarking\n + \ Perceptual watermarking\n Lattice + codes\n Watson model\n Valumetric + attack\n High rate\n Correcting + codes\n In 2007, Li and Cox showed that + their scheme called Perceptual-QIM (P-QIM) was one of the solutions the most + successful in order to watermark multi-bits in an image by a quantization + approach. Our research led us to take some of their ideas and brought new + proposals. This paper presents a new scheme named Hyper-Cube. In addition + to re-express the mechanisms of watermarking from a different angle and to + give a clear framework, we propose two improvements: the computation of the + modified Watson slacks on a neighborhood, and the use of a cleverly integrated + error correcting code. Additionally, we experimentally show that the addition + of the JPEG quantization table for setting the size of lattices do not reduce + performances. This demonstrate that the scheme may easily be integrated in + a joint watermarking-compression scheme. Given the obtained results, we can + conclude that the Hyper-Cube watermarking scheme is currently one of the most + successful technique when one wants to watermark an image using quantization-based + approaches.\n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-04\n 2015-08-26\n + \ 2011\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.635.9657\n + \ http://hal.univ-nantes.fr/docs/00/83/93/71/PDF/SPIE2011_CHAUMONT_GOUDIA_PUECH_HyperCube.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.64.1258\n + \ 2015-10-05\n
\n \n + \ \n + \ Imposing a Memory Management Discipline on Software Deployment + \n Eelco Dolstra\n Eelco + Visser\n Merijn de Jonge\n + \ The deployment of software components frequently + fails because dependencies on other components are not declared explicitly + or are declared imprecisely. This results in an incomplete reproduction of + the environment necessary for proper operation, or in interference between + incompatible variants. In this paper we show that these deployment hazards + are similar to pointer hazards in memory models of programming languages and + can be countered by imposing a memory management discipline on software deployment. + Based on this analysis we have developed a generic, platform and language + independent, discipline for deployment that allows precise dependency verification; + exact identification of component variants; computation of complete closures + containing all components on which a component depends; maximal sharing of + components between such closures; and concurrent installation of revisions + and variants of components. We have implemented the approach in the Nix deployment + system, and used it for the deployment of a large number of existing Linux + packages. We compare its effectiveness to other deployment systems. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-02-06\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.64.1258\n + \ http://www.cs.uu.nl/research/techreps/repo/CS-2004/2004-044.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.64.5523\n + \ 2015-10-05\n
\n \n + \ \n + \ A Fast Algorithm for Near Cost Optimal Line Plans\n + \ Michael R. Bussieck\n Thomas + Lindner\n Marco E. L\xFCbbecke\n + \ We consider the design of line plans in public + transport at a minimal total cost. Both, linear and nonlinear integer programming + are adequate and intuitive modeling approaches for this problem. We present + a heuristic variable fixing procedure which builds on problem knowledge from + both techniques. We derive and compare lower bounds from different linearizations + in order to assess the quality of our solutions. The involved integer linear + programs are strengthened by means of problem specific valid inequalities. + Computational results with practical data from the Dutch Railways indicate + that our algorithm gives excellent solutions within minutes of computation + time. \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-06\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.64.5523\n + \ http://www.math.tu-berlin.de/~luebbeck/papers/Report-043-2003.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.641.9684\n + \ 2015-10-04\n
\n \n + \ \n + \ Topological properties of activity orders for matroid + bases\n Rieuwert J. Blok \n Bruce + E. Sagan \n the Centre de RecercaMatem\xE0tica + in Barcelona\n Spain.At the meeting\n + \ Michel LasVergnas\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2015-09-01\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.641.9684\n + \ http://www.mth.msu.edu/~sagan/Papers/Old/tpa-pub.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.642.6676\n + \ 2015-10-05\n
\n \n + \ \n + \ Sinks in Acyclic Orientations of Graphs\n David + D. Gebhard\n Bruce E. Sagan\n + \ 1. ACYCLIC ORIENTATIONS\n Greene + and Zaslavsky proved that the number of acyclic orientations of a graph G + with a unique sink at a given vertex is, up to sign, the linear coefficient + of the chromatic polynomial. We give three proofs of this result using pure + induction, noncommutative symmetric functions, and an algorithmic bijection. + We also prove their result that if e=u0v0 is an edge of G then the number + of acyclic orientations having a unique source at u0 and unique sink at v0 + is Crapo\u2019s beta invariant. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-09-02\n + \ 2000\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.642.6676\n + \ http://www.mth.msu.edu/~sagan/Papers/Old/sao-pub.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.643.8693\n + \ 2015-10-05\n
\n \n + \ \n + \ AGENT-BASED PERSONALIZED TOURIST ROUTE ADVICE SYSTEM\n + \ Yuxian Sun \n Lyndon + Lee \n KEY WORDS\n Automation\n + \ data mining\n navigation\n + \ GIS\n mathematics\n + \ knowledge base\n requirements\n + \ This paper proposes a tourist route model that is + based on the integration of GIS spatial analysis functions and a kind of heuristic + search algorithm based on local optimisation. A vector-based model is used + to represent tourists\u2019 personal interests and the available tourist resources. + Based on these two representations, the system can build a user model that + indicates the attractions values of the tourist features in a particular area + to individual tourists. The route agent then uses this user model to generate + personalized tourist routes. This research adopts a Tabu search method, called + extension/collapse algorithm, that is applied in the operations research for + maximizing some utilities under certain constraints. It is a heuristic search + method that progressively selects each tourist site based on both its attraction + value and the cost value. An empirical evaluation has been carried out on + the personalized route advice system. The result suggests that the tourist + route model generates tourist routes that are empirically consistent with + the tourists\u2019 preferences.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2015-09-03\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.643.8693\n + \ http://www.isprs.org/proceedings/XXXV/congress/comm2/papers/147.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.644.3997\n + \ 2015-10-05\n
\n \n + \ \n + \ On the Shortest Path and Minimum Spanning Tree Problems\n + \ Seth Pettie\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2015-09-03\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.644.3997\n + \ http://web.eecs.umich.edu/~pettie/papers/D.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.65.7421\n + \ 2015-10-05\n
\n \n + \ \n + \ Circle Planarity of Level Graphs\n Christian + Bachmaier\n In this thesis we generalise + the notion of level planar graphs in two directions: track planarity and radial + planarity. Our main results are linear time algorithms both for the planarity + test and for the computation of an embedding, and thus a drawing. Our algorithms + use and generalise PQ-trees, which are a data structure for efficient planarity + tests. A graph is a level graph, if it has a partition of the vertices in + levels such that the vertices of each level can be placed on a horizontal + line and the edges are strictly downwards. It is level planar if there are + no edge crossings. Level planarity can be tested efficiently in linear time + by sophisticated and complex algorithms. Level graphs exclude horizontal edges + between vertices on the same level. Such edges are allowed by our track graphs. + In radial level graphs the vertices of each level are placed on concentric + circles and the edges are outwards. We characterise essential differences + between level and radial level planar graphs, which are expressed by level + non-planar biconnected components called rings. The presence of rings introduces\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-02-06\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.65.7421\n + \ http://www.infosun.fmi.uni-passau.de/~chris/down/CirclePlanarityOfLevelGraphs.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.67.4023\n + \ 2015-10-05\n
\n \n + \ \n + \ Parts Orienting by Push-aligning\n + Srinivas Akella , Matthew T. Mason \n Programmable + parts orienting is an important capability for exible automation systems. + Here we study how a part grasped in an unknown orientation by a force-controlled + robot can be oriented by a sequence of push-align actions against a wall followed + by sensor measurements of the distance from the grasp point to the wall. This + paper concentrates on three issues: planning a sequence of actions to orient + a part, exploring design changes that enable the part to be oriented in fewer + steps, and the effect of shape uncertainty, due to manufacturing tolerances, + on part orientability. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-06\n + \ 1995\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.67.4023\n + \ http://www.ri.cmu.edu/pub_files/pub1/akella_srinivas_1995_2/akella_srinivas_1995_2.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.67.7566\n + \ 2015-10-05\n
\n \n + \ \n + \ Planning and Optimization Algorithms for Image-Guided + Medical Procedures\n Ron Alterovitz\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-06\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.67.7566\n + \ http://www.ieor.berkeley.edu/~ron/research/papers/Alterovitz2006_Thesis.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.68.4120\n + \ 2015-10-05\n
\n \n + \ \n + \ Rectangular Layouts and Contact Graphs\n Adam + L. Buchsbaum\n Emden R. Gansner\n + \ Cecilia M. Procopiuc \n Suresh + Venkatasubramanian\n General Terms\n + \ Algorithms\n Theory + Additional Key Words and Phrases\n contact + graphs\n rectangular duals\n + \ rectangular layouts\n Contact + graphs of isothetic rectangles unify many concepts from applications including + VLSI and architectural design, computational geometry, and GIS. Minimizing + the area of their corresponding rectangular layouts is a key problem. We study + the area-optimization problem and show that it is NP-hard to find a minimum-area + rectangular layout of a given contact graph. We present O(n)-time algorithms + that construct O(n2)-area rectangular layouts for general contact graphs and + O(n log n)-area rectangular layouts for trees. (For trees, this is an O(log + n)-approximation algorithm.) We also present an infinite family of graphs + (rsp., trees) that require \\Omega (n2) (rsp., \\Omega (n log n)) area. We + derive these results by presenting a new characterization of graphs that admit + rectangular layouts using the related concept of rectangular duals. A corollary + to our results relates the class of graphs that admit rectangular layouts + to rectangle of influence drawings.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-06\n + \ 2007\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.68.4120\n + \ http://www.research.att.com/~alb/biblio/rectlay.ps.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.68.6965\n + \ 2015-10-05\n
\n \n + \ \n + \ An Associative Dynamic Convex Hull Algorithm \n + \ Maher M. Atwah, Johnnie W. Baker\n + This paper presents a new parallel algorithm for the dynamic convex hull problem. + This algorithm is a parallel adaptation of the Jarvis March Algorithm. The + computational model selected for this algorithm is the associative computing + model (ASC) which supports massive parallelism through the use of data parallelism + and constant time associative search and maximum functions. Also, ASC can + be supported on existing SIMD computers. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-06\n + \ 1998\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.68.6965\n + \ http://www.cs.kent.edu/~parallel/papers/atwah98.ps\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.69.6027\n + \ 2015-10-05\n
\n \n + \ \n + \ Parts Orienting with Shape Uncertainty\n Srinivas + Akella\n Matthew T. Mason\n + \ Parts manufactured to tolerances have shape variations. + Most work in robotic manipulation assumes that part shape does not vary. Orienting + devices such as bowl feeders frequently fail due to variations in part shape. + In this paper we develop techniques to orient parts with shape uncertainty. + We present a shape uncertainty model and describe the nondeterminism in parts + orienting that arises from shape uncertainty. We characterize a class of parts + that can be reliably oriented with sensor-based and sensorless orienting plans + under shape uncertainty. We present implemented planners that generate orienting + plans for the entire variational class of part shapes given a nominal part + shape and shape uncertainty bounds. We describe experiments to demonstrate + generated plans and outline issues for future work. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-06\n + \ 1998\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.69.6027\n + \ http://www.ri.cmu.edu/pub_files/pub1/akella_srinivas_1998_1/akella_srinivas_1998_1.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.69.9709\n + \ 2015-10-05\n
\n \n + \ \n + \ Some surprising regularities in . . . \n Holger + H. Hoos, et al.\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-06\n + \ application/postscript\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.69.9709\n + \ http://www.intellektik.informatik.tu-darmstadt.de/Pubs/tom/cp98.ps\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.70.2414\n + \ 2015-10-05\n
\n \n + \ \n + \ CHARACTERIZING SEARCH SPACES FOR TABU SEARCH\n + \ Christopher R. Houck\n Jeffrey + A. Joines\n Michael G. Kay\n + \ A large number of heuristic search algorithms are + available for function optimization. Each of these heuristics, e.g., simulated + annealing, genetic algorithms, tabu search, etc., has been shown to be effective + at finding good solutions efficiently. However, little work has been directed + at determining what are the important problem characteristics for which one + algorithm is more efficient than the others. By examining two problems, the + location\u2013allocation problem and the qua-dratic assignment problem, characteristics + of successful tabu search are illustrated. A tabu search for the location\u2013allocation + problem is described and implemented. The results of this tabu search are + compared against a genetic algorithm. For the quadratic assignment problem, + tabu search has been shown more effective than genetic algorithms; however, + for the location\u2013allocation problem, the genetic algorithm finds better + solutions more efficiently than tabu search. To investigate what characteristics + of the location\u2013allocation problem makes it less amenable to tabu search, + a com-parison between the location\u2013allocation problem and the quadratic + assignment problem is per-formed. A comparison of the problem characteristics + reveals that the location\u2013allocation problem has very large basins of + attraction around a few local optima. For tabu search to escape these min-ima + requires a large number of iterations. Finally, a combination of both tabu + search and genetic algorithms is presented for the location-allocation problem,where + regions around genetically determined sample points are marked as tabu. This + combination compares favorably to the genetic algorithm in terms of increased + computational efficiency. Recently, a lot of attention has been directed at + exploring the efficiency of meta-heuristics for solving hard search problems. + Meta-heuristics guide the application and use of local heuristics. They are + used to search the many local optima which most local heuristics find, attempting + to\n The Pennsylvania State University + CiteSeerX Archives\n \n 2015-10-05\n + \ 2008-02-06\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.70.2414\n + \ http://www.geocities.com/francorbusetti/Tabuvsga.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.71.3125\n + \ 2015-10-05\n
\n \n + \ \n + \ Planning for steerable bevel-tip needle insertion through + 2D soft tissue with obstacles\n Ron Alterovitz\n + \ Ken Goldberg\n Allison + Okamura\n We explore motion planning + for a new class of highly flexible bevel-tip medical needles that can be steered + to previously unreachable targets in soft tissue. Planning for these procedures + is difficult because the needles bend during insertion and cause the surrounding + soft tissues to displace and deform. In this paper, we develop a planning + algorithm for insertion of highly flexible bevel-tip needles into soft tissues + with obstacles in a 2D imaging plane. Given an initial needle insertion plan + specifying location, orientation, bevel rotation, and insertion distance, + the planner combines soft tissue modeling and numerical optimization to generate + a needle insertion plan that compensates for simulated tissue deformations, + locally avoids polygonal obstacles, and minimizes needle insertion distance. + The simulator computes soft tissue deformations using a finite element model + that incorporates the effects of needle tip and frictional forces using a + 2D mesh. We formulate the planning problem as a constrained nonlinear optimization + problem that is locally minimized using a penalty method that converts the + formulation to a sequence of unconstrained optimization problems. We apply + the planner to bevel-right and bevel-left needles and generate plans for targets + that are unreachable by rigid needles. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-06\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.71.3125\n + \ http://www.ieor.berkeley.edu/~goldberg/pubs/ron-icra2005-v08.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.73.370\n + \ 2015-10-05\n
\n \n + \ \n + \ An Ant Colony Optimization Approach to Flexible Protein-Ligand + Docking\n Oliver Korb\n Thomas + St\xFCtzle\n Thomas E. Exner\n + \ The prediction of the complex structure of a small + ligand with a protein, the so-called protein-ligand docking problem, is a + central part of the rational drug design process. For this purpose, we introduce + the docking algorithm PLANTS (Protein-Ligand ANT System), which is based on + ant colony optimization, one of the most successful swarm intelligence techniques. + We study the effectiveness of PLANTS for several parameter settings and present + a direct comparison of PLANTS\u2019s performance to a state-ofthe-art program + called GOLD, which is based on a genetic algorithm and frequently used in + the pharmaceutical industry for this task. Last but not least, we also show + that PLANTS can make effective use of protein flexibility giving example results + on cross-docking and virtual screening experiments for protein kinase A. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-02-07\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.73.370\n + \ http://iridia.ulb.ac.be/~stuetzle/publications/KorStuExn07.SI.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.74.4704\n + \ 2015-10-05\n
\n \n + \ \n + \ MULTIOBJECTIVE VISIBLE SPECTRUM OPTIMIZATION: A GENETIC + ALGORITHM APPROACH \n Neil Holger White Eklund\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-07\n + \ 2002\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.74.4704\n + \ http://www.lania.mx/~ccoello/EMOO/eklund_thesis.pdf.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.74.9070\n + \ 2015-10-05\n
\n \n + \ \n + \ Pattern Search Methods for Linearly Constrained Minimization\n + \ Robert Michael Lewis\n Virginia + Torczon\n We extend pattern search + methods to linearly constrained minimization. We develop a general class of + feasible point pattern search algorithms and prove global convergence to a + Karush-Kuhn-Tucker point. As in the case of unconstrained minimization, pattern + search methods for linearly constrained problems accomplish this without explicit + recourse to the gradient or the directional derivative of the objective. Key + to the analysis of the algorithms is the way in which the local search patterns + conform to the geometry of the boundary of the feasible region. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-02-07\n + \ 1999\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.74.9070\n + \ http://www.cs.wm.edu/~va/research/linear.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.75.5399\n + \ 2015-10-05\n
\n \n + \ \n + \ Local search heuristics for the probabilistic dial-a-ride + problem\n Sin C. Ho\n Dag + Haugland\n probabilistic dial-a-ride problem\n + \ tabu search\n GRASP\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-07\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.75.5399\n + \ http://www.ii.uib.no/publikasjoner/texrap/pdf/2004-286.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.75.8204\n + \ 2015-10-04\n
\n \n + \ \n + \ Multimedia Data Hiding: From Fundamental Issues to Practical + Techniques\n Kaushal M. Solanki\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-04\n 2008-02-07\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.75.8204\n + \ http://vision.ece.ucsb.edu/publications/05ThesisKaushal.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.76.2300\n + \ 2015-10-05\n
\n \n + \ \n + \ Simulation Optimization Using Soft Computing \n + \ ANDR\xC9S L. MEDAGLIA\n To + date, most of the research in simulation optimization has been focused on + single response optimization on the continuous space of input parameters. + However, the optimization of more complex systems does not fit this framework. + Decision makers often face the problem of optimizing multiple performance + measures of systems with both continuous and discrete input parameters. Previously + acquired knowledge of the system by experts is seldom incorporated into the + simulation optimization engine. Furthermore, when the goals of the system + design are stated in natural language or vague terms, current techniques are + unable to deal with this situation. For these reasons, we define and study + the fuzzy single response simulation optimization (FSO) and fuzzy multiple + response simulation optimization (FMSO) problems. The primary objective of + this research is to develop an efficient and robust method for simulation + optimization of complex systems with multiple vague goals. This method uses + a fuzzy controller to incorporate existing knowledge to generate high quality + approximate Pareto optimal solutions in a minimum number of simulation runs.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-02-07\n + \ 2000\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.76.2300\n + \ http://www.lania.mx/~ccoello/EMOO/thesis_medaglia.pdf.gz\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.76.5941\n + \ 2015-10-05\n
\n \n + \ \n + \ Algorithms for Fence Design\n Robert-Paul + Berretty, Ken Goldberg, Mark Overmars, A. Frank van der Stappen \n + \ A common task in automated manufacturing processes + is to orient parts prior to assembly. We address sensorless orientation of + a polygonal part on a conveyor belt by a sequence of stationary fences across + this belt. Since fences can only push against the motion of the belt, it is + a challenging problem to compute fence designs which orients a given part. + In this paper, we give several polynomial-time, algorithms to compute fence + designs which are optimal with respect to various criteria. We address both + frictionless and frictional fences. We also compute modular fence designs + in which the fence angles are restricted to a discrete set of angles instead + of an interval. \n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-07\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.76.5941\n + \ http://www.cs.uu.nl/research/techreps/repo/CS-1998/1998-06.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.77.1503\n + \ 2015-10-05\n
\n \n + \ \n + \ On the number of edges not covered by monochromatic copies + of a fixed graph \n Peter Keevash \n + \ Benny Sudakov \n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-02-07\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.77.1503\n + \ http://www.math.princeton.edu/~bsudakov/nim-edges.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.78.8954\n + \ 2015-10-05\n
\n \n + \ \n + \ Nix: A Safe and Policy-free System for Software Deployment + \n Eelco Dolstra\n Merijn + de Jonge\n Eelco Visser\n Existing + systems for software deployment are neither safe nor sufficiently flexible. + Primary safety issues are the inability to enforce reliable specification + of component dependencies, and the lack of support for multiple versions or + variants of a component. This renders deployment operations such as upgrading + or deleting components dangerous and unpredictable. A deployment system must + also be flexible (i.e., policyfree) enough to support both centralised and + local package management, and to allow a variety of mechanisms for transferring + components. In this paper we present Nix, a deployment system that addresses + these issues through a simple technique of using cryptographic hashes to compute + unique paths for component instances. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-07\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.78.8954\n + \ http://www.cs.uu.nl/research/techreps/repo/CS-2004/2004-045.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.79.3491\n + \ 2015-10-05\n
\n \n + \ \n + \ Build-level Component-based Software Engineering\n + \ Merijn De Jonge\n KEY + WORDS\n CBSE\n software + component\n software reuse\n + \ software construction\n software + engineering\n source\n A + lot of potentially reusable functionality exists in current software systems + that does not become available for reuse. An important reason is that while + at the functional level well-known modularization principles are applied for + structuring functionality into modules, this is not the case at the build + level for structuring files in directories. This leads to a situation where + files are entangled in directory hierarchies and build processes, making it + hard to extract functionality and to make functionality suitable for reuse. + Consequently, software may not become available for reuse at all, or only + in rather large chunks of functionality, which may lead to extra software + dependencies. We propose to improve this situation by applying component-based + software engineering (CBSE) principles to the build level. Build-level components + serve to make artefacts reusable, while build-level composition techniques + serve to assemble complete applications. This combines advantages of having + small components (e.g., reuse) and large systems (e.g., ease of deployment). + In this article we explore build-level CBSE in full detail. We discuss theory + and practice of build-level development, deployment and composition techniques. + Case studies demonstrate the feasibility of our techniques.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-02-07\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.79.3491\n + \ http://www.cs.uu.nl/research/techreps/repo/CS-2004/2004-046.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.81.6364\n + \ 2015-10-05\n
\n \n + \ \n + \ \tRelationship of M-/L-convex Functions with Discrete + Convex Functions by Miller and by Favati-Tardella\n Kazuo + Murota\n Akiyoshi Shioura\n + \ discrete optimization\n combinatorial + optimization\n convexity\n + \ convex analysis\n + We clarify the relationship of the concepts of M-convex and L-convex functions + due to Murota (1996, 1998) with two other concepts of discrete convex functions + over integer lattice points, discretely-convex functions due to Miller (1971), + and integrally-convex functions due to Favati-Tardella (1990). We also investigate + whether each class of discrete convex functions is closed under fundamental + operations such as addition and convolution.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-02-07\n + \ 1999\n application/postscript\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.81.6364\n + \ http://www.kurims.kyoto-u.ac.jp/pub/paper/member/murota/rims1239.ps\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.83.9098\n + \ 2015-10-05\n
\n \n + \ \n + \ On Salagean-type harmonic multivalent functions\n + \ Bilal Seker\n Sevtap + S\xFCmer Eker\n Harmonic Univalent Functions\n + \ Salagean Derivative\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-04-01\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.83.9098\n + \ http://www.emis.de/journals/GM/vol15nr2/bilal/bilal.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.87.4600\n + \ 2015-10-04\n
\n \n + \ \n + \ On a Conjecture about Trees in Graphs with Large Girth\n + \ Tao Jiang\n The + girth of a graph G is the length of a shortest cycle in G. Dobson (1994,\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2008-04-01\n + \ 2001\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.87.4600\n + \ http://www.users.muohio.edu/jiangt/publications/tree-embedding.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.87.483\n + \ 2015-10-05\n
\n \n + \ \n + \ OpenDist - incremental software distribution\n + \ Peter W. Osel\n Wilfried + G\xE4nsheimer\n OpenDist provides efficient + procedures and tools to synchronize our software file servers. This simple + goal becomes challenging because of the size and complexity of supported software, + the diversity of platforms, and because of network constraints. Our current + solution is based on rdist (1) [1]. However, it is not possible anymore to + synchronize file servers nightly, because it takes several days just to compare + distant servers. We have analyzed the update process to find bottlenecks in + the current solution. We measured the effects of network bandwidth and latency + on rdist. We created statistics on the number of files and file sizes within + all software packages. We found that not only the line speed, but also the + line delay contributes substantially to the overall update time. Our measurements + revealed that adding a compression mode to rdist would not have solved our + problem, so we decided to look for a new solution. We have compiled a list + of requirements for evaluating software distribution solutions. Based on these + requirements, we evaluated both commercial and freely available tools. None + of the tools fulfilled our most important requirements, so we implemented + our own solution. In the following we will describe the overall architecture + of the toolset and present performance figures for the distribution engine + that replaces rdist. The results of the prototype implementation are promising. + We conclude with a description of the next steps for enhancing the OpenDist + toolset.\n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-01\n + \ 1995\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.87.483\n + \ http://www.usenix.com/publications/library/proceedings/lisa95/full_papers/osel.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.87.5677\n + \ 2015-10-05\n
\n \n + \ \n + \ Lagrangean based methods for solving large-scale . . . + \n Filipe F. Mazzini\n Geraldo + R. Mateus\n James MacGregor Smith\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-01\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.87.5677\n + \ http://www2.dcc.ufmg.br/laboratorios/lapo/publicacoes/arquivos/Jeom05hdC11M9aduwP9EqFGJGViU37.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.87.7293\n + \ 2015-10-05\n
\n \n + \ \n + \ Integer linear programming approaches for non-unique probe + selection\n Gunnar W. Klau \n + \ Sven Rahmann \n Alexander + Schliep \n Martin Vingron \n + \ Knut Reinert \n Integer + linear programming\n Microarray\n + \ Probe\n Oligonucleotide\n + \ Design\n Group testing\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-01\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.87.7293\n + \ http://algorithmics.molgen.mpg.de/Static/Publications/2007-DAM-Nonuniques.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.88.2862\n + \ 2015-10-05\n
\n \n + \ \n + \ An efficient parallel algorithm for shortest paths in + planar layered digraphs\n MISHRA P.K.\n + \ Key words\n Parallel + algorithms\n Shortest paths\n + \ Planar layered digraphs Document code\n + \ A CLC number\n O29\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-01\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.88.2862\n + \ http://www.zju.edu.cn/jzus/2004/0405/040503.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.88.8222\n + \ 2015-10-05\n
\n \n + \ \n + \ The Speed of Hereditary Properties of Graphs\n + \ Jozsef Balogh\n Bela + Bollobas\n David Weinreich\n + \ Given a property P of graphs, write P n for the + set of graphs with vertex set [n] having property P. The growth or speed of + a property P can be discussed in terms of the values of |P n |. For properties + with |P n |&lt;n n hereditary properties are surprisingly well determined + by their speeds. Sharpening results of E. R. Scheinerman and J. Zito (1994, + J. Combin. Theory Ser. B 61, 16 39), we prove numerous results about the possible + functions |P n | and describe in detail the properties exhibiting each type + of growth. We also list minimal properties exhibiting each type of growth. + \ \n The Pennsylvania State University + CiteSeerX Archives\n \n 2015-10-05\n + \ 2008-04-01\n 2000\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.88.8222\n + \ http://www.math.uiuc.edu/~jobal/cikk/babow1.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.90.593\n + \ 2015-10-05\n
\n \n + \ \n + \ On the Maximum Feasible Subsystem Problem, IISs and IIS-hypergraphs\n + \ Edoardo Amaldi\n Marc + E. Pfetsch\n Leslie E. Trotter, Jr.\n + \ We consider the MAX FS problem: For a given infeasible + linear system Ax \u2264 b, determine a feasible subsystem containing as many + inequalities as possible. This problem, which is NP-hard and also difficult + to approximate, has a number of interesting applications in a wide range of + fields. In this paper we examine structural and algorithmic properties of + MAX FS and of Irreducible Infeasible Subsystems (IISs), which are intrinsically + related since one must delete at least one constraint from each IIS to attain + feasibility. First we provide a new simplex decomposition characterization + of IISs and prove that finding a smallest cardinality IIS is very difficult + to approximate. Then we discuss structural properties of IIS-hypergraphs, + i.e., hypergraphs in which each edge corresponds to an IIS, and show that + recognizing IIS-hypergraphs subsumes the Steinitz problem for polytopes and + hence is NP-hard. Finally we investigate rank facets of the Feasible Subsystem + polytope whose vertices are incidence vectors of feasible subsystems of a + given infeasible system. In particular, using the IIS-hypergraph structural + result, we show that only two very specific types of rank inequalities induced + by generalized antiwebs (which generalize cliques, odd holes and antiholes + to general independence systems) can arise as facets. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-04-01\n + \ 2002\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.90.593\n + \ http://www.zib.de/pfetsch/Publications/maxfs.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.91.4416\n + \ 2015-10-05\n
\n \n + \ \n + \ Trap design for vibratory bowl feeders\n Robert-Paul + Berretty\n Ken Goldberg\n Mark + H. Overmars\n A. Frank van der Stappen \n + \ The vibratory bowl feeder is the oldest and still + most common approach to the automated feeding (orienting) of industrial parts. + In this paper, the authors consider a class of vibratory bowl filters that + can be described by removing polygonal sections from the track; this class + of filters is referred to as traps. For an n-sided polygonal part and an m-sided + polygonal trap, an O(n\xB2 m log n) algorithm is given to decide whether the + part in a specific orientation will safely move across the trap or will fall + through the trap and thus be filtered out. For an n-sided convex polygonal + part and m-sided convex polygonal trap, this bound is improved to O((n+m) + log n). Furthermore, the authors show how to design various trap shapes, ranging + from simple traps to general polygons, which will filter out all but one of + the different stable orientations of a given part. Although the runtimes of + the design algorithms are exponential in the number of trap\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-04-01\n + \ 2001\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.91.4416\n + \ http://ijr.sagepub.com/cgi/reprint/20/11/891.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.91.5108\n + \ 2015-10-05\n
\n \n + \ \n + \ Lower Bounds For Large-scale Set Partitioning Problems\n + \ Chul-Young Byun\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-04-01\n + \ 2001\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.91.5108\n + \ http://www.zib.de/groetschel/students/ZR-01-06.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.92.2880\n + \ 2015-10-04\n
\n \n + \ \n + \ Topological properties of activity orders for matroid + bases\n Rieuwert J. Blok\n Bruce + E. Sagan\n Key Words\n externally + active\n homology\n lattice\n + \ matroid\n m\xF6bius\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-04\n 2008-04-01\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.92.2880\n + \ http://www-math.bgsu.edu/~rblok/articles/BlSa2005.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.92.4666\n + \ 2015-10-04\n
\n \n + \ \n + \ Crossing number, pair-crossing number, and expansion\n + \ Petr Kolman \n Jiri + Matousek\n The crossing number cr\xF0G\xDE + of a graph G is the minimum possible number of edge crossings in a drawing + of G in the plane, while the pair-crossing number pcr\xF0G\xDE is the smallest + number of pairs of edges that cross in a drawing of G in the plane. While + cr\xF0G\xDEXpcr\xF0G\xDE holds trivially, it is not known whether a strict + inequality can ever occur (this question was raised by Mohar and Pach and + To \xB4 th). We aim at bounding cr\xF0G\xDE in terms of pcr\xF0G\xDE: Using + the methods of Leighton and Rao, Bhatt and Leighton, and Even, Guha and Schieber, + we prove that cr\xF0G\xDE O\xF0log 3 n\xF0pcr\xF0G\xDE\xFEssqd\xF0G\xDE\xDE\xDE; + where n jV\xF0G\xDEj and ssqd\xF0G\xDE P vAV\xF0G\xDE degG\xF0v\xDE 2: One + of the main steps is an analogy of the well-known lower bound cr\xF0G\xDE + O\xF0b\xF0G\xDE 2 \xDE O\xF0ssqd\xF0G\xDE\xDE; where b\xF0G\xDE is the bisection + width of G; that is, the smallest number of edges that have to be removed + so that no component of the resulting graph has more than 2 3 n vertices. + We show that pcr\xF0G\xDE O\xF0b\xF0G\xDE 2 =log 2 n\xDE O\xF0ssqd\xF0G\xDE\xDE: + We also prove by similar methods that a graph G with crossing number k cr\xF0G\xDE4C + ffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffi p ssqd\xF0G\xDE m log 2 n + has a nonplanar subgraph on at most O Dnm log2 n k vertices, where m is the + number of edges, D is the maximum degree in G; and C is a suitable sufficiently + large constant.\n The Pennsylvania + State University CiteSeerX Archives\n \n + \ 2015-10-04\n 2008-04-01\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.92.4666\n + \ http://www.mpi-inf.mpg.de/~sgovinda/Course/papers/KM04.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.93.3343\n + \ 2015-10-04\n
\n \n + \ \n + \ Merging Markov and DCT Features for Multi-Class JPEG Steganalysis\n + \ Tom\xE1\u0161 Pevn\xFD , Jessica Fridrich\n + \ Blind steganalysis based on classifying feature + vectors derived from images is becoming increasingly more powerful. For steganalysis + of JPEG images, features derived directly in the embedding domain from DCT + coefficients appear to achieve the best performance (e.g., the DCT features + 10 and Markov features 21). The goal of this paper is to construct a new multi-class + JPEG steganalyzer with markedly improved performance. We do so first by extending + the 23 DCT feature set, 10 then applying calibration to the Markov features + described in 21 and reducing their dimension. The resulting feature sets are + merged, producing a 274-dimensional feature vector. The new feature set is + then used to construct a Support Vector Machine multi-classifier capable of + assigning stego images to six popular steganographic algorithms\u2014F5, 22 + Out-\n The Pennsylvania State University + CiteSeerX Archives\n \n 2015-10-04\n + \ 2008-04-02\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.93.3343\n + \ http://www.ws.binghamton.edu/fridrich/Research/classifier_spie.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.93.3796\n + \ 2015-10-04\n
\n \n + \ \n + \ Stability theorems for cancellative hypergraphs\n + \ Peter Keevash \n Dhruv + Mubayi \n ... proof of an old result + of Bollob\xE1s, which states that the maximum size of a cancellative triple + system is achieved by the balanced complete tripartite 3-graph. One of the + two forbidden subhypergraphs in a cancellative 3-graph is F5 fabc; abd; cdeg: + For nX33 we show that the maximum number of triples on n vertices containing + no copy of F5 is also achieved by the balanced complete tripartite 3-graph. + This strengthens a theorem of Frankl and Fu \xA8 redi, who proved it for nX3000: + For both extremal results, we show that a 3-graph with almost as many edges + as the extremal example is approximately tripartite. These stability theorems + are analogous to the Simonovits stability theorem for graphs.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2008-04-02\n + \ 2004\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.93.3796\n + \ http://keevash.googlepages.com/cancellative-stability-journal.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.93.4073\n + \ 2015-10-05\n
\n \n + \ \n + \ On a lemma of Scarf\n Ron + Aharoni \n Tamas Fleiner \n + \ The aim of this note is to point out some combinatorial + applications of a lemma of Scarf, proved first in the context of game theory. + The usefulness of the lemma in combinatorics has already been demonstrated + in a paper by the first author and R. Holzman (J. Combin. Theory Ser. B 73 + (1) (1998) 1) where it was used to prove the existence of fractional kernels + in digraphs not containing cyclic triangles. We indicate some links of the + lemma to other combinatorial results, both in terms of its statement (being + a relative of the Gale\u2013Shapley theorem) and its proof (in which respect + it is a kin of Sperner\u2019s lemma). We use the lemma to prove a fractional + version of the Gale\u2013Shapley theorem for hypergraphs, which in turn directly + implies an extension of this theorem to general (not necessarily bipartite) + graphs due to Tan (J. Algorithms 12 (1) (1991) 154). We also prove the following + result, related to a theorem of Sands et al. (J. Combin. Theory Ser. B 33 + (3) (1982) 271): given a family of partial orders on the same ground set, + there exists a system of weights on the vertices, which is (fractionally) + independent in all orders, and each vertex is dominated by them in one of + the orders.\n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-02\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.93.4073\n + \ http://kam.mff.cuni.cz/kseminar/clanky/AharoniFleiner-Scarf_lemma.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.93.5430\n + \ 2015-10-04\n
\n \n + \ \n + \ Laplacian spectral bounds for clique and independence + numbers of graphs \n Mei Lu \n + \ Huiqing Liu \n Feng + Tian \n Clique number\n Independence + number\n Laplacian spectrum\n + \ \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-04\n 2008-04-02\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.93.5430\n + \ http://www.orsc.edu.cn/~mlu/JCTB(07).pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.93.8526\n + \ 2015-10-05\n
\n \n + \ \n + \ Stable Multi-Sets \n Arie + M. C. A. Koster\n Adrian Zymolka\n + \ In this paper we introduce a generalization of stable + sets: stable multi-sets. A stable multi-set is an assignment of integers to + the vertices of a graph, such that specified bounds on vertices and edges + are not exceeded. In case all vertex and edge bounds equal one, stable multi-sets + are equivalent to stable sets. For the stable multi-set problem, we derive + reduction rules and study the associated polytope. We state necessary and + sufficient conditions for the extreme points of the linear relaxation to be + integer. These conditions generalize the conditions for the stable set polytope. + Moreover, the classes of odd cycle and clique inequalities for stable sets + are generalized to stable multi-sets and conditions for them to be facet defining + are determined. The study of stable multi-sets is initiated by optimization + problems in the field of telecommunication networks. Stable multi-sets emerge + as an important substructure in the design of optical networks. \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-04-02\n + \ 2000\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.93.8526\n + \ http://opus.kobv.de/zib/volltexte/2000/610/pdf/ZR-00-41.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.93.8924\n + \ 2015-10-04\n
\n \n + \ \n + \ Multi-class Blind Steganalysis for JPEG Images\n + \ Tom\xE1\u0161 Pevn\xFD , Jessica Fridrich\n + \ In this paper, we construct blind steganalyzers + for JPEG images capable of assigning stego images to known steganographic + programs. Each JPEG image is characterized using 23 calibrated features calculated + from the luminance component of the JPEG file. Most of these features are + calculated directly from the quantized DCT coefficients as their first order + and higher-order statistics. The features for cover images and stego images + embedded with three different relative message lengths are then used for supervised + training. We use a support vector machine (SVM) with Gaussian kernel to construct + a set of binary classifiers. The binary classifiers are then joined into a + multi-class SVM using the Max-Win algorithm. We report results for six popular + JPEG steganographic schemes (F5, OutGuess, Model based steganography, Model + based steganography with deblocking, JP Hide&amp;Seek, and Steghide). + Although the main bulk of results is for single compressed stego images, we + also report some preliminary results for double-compressed images created + using F5 and OutGuess. This paper demonstrates that it is possible to reliably + classify stego images to their embedding techniques. Moreover, this approach + shows promising results for tackling the difficult case of double compressed + images. \n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-04\n 2008-04-02\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.93.8924\n + \ http://dde.binghamton.edu/tomas/pdfs/Pev06-SPIE.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.93.9803\n + \ 2015-10-05\n
\n \n + \ \n + \ Sinks in Acyclic Orientations of Graphs\n David + D. Gebhard\n Bruce E. Sagan\n + \ Key Words\n acyclic + orientation\n algorithm\n chromatic + polynomial\n graph\n induction\n + \ Greene and Zaslavsky proved that the number of acyclic + orientations of a graph G with a unique sink at a given vertex is, up to sign, + the linear coefficient of the chromatic polynomial. We give three proofs of + this result using pure induction, noncommutative symmetric functions, and + an algorithmic bijection. We also prove their result that if e = u0v0 is an + edge of G then the number of acyclic orientations having a unique source at + u0 and unique sink at v0 is Crapo\u2019s beta invariant.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-04-02\n + \ application/pdf\n text\n + \ http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.93.9803\n + \ http://www.mth.msu.edu/~sagan/Papers/Old/sao.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.94.3836\n + \ 2015-10-05\n
\n \n + \ \n + \ A Hybrid Scatter Search Heuristic for Personalized Crew + Rostering in the Airline Industry\n Broos + Maenhout\n Mario Vanhoucke\n + \ airline crew rostering\n meta-heuristics\n + \ scatter search\n The + crew scheduling problem in the airline industry is extensively investigated + in the operations research literature since efficient crew employment can + drastically reduce operational costs of airline companies. Given the flight + schedule of an airline company, crew scheduling is the process of assigning + all necessary crew members in such a way that the airline is able to operate + all its flights and constructing a roster line for each employee minimizing + the corresponding overall cost for personnel. In this paper, we present a + scatter search algorithm for the airline crew rostering problem. The objective + is to assign a personalized roster to each crew member minimizing the overall + operational costs while ensuring the social quality of the schedule. We combine + different complementary meta-heuristic crew scheduling combination and improvement + principles. Detailed computational experiments of all characteristics of the + procedure are presented. Moreover, we compare the proposed scatter search + algorithm with an exact branch-and-price procedure and a steepest descent + variable neighborhood search.\n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-02\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.94.3836\n + \ http://www.feb.ugent.be/fac/research/WP/Papers/wp_07_454.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.95.6013\n + \ 2015-10-05\n
\n \n + \ \n + \ Bounds for mean colour numbers of graphs\n + \ F. M. Dong \n Graph\n + \ Chromaticpolynomial\n Mean + colour number\n Let \xB5(G) denote the + mean colour number of a graph G: Mosca discovered some counterexamples which + disproved a conjecture proposed by Bartels and Welsh that if H is a subgraph + of G; then m\xF0H\xDEpm\xF0G\xDE: In this paper, we show that this conjecture + holds under the condition that either G is a chordal graph or H is a graph + which can be obtained from a tree by replacing a vertex by a clique. This + result gives a method to find upper bounds and lower bounds for the mean colour + number of any graph. We also prove that m\xF0G\xDEom\xF0G,K1\xDE for an arbitrary + graph G.\n The Pennsylvania State + University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-02\n + \ 2003\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.95.6013\n + \ http://math.nie.edu.sg/fmdong/Research/articles/boundsformeancolour.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.97.6361\n + \ 2015-10-04\n
\n \n + \ \n + \ Graphs that triangulate a given surface and quadrangulate + another surface\n Yusuke Suzuki\n + \ Triangulation\n Quadrangulation\n + \ Closed surface\n \n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-04\n 2008-04-02\n + \ 2007\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.97.6361\n + \ http://www.math.u-szeged.hu/~hajnal/seminars/kombszem/cikkek/sz_triquad.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.98.2248\n + \ 2015-10-05\n
\n \n + \ \n + \ Discrete concavity for potential games\n + \ Takashi Ui\n potential + game\n uniqueness of equilibrium\n + \ discrete concavity\n This + paper proposes a discrete analogue of concavity appropriate for potential + games with discrete strategy sets. It guarantees that every Nash equilibrium + maximizes a potential function. \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-02\n + \ 2006\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.98.2248\n + \ http://www2.igss.ynu.ac.jp/~oui/d-potential.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n oai:CiteSeerX.psu:10.1.1.98.3992\n + \ 2015-10-05\n
\n \n + \ \n + \ Flowshop-scheduling problems with makespan criterion: + a review\n S. Reza Hejazi \n + \ S. Saghafian \n Flowshop\n + \ Makespan\n Dynamic + programming\n Heuristics\n + \ Metaheuristics\n Simulated + annealing\n Genetic algorithm\n + \ Tabu search\n Ant + colony\n This paper is a complete survey + of flowshop-scheduling problems and contributions from early works of Johnson + of 1954 to recent approaches of metaheuristics of 2004. It mainly considers + a flowshop problem with a makespan criterion and it surveys some exact methods + (for small size problems), constructive heuristics and developed improving + metaheuristic and evolutionary approaches as well as some well-known properties + and rules for this problem. Each part has a brief literature review of the + contributions and a glimpse of that approach before discussing the implementation + for a flowshop problem. Moreover, in the first section, a complete literature + review of flowshop-related scheduling problems with different assumptions + as well as contributions in solving these other aspects is considered. This + paper can be seen as a reference to past contributions (particularly in n/m/ + p/c max or equivalently F/prmu/c max) for future research needs of improving + and developing better approaches to flowshop-related scheduling problems.\n + \ The Pennsylvania State University CiteSeerX Archives\n + \ \n 2015-10-05\n 2008-04-02\n + \ 2005\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.98.3992\n + \ http://www-personal.umich.edu/~soroush/Flowshop Scheduling + Problems--S.Saghafian.pdf\n en\n + \ Metadata may be used without restrictions as long as + the oai identifier remains attached to it.\n \n + \ \n
\n \n
\n oai:CiteSeerX.psu:10.1.1.99.8879\n + \ 2015-10-05\n
\n \n + \ \n + \ Global Impact Analysis of Dynamic Library Dependencies\n + \ Yizhan Sun\n Alva + L. Couch\n \n The + Pennsylvania State University CiteSeerX Archives\n \n + \ 2015-10-05\n 2008-04-02\n + \ 2001\n application/pdf\n + \ text\n http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.99.8879\n + \ http://www.usenix.org/events/lisa01/tech/full_papers/sun/sun.pdf\n + \ en\n Metadata may + be used without restrictions as long as the oai identifier remains attached + to it.\n \n \n
\n + \ \n
\n
\n"} + headers: + content-language: [en-US] + content-type: [text/xml;charset=UTF-8] + date: ['Wed, 07 Oct 2015 19:22:39 GMT'] + server: [Apache-Coyote/1.1] + status: {code: 200, message: OK} +version: 1 diff --git a/tests/vcr/huskiecommons.yaml b/tests/vcr/huskiecommons.yaml new file mode 100644 index 00000000..6fb7f604 --- /dev/null +++ b/tests/vcr/huskiecommons.yaml @@ -0,0 +1,672 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.4.1 CPython/2.7.10 Darwin/13.4.0] + method: GET + uri: http://commons.lib.niu.edu/oai/request?verb=ListRecords&metadataPrefix=oai_dc&from=2015-08-02T00:00:00Z&until=2015-08-04T00:00:00Z + response: + body: {string: "2015-10-20T18:22:39.000Zhttp://commons.lib.niu.edu/oai/request
oai:commons.lib.niu.edu:10843/136712015-08-03T16:10:30Zcom_10843_13612col_10843_13613
\nPreliminary + Survey of Northern Illinois Small-Scale Farmers\nKnetsch, + Emily\nMcKee, Emily\nSchool + of Allied Health and Communicative Disorders\nNorthern + Illinois\nsmall scale farmers\nfinancial + stability\nThe study, a preliminary survey of + northern Illinois small-scale farmers, directed by Dr. Emily McKee aims to + create a profile of farmers in the region. The profile will serve as the preliminary + stage of developing a larger ethnographic research project of self-described + \u201Csmall-scale\u201D and \u201Calternative farmers:\u201D in northern Illinois. + Using an inductive approach, the current study gathers and examines information + about the methods of agriculture that are being used, and the social profile + the farmers use to describe themselves. To gather information, the research + assistant, Emily Knetsch, has collected data about farmers from the internet + and compiled a list of over 400 farmers in the northern Illinois area; from + that list, farmers have been contacted by phone and surveyed using an open + ended questionnaire. Internet research, and phone surveys have gathered information + such as the number of acres farmed, types of crops produced, and the generation + of farmer. These data are being condensed, sorted and analyzed for cross-variable + correlations. The poster presentation for URAD will described the research + design and procedures, as well as preliminary analysis.\nB.S. + (Bachelor of Science)\n2015-05-12T00:52:29Z\n2015-05-12T00:52:29Z\n2015-04-12\nImage\nText\nConference + Poster\nhttp://hdl.handle.net/10843/13671\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\n1 Poster\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137062015-08-03T16:10:30Zcom_10843_13612col_10843_13613
\nFamily + Matters: The Effects of CEO Parental Status in Family Firms\nAnglin, + Lauren\nYore, Adam\nNicolosi, + Gina\nDepartment of Finance\nCEO\nparental + status\nfamily firms\nThe + purpose of this study is to examine whether the personal characteristics of + the CEO influence corporate policies. Specifically, how does the CEO\u2019s + familial status affect the allocation of scarce financial capital to research + and development and what is the resultant impact on profitability and firm + value? Financial data for 14,650 firm-year observations of the S&P 500 + firms from the years 1992 to 2012 is gathered from corporate proxy statements + and 10Ks, and then it is analyzed using regressions. While previous research + shows that family firms and founder firms result in a higher level of firm + performance, our study shows that it is the presence of children of the CEOs + of these family and founder firms that show this result. Return on assets + and Tobin\u2019s Q are higher when founder firm and family firm CEOs have + children, which means these firms are more profitable and are valued higher. + This can be explained by the lower overhead expenditures and higher R&D + and advertising for firms with children. This is likely due to founder and + family CEOs having a desire to invest in the future of the firm because they + are developing a legacy for their children\nB.A. + (Bachelor of Arts)\n2015-06-10T21:04:42Z\n2015-06-10T21:04:42Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13706\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137072015-08-03T16:10:30Zcom_10843_13612col_10843_13613
\nGustav + Klimt's Athena\nAntos, Ashley\nHouze, + Rebecca\nSchool of Art\nGustav + Klimt\nAthena\nWomen + are the predominate subject of Gustav Klimt\u2019s oeuvre, from his beautiful + portraits of women patrons and acquaintances, to his murals for the Old Burgtheater, + University, and Kunsthistorisches Museum. One woman who appears multiple + times in Klimt\u2019s work is the goddess Athena. Athena is the goddess of + wisdom, military victory, reason, intelligent activity, and arts and literature. + \ With these attributes in mind we begin to take a closer look at the works + of art that Klimt included Athena in, the context that the figures are placed + in, and for what purpose they were made. Did Klimt portray Athena in a certain + way to highlight one of her attributes? Why was Athena a recurring figure + for Klimt? I will focus mainly on three of Gustav Klimt\u2019s works that + include Athena and look at the different ways he portrayed the goddess in + each piece, including: the mural on the wall of the Kunsthistorisches museum + in Vienna, the poster for the first Secession Exhibition, and his painting + titled Pallas Athena. While there are a few other representations of Athena + by Klimt, I will focus on these three, which are the most prominent and well + known. I will also look at other representations of Athena found throughout + the city of Vienna. In particular I will consider the fountain in front of + the Parliament building, the mosaic at the Austrian Museum of Applied Arts, + and the owls, a symbol of Athena, on the Secession building, to gain further + insight into the importance of the goddess within the city of Vienna.\nB.A. + (Bachelor of Arts)\n2015-06-10T21:04:55Z\n2015-06-10T21:04:55Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13707\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137082015-08-03T16:10:30Zcom_10843_13612col_10843_13613
\nFamily + Involvement in Postsecondary Settings for Students with Autism Spectrum Disorder\nAshmore, + Alyssa\nMitchell, Susan\nDallas, + Bryan\nRamisch, Julie\nSchool + of Allied Health and Communicative Disorders\nAutism + Spectrum Disorder\npostsecondary\nstudents\nThe + goal of our study is to investigate family member roles within postsecondary + settings for students with Autism Spectrum Disorder. There is a paucity of + research so this study will add knowledge to the topic. We interviewed 8 disability + resource center staff members at community colleges in the northern Illinois + region. The main goal of the interview was to find out staff\u2019s viewpoint + on family involvement. Some examples of questions asked in the interview are, + \u201CDo you have any experiences interacting with family members of students + with ASD?\u201D and \u201CDo you offer specific services or programming that + includes family members of students with ASD?\u201D The interviews were reviewed + and general findings were grouped into themes. Results of the study indicate + that staff members generally have positive experiences with family members + and thought that involvement supported students\u2019 academic and social + transitions into college, as well as their success. The consensus of the study + was that family involvement benefitted students with Autism Spectrum Disorder + and promoted success in postsecondary settings. These results and the themes + will be explained further in the presentation.\nB.A. + (Bachelor of Arts)\n2015-06-10T21:05:12Z\n2015-06-10T21:05:12Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13708\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137092015-08-03T16:10:30Zcom_10843_13612col_10843_13613
\nVisualization + of latent Fingerprints using metal thin-films\nAziz, + Namra\nKocanda, Martin\nDepartment + of Biomedical Engineering\nlatent fingerprints\nsilver\nphysical + vapor deposition\nThe commonly used detection + and preservation of latent fingerprints methods employ dry powders or wet + chemistry principles to visualize the samples in the field and also for laboratory + analysis. This research examines a rarely-used technique to visualize latent + fingerprints with a secondary purpose of preservation as the sample fingerprints + may be exposed to extreme conditions. The method employs physical vapor deposition + of silver deposited on glass, plastic, paper and metal substrates. Varying + thicknesses of silver ranging from 1.0 nm to 10.0 nm are deposited on substrates + and examined for optimal spectral, transmittance and reflectance signals. + Subsequent analysis repeats the spectral examination of latent fingerprints + contained on the surfaces after the vapor deposition and addresses the optical + properties and visualization methods of fresh and weathered latent prints.\nB.A. + (Bachelor of Arts)\n2015-06-10T21:05:35Z\n2015-06-10T21:05:35Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13709\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137102015-08-03T16:10:30Zcom_10843_13612col_10843_13613
\nVergangenheitsbew\xE4ltigung: + Representing and Confronting the Nazi Past in Postwar German Film, 1945-1961\nCincotta, + Natalie\nStu\u0308bing, Freidmann\nDepartment + of Foreign Languages and Literatures\npost-war + Germany\nfilm industry\nDEFA\nGerman + films 1946-1961\nWhen Germany surrendered in + May 1945, cultural life found itself at a standstill. In the west, the Allies + took immediate control of the film industry, including the reeducation and + denazification of German citizens, while the Soviets and German film personalities + in the east began to rebuild the film industry with the establishment of the + film studio DEFA in 1946. The aim of this research is to examine the role + of German films produced between 1946 and 1961 in addressing and confronting + the German experiences of the Nazi period and wartime. Films produced between + 1945 and 1961 attempted to address and confront the immediate past through + representations of psychological trauma, criticisms of ordinary Germans and + accountability, and the definition of gendered experiences of war and postwar + society. Studying German postwar cinema is useful in understanding the ways + that the Germans understood their immediate past, especially considering that + the same questions relating to guilt and responsibility would reemerge in + scholarly and public debate in the 1990s.\nB.A. + (Bachelor of Arts)\n2015-06-10T21:18:38Z\n2015-06-10T21:18:38Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13710\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137112015-08-03T16:10:30Zcom_10843_13612col_10843_13613
\nCarbon + Dynamics of Prairie Ecosystems\nFarrell, Rachel\nGoldblum, + David\nGoldblum, David\nDepartment + of Environmental Studies\ncarbon sequestration\ncarbon + cycle processes\nprairie environments\nThis + study analyzes carbon cycle processes in prairie environments, with the goal + of determining carbon sequestration (containment) capacity of prairies of + varying quality. Results of the study will be used to aid in recommendations + to land managers regarding ideal landscapes for prairie restoration and conservation, + in order to mitigate atmospheric greenhouse gas concentrations. We incorporate + scientific fieldwork, lab procedures, and data entry and analysis. Our research + team analyzed soil respiration gas samples, soil samples, and above- and belowground + biomass samples to quantify carbon emissions and retention. Additionally, + terrain analyses are being conducted based on topographic and GPS measurements + to determine optimal spatial orientation (i.e., slope, elevation, and exposure). + \nField research is conducted at Nachusa Grasslands, and in order to + compare the carbon processes of prairies in two development stages, we chose + one plot which was well-established and of high quality and one which was + more recently restored and of poorer quality. We installed PVC rings in a + grid-like formation across each plot, and used these to collect soil respiration + gas samples for carbon dioxide, methane, and nitrogen analysis. Additional + data collection included extraction of soil cores from the immediate vicinity + of each PVC ring for belowground biomass and soil bulk density analyses; and + collection of vegetation in close proximity to each ring for aboveground biomass + analysis. All the data is currently being input into a GIS and analyzed in + combination to determine optimal prairie conditions for carbon sequestration.\nB.A. + (Bachelor of Arts)\n2015-06-10T21:18:45Z\n2015-06-10T21:18:45Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13711\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137142015-08-03T16:10:30Zcom_10843_13612col_10843_13613
\nNIU + Latino Oral History Project\nGonz\xE1lez, Sandra\nHuffine, + Kristin\nCenter for Latino and Latin American + Studies\nLatino\noral + history\nChicago\nNorthern + Illinois\nmigration\nAs + part of an effort to explore the Latino community and its history, the Latino + Oral History Project looks to collect the oral histories of the descendents + of families to learn more about migration patterns to the Chicagoland area + and Northern Illinois alike. More specifically, observing how various ties + to an area can impact the flow of migration to underdeveloped communities + and how those ties have lead to the established Latino communities we see + today. In conjunction with the Oral History 495 class, this project helps + facilitate the research of students by archiving existing data on Latino studies + such as migrant programs, schooling, housing discrimination, politics, etc. + By creating these bibliographies, the students in turn add on the growing + efforts to collect these stories. Ultimately, we look to archive, transcribe, + and observe how these ties have led to the success of Latinos to thrive as + we continue to see movement for more representation of this group of minorities.\nB.A. + (Bachelor of Arts)\n2015-06-10T21:36:47Z\n2015-06-10T21:36:47Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13714\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137122015-08-03T16:10:30Zcom_10843_13612col_10843_13613
\nThe + Effect of Calculus-Based TLC Physics Students\u2019 Performance on the Force + Concept Inventory\nHashimoto, Wataru\nEads, + Michael\nDepartment of Physics\nThemed + Learning Community\nForce Concept Inventory\nphysics\nThe + current study will focus on the impact of a calculus and physics Themed Learning + Community (TLC) in order to compare to non-TLC sections on the Force Concept + Inventory (FCI), which tests student\u2019s conceptual understanding of physics. + TLCs offer classes with the same major, smaller size, and in conjunction with + two or three related classes. For example, TLC calculus and TLC physics will + have same students to create the connection. The focus of this study is on + the physics program in the TLC. The demographic data, such as ACT score, + age, major and academic year, will be collected from fall 2014 General Physics + I. This research will compare the FCI result for every freshman who is majoring + in Engineering in TLC and non-TLC to see if the TLC has a significant impact + on the students\u2019 learning of physics. The experiment will be performed + as follows: I will choose the comparison group, who are freshmen, engineering + majors, from both TLC and non-TLC students. Choosing those students are a + necessary step because only engineering major freshman can join the TLC; it + will also prevent any bias due to different ages and majors. The next step + will be to investigate the pre- and post-test of FCI from both TLC and non-TLC + students. The final step is to normalize the data and plot the point to see + the distribution of FCI score. As a result the normalized score showed that + TLC students performed significantly better than Non-TLC students.\nB.A. + (Bachelor of Arts)\n2015-06-10T21:36:24Z\n2015-06-10T21:36:24Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13712\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137132015-08-03T16:10:30Zcom_10843_13612col_10843_13613
\nThe + Pregnancy Discrimination Act of 1978\nJacob, Rachel\nHoffman, + Beatrix Rebecca\nDepartment of History\nPregnancy + Discrimination Act of 1978\nequal employment opportunity + law\nThis project focuses on the Pregnancy Discrimination + Act of 1978 and its role in the history of equal employment opportunity law + in the United States. Although Title VII of the Civil Rights Act of 1964 outlawed + discrimination based on sex, many women continued to experience discrimination + in hiring and on the job. A series of legal cases were filed between 1965 + and 1978 that challenged employer discrimination against pregnant women in + particular. Court victories and lobbying by women\u2019s rights groups led + Congress to take action in 1978 and pass the Pregnancy Discrimination Act. + The Pregnancy Discrimination Act created specific rights for pregnant women + to guarantee equal and fair treatment in the workplace and in health insurance. + The importance of the Pregnancy Discrimination Act is still evident today + as the U.S. Supreme Court is hearing a pregnancy discrimination case, Young + v. United Parcel Service.\nB.A. (Bachelor + of Arts)\n2015-06-10T21:36:33Z\n2015-06-10T21:36:33Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13713\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137152015-08-03T16:10:30Zcom_10843_13612col_10843_13613
\nShould + the U.S. Expand its Use of Geothermal Resources? Lessons from Iceland\nRoot, + Larissa\nMartin, Kevin\nThe + Institute for the Study of the Environment, Sustainability, and Energy\ngeothermal + energy\nIceland\nUnited\nelectricity + production\nIn this capstone project, geothermal + energy is investigated both in its role in the United States, as well as in + Iceland. The feasibility of geothermal energy for electricity production + will be analyzed within a framework of technical, economic, environmental, + and political implementation. Key background information about geothermal + energy as a resource, as well as technology used to capture this energy are + explored initially. The United States and Iceland\u2019s resource base differs, + and does their approaches to utilize this renewable resource. This analysis + is demonstrative of the challenges any energy resource faces. An assessment + of the geothermal market at this time will lead to a general advisement on + resource potential in the United States. Iceland has made an amazing transformation + from one of the poorest countries in Europe dependent upon peat and coal for + its energy needs to becoming a global leader in renewable energy, creating + an industry profiting from abundant power, and increasing the quality of life + among its citizens. The United States is currently the world leader in both + geothermal electrical generation and deployment of geothermal heat pumps (Tester + and Horne, 2014). The question is, how many sites are truly suitable for + Enhanced Geothermal Systems expansion? With the highest grade reservoirs + already discovered, are we able to, and should we, engineer more reservoirs + to produce electricity?\nB.A. (Bachelor of + Arts)\n2015-06-10T21:36:58Z\n2015-06-10T21:36:58Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13715\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137162015-08-03T16:10:30Zcom_10843_13612col_10843_13613
\nImproving + Article Summaries: Can a Brief Tutorial Help College Students Write More Effective + Research Article Summaries?\nRosinski, Leanna\nWallace, + Patricia\nBritt, M. Anne\nresearch + article summary\ntutorial\nThe + ability to understand and condense research articles is crucial for success + as an undergraduate psychology student; however, this does not come naturally + to many students. Sommer et al. (2014) found that students tend to focus on + operational definitions rather than constructs in their summaries even after + a summary writing tutorial. The tutorial has been modified to focus on the + relationship between constructs and operational definitions in research. The + current study investigates the effectiveness of the summary writing tutorial + in improving students\u2019 essays. Participants were twenty-six upper-level + undergraduate psychology students enrolled in a psychology lab course who + completed a digital tutorial and three article summaries as part of an in-class + assignment. All students were assigned to read two psychology research articles + in preparation for class. One class section was randomly assigned to the experimental + group, in which participants individually completed a thirty-slide PowerPoint + tutorial designed to help students focus on the most important and relevant + details of a research article. They were then instructed to type summaries + of the two previously assigned articles. Students in the other class section, + which served as the control group, wrote their article summaries first and + were then directed to complete the summary-writing tutorial. Participants\u2019 + summaries will be evaluated based on the presence of constructs (mention of + the study\u2019s hypotheses) and operational definitions (mention of the study\u2019s + methods and results). Summarizing performance of the experimental and control + groups will be compared. Implications for intervention strategies, as well + as suggestions for future research, will be discussed.\nB.A. + (Bachelor of Arts)\n2015-06-10T21:43:41Z\n2015-06-10T21:43:41Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13716\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137172015-08-03T16:13:44Zcom_10843_13612col_10843_13613
\nAdding + Technology Boundary Management to the Sleep Treatment Education Program for + Students: Effects on Sleep, Technology Use, and Burnout\nSenf, + Maria\nBarber, Larissa K.\nDepartment + of Psychology\nsleep habits\nacademic + performance\ntechnology use\nSleep + Treatment Education Program for Students (STEPS)\nCompared + to the general population, college students have poorer sleep habits, which + also tend to negatively affect their academic performance. Research suggests + that part of this issue is due to technology use patterns among students. + Given this context, it is important for students to manage the use of technology + in order to protect their sleep time. The purpose of this study is to determine + whether sleep and technology management training can increase positive behavioral + outcomes in students. This study examines the efficacy of an educational training + session that adds information pertaining to boundary creation around technology + use around bedtime to the Sleep Treatment Education Program for Students (STEPS). + By comparing the results of the enhanced training session (STEPS-TECH; n = + 30) to the original STEPS program (n = 30) and a control group (n = 30) using + an experimental design, my goal is it to determine if making people aware + of their technology use around sleep time can improve their sleep habits, + technology boundary management, and academic/social burnout.\nB.A. + (Bachelor of Arts)\n2015-06-11T14:28:10Z\n2015-06-11T14:28:10Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13717\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137182015-08-03T16:13:44Zcom_10843_13612col_10843_13613
\nDigital + Design with Field Programmable Gate Array (FPGA) Prototyping\nShiau, + Jayson\nHashemian, Reza\nDepartment + of Electrical Engineering\nNexys 4 digital board\nVerilog + Hardware Design language\nDigital Design with FPGA\nThe + Digital Design with FPGA prototyping being undertaken with Dr. Reza Hashemian + involves using a Nexys 4 digital board created by Xilinx and manipulating + it through a hardware design language to be able to incorporate in all sorts + of technological devices. Some of the challenging components of this project + are the slow learning process as progress is made, the Verilog Hardware Design + language, the application of the digital board and FPGAs, and designing the + technological component to be used in application. The most probable application + I originally intended for this project was to develop a robotic vision system + to get a map of whatever room the it is set up in and to target a certain + object in that room. Things that needed to be considered were the comparison + of robotics vision to the eyes of a human and that the vision the robot uses + has two fixed points that would read two different distances when looking + at a single point in space. After this, calculations would need to be made + for the angle between these two lines to come up with a good estimate of how + far that object is. Continuation of this project will allow for the advancement + of the vision system development and a mobile robot component to be able to + pick up any object it detects and bring it back to the user.\nB.A. + (Bachelor of Arts)\n2015-06-11T14:28:16Z\n2015-06-11T14:28:16Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13718\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137192015-08-03T16:13:44Zcom_10843_13612col_10843_13613
\nThe + Differing Representations of Imperial Women by Plutarch and Tacitus\nStriegel, + Markie\nBruno, Andrew\nDepartment + of History\nimperial women\nPlutarch\nTacitus\nRoman + Empire\n60-117 C.E.\nThis + research examines the different representations of imperial women by two ancient + Roman historians, Plutarch and Tacitus. While both historians wrote during + the period from 60-117 C.E., their different positions within Roman imperial + life affected their views of the empire and its people. I will argue that + their individual ideas about morality and the Roman Empire contributed to + their divergent depictions and descriptions. By analyzing each historian\u2019s + own ideals, the historical context in which they wrote, and the varied scholarship + regarding Roman imperial women, I hope to contribute a significant and original + argument to this discussion. This comparative approach of two of Roman history\u2019s + most influential writers will be integral to understanding more about imperial + women during the Roman Empire.\nB.A. (Bachelor + of Arts)\n2015-06-11T14:28:27Z\n2015-06-11T14:28:27Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13719\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137202015-08-03T16:13:44Zcom_10843_13612col_10843_13613
\nCharacterization + of a CCD camera for x-ray visibility spectroscopy\nStringer, + Tyler\nLurio, Laurence\nDepartment + of Physics\nx-ray diffraction patterns\ncharge-coupled + device (CCD) camera\nGaea\nWe + expect to analyze data compiled from many snapshots of x-ray diffraction patterns. + These snapshots will be taken with a charge-coupled device (CCD) camera, and + these data will be processed by using NIU\u2019s supercomputer, Gaea. By looking + at the differences of these images, we can seek a working method for detecting + the motion of small objects, such as molecules, with x-rays and a CCD camera.\nB.A. + (Bachelor of Arts)\n2015-06-11T14:28:44Z\n2015-06-11T14:28:44Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13720\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137212015-08-03T16:13:44Zcom_10843_13612col_10843_13613
\nSex + Differences in Jealousy\nValles, Dakota\nSagarin, + Brad\nDepartment of Psychology\nEvolutionary + psychology\nsex differences\njealousy\nsexual + infidelity\nemotional infidelity\nEvolutionary + psychologists theorizes that humans, as a species, have established sex differences + in jealousy due to the male\u2019s fear of paternal uncertainty, and a female\u2019s + desire for paternal caregiving that stem from our evolutionary past. This + suggests a male is likely to be in more distress over sexual infidelity, while + a female is more likely to be more distressed over emotional infidelity. Recently, + new findings have suggested that these differences might be due to the male\u2019s + ability to visualize sexually explicit images more vividly. A study will be + done which has men and women answer a forced-choice infidelity dilemma, either + with standard instructions or with instructions encouraging vivid imagery. + Competing predictions will be tested, with the results supporting the evolutionary + psychology theory or the recent challenge to it.\nB.A. + (Bachelor of Arts)\n2015-06-11T14:28:52Z\n2015-06-11T14:28:52Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13721\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137222015-08-03T16:13:44Zcom_10843_13612col_10843_13613
\nUse + of Stable Isotopes in Quantifying Seabird Influence on Island Nutrient Dynamics\nWeston, + Maria\nKong, Stephanie\nJones, + Holly\nDepartment of Biological Sciences\nseabird + influence\nNew Zealand\nisland + ecosystems\nstable isotope analysis\nSeabird + colonies can have significant effects on island trophic structure by infusing + massive amounts of guano fertilizer into terrestrial zones (Jones, 2010). + These nutrients are important for driving soil chemical cycling and biotic + communities including both plants and invertebrates. However, introduced invasive + rats (Rattus spp.) threaten seabird populations globally by preying upon every + life stage of nesting seabirds. The objective of this research is to quantify + seabird influence on New Zealand island ecosystems using stable isotope analysis. + We will take advantage of the fact that marine nitrogen and carbon are enriched + in 15N and 13C compared to terrestrial nitrogen and carbon to track seabird + influence through island food webs. By looking at stable isotopic forms of + nitrogen and carbon (\u03B415N and \u03B413C) in soil, plant leaves, and spiders, + we will quantify the amount of seabird-derived nutrient cycling throughout + multiple trophic levels. We expect to find greater concentrations of marine-derived + carbon and nitrogen in soils, leaves, and spiders in seabird colonies and + lesser concentrations farther away from seabird colonies. Our research will + provide managers with the means to measure progress towards restoration on + the >1100 islands recovering from invasive predators with a single soil sample, + and demonstrate the important roles seabirds play on islands ecosystems.\nB.A. + (Bachelor of Arts)\n2015-06-11T14:29:01Z\n2015-06-11T14:29:01Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13722\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137232015-08-03T16:13:44Zcom_10843_13612col_10843_13613
\nAssessing + Pre-Service Helping Professionals' Attitudes Toward Disability and Age\nWilliams, + Lexie\nCastle, Nancy\nSchool + of Nursing and Health Studies\nhealth care professionals\nbaby + boomers\nelderly people\npeople + with disabilities\nImplicit Association Test (IAT)\ntraining + needs\nIt is clear that health care professionals + training now for their careers will be working with a decidedly older population, + as \u201Cbaby boomers\u201D age. In addition, there are approximately one + billion people across the globe with some form of disability, around 15% + of the world\u2019s population. How prepared are healthcare workers of the + future to work with elderly people or people with disabilities? What preconceived + notions, or attitudes, do they have that can help or hinder their success + in working with these populations? The best time to assess these attitudes + is while they are training to become those healthcare workers, i.e., the + pre-service period. This study uses an approach to assessing innermost feelings + that people have about age and disability, asking pre-service health care + \ professionals (NIU students) to complete a sorting exercise that measures + truthful opinions toward disabled/abled persons and young/old persons. The + \ Implicit Association Test (IAT) accomplishes that honesty by providing + the participants with images that correlate with abled/disabled and young/old + \ persons and asking them to sort the items, along with positively or negatively + connoted words (evaluations/stereotypes). The theory is that it is easier + (and thereby faster) to make a response when the items that are more closely + related share the same response key (disabled and good, old and bad, etc.). + Results of this study may point to training needs in areas identified by + negative associations with either disability or age.\nB.A. + (Bachelor of Arts)\n2015-06-11T14:29:07Z\n2015-06-11T14:29:07Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13723\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137242015-08-03T16:13:44Zcom_10843_13612col_10843_13613
\nEvaluating + Colors and Concepts\nWittke, Emily\nBuck, + Todd\nSchool of Art\nwarm + colors\ncool colors\ncolor + neutral\nemotion\npsychological + feelings\nThe purpose of this study is to determine + whether the use of different extremes of the color wheel can change the intended + concept of a work of art. Specifically, what happens to the significance of + the message of the piece if it is only colored using warm colors versus cool + colors? How does the emotion created by the piece change when the color schemes + change? \nPrevious research has shown a connection exists between meanings + and colors. Colors can often be used for symbolism and can be used to evoke + psychological feelings within the viewer. For example, red often creates a + sense of passion, energy, and intensity, whereas blue is often associated + with calmness, security, and trust. \nThis study is an art project exploring + the significance color plays in concept in pastel drawings using warm colors, + cool colors, and a color neutral line drawing.\nB.A. + (Bachelor of Arts)\n2015-06-11T14:29:12Z\n2015-06-11T14:29:12Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13724\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137252015-08-03T16:13:44Zcom_10843_13612col_10843_13613
\nDocking + of MetAP 1 for Inhibitor Candidacy\nWong, Aida Yukie\nHagen, + Timothy\nDepartment of Chemistry and Biochemistry\nMetAP + 1\nRickettsia prowazekii\ninhibitor\nMetAP + 1 is a widespread enzyme found in Rickettsia prowazekii, a gram-negative bacteria + that causes typhus and other diseases. As such, it is critical to find active + sites of MetAP 1 on Rickettsia prowazekii in order to find inhibitors through + protein-ligand binding for antibiotic drug candidacy and development. The + program DockBlaster uses docking as a molecular modelling technique in order + to predict the orientation of a ligand when binding to a protein. The PBD + code for MetAP 1 (2B3H) from the RCSB database along with the corresponding + ligand, glycerol (GOL), is submitted into DockBlaster. After virtual screening, + it was determined that MetAP 1 has six pockets into which an inhibitor ligand + can bind. In a future study, in vitro enzymatic assays for MetAP 1-inhibitor + interactions will be conducted in order to screen for possible antibacterial + activity\nB.A. (Bachelor of Arts)\n2015-06-11T14:29:18Z\n2015-06-11T14:29:18Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13725\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137262015-08-03T16:13:44Zcom_10843_13612col_10843_13613
\nVisualizing + Chiropractic Motion Palpation Techniques\nWoodall, + Melissa\nMartens, Kim\nKorzen, + Erik\nSchool of Art\nmotion + palpation\nillustrations\nchiropractic\nMy + research and artistry project involved the creation of two educational posters + showing different manipulations that are involved with motion palpation, a + chiropractic technique used to diagnose and treat patients. The posters I + created are designed to be displayed in a chiropractor's office to be used + as an educational tool and visually inform patients about this technique. + To conduct my research, I analyzed literature, consulted with a chiropractor, + and took my own references of each adjustment. After gathering information + and references, I drew my illustrations and designed my posters. As a result, + I have created two visual aids to help educate patients and promote conversation + between chiropractors and their patients.\nB.A. + (Bachelor of Arts)\n2015-06-11T14:29:24Z\n2015-06-11T14:29:24Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13726\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
oai:commons.lib.niu.edu:10843/137272015-08-03T16:13:44Zcom_10843_13612col_10843_13613
\nVision + System for Round Ground Metals\nWoodall, Matthew\nMirman, + Cliff\nDepartment of Technology\nRound + Ground Metals\nquality control vision system\nThis + project consists of the design and development of a quality control vision + system. Round Ground Metals produces small diameter Swiss screw machine quality + stainless steel bars that will acquire various defects on them during production. + The project consists of replicating the factory process of the steel bars + rotating/moving along the factory line and implementing a system consisting + of a Cognex In-Sight 7000 series industrial grade camera working with the + In-Sight Explorer 4.9.1 software to detect any defect along the steel bars. + Along with the detection, this project will have the ability to mark the defect + on the bar and display all of the data gathered from the Cognex into a visual + display screen that lets the user know the distance from the end of the bar + that the defect is at, the size of the defect, and whether or not the diameter + of the steel bar falls into the provided thresholds. After design is completed + and prototype testing has been sufficiently done in the lab, the final design + will then be transferred to Round Ground Metals for them to fabricate and + eventually implement into their factory line.\nB.A. + (Bachelor of Arts)\n2015-06-11T14:29:29Z\n2015-06-11T14:29:29Z\n2015-05\nText\nConference + Poster\nhttp://commons.lib.niu.edu/handle/10843/13727\nen_US\nNIU + theses are protected by copyright. They may be viewed from Huskie Commons + for any purpose, but reproduction or distribution in any format is prohibited + without the written permission of the authors.\nNorthern + Illinois University\n\n
"} + headers: + content-type: [application/xml;charset=UTF-8] + date: ['Tue, 20 Oct 2015 18:22:38 GMT'] + server: [Apache-Coyote/1.1] + status: {code: 200, message: OK} +version: 1 diff --git a/tests/vcr/kent.yaml b/tests/vcr/kent.yaml new file mode 100644 index 00000000..a39df6f8 --- /dev/null +++ b/tests/vcr/kent.yaml @@ -0,0 +1,85 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.4.1 CPython/2.7.9 Darwin/13.4.0] + method: GET + uri: http://digitalcommons.kent.edu/do/oai/?verb=ListRecords&metadataPrefix=oai_dc&from=2015-09-15T00:00:00Z&until=2015-09-17T00:00:00Z + response: + body: + string: !!binary | + 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 + headers: + cache-control: [private] + connection: [keep-alive] + content-encoding: [gzip] + content-type: [text/xml; charset=UTF-8] + date: ['Thu, 17 Sep 2015 13:01:45 GMT'] + server: [nginx/1.2.1] + set-cookie: [bp_plack_session=02e4166d0e59373b4e498945ede30fb4620eb83f; path=/; + HttpOnly] + status: {code: 200, message: OK} +version: 1 diff --git a/tests/vcr/uky.yaml b/tests/vcr/uky.yaml new file mode 100644 index 00000000..e790ef0d --- /dev/null +++ b/tests/vcr/uky.yaml @@ -0,0 +1,583 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.4.1 CPython/2.7.10 Darwin/13.4.0] + method: GET + uri: http://uknowledge.uky.edu/do/oai/?verb=ListRecords&metadataPrefix=oai_dc&from=2015-10-18T00:00:00Z&until=2015-10-20T00:00:00Z + response: + body: + string: !!binary | + H4sIAAAAAAAAA+y921IcWbaueZ16CrfcK7chMwgiOAoyU9UIHTOlEgvIlbvqpsyJcCCSiPBYcRAi + r+oRlllftdne1jf9Gn3T/Sb1JP39Y8zp7hGEA8pdWhvUMquDgOnzMOZh/OP8w58+9nvJh2w07uaD + H79tNZrfJtmgnXe6g7Mfv/3l+OXKk2//9PTRD+/33qwcvHv96BuaD8Y/fns+mQx3V1cvLy8b+TAb + pKP2efdDNm7ko7NV2q6uNZqr34bWux/H3ZkvLtet3Vqz2Vr9b+/eHrXPs3660h2MJ+mgnemzcXd3 + bL99m7fTiU3tLiM++uabuzQLi2l8HHe+ffromx9G2XiYD8bZ83SSPV1rtjZXWs2VteZxa3t3k/88 + +esPqzNN7JN/n2bjiSh38uO3b7vjyWHWzked8bdJP5uknXSSHoyy0+7HH7/N0+7fOu1vk+R0lPd/ + /Db233py3Gzu2n/+yh+ng0m3V/6V0St/fRpWNb0Y5Je9rHOWNaYXV42sM13t5KsMsKoZ2oxYD9Or + TIhffPPNI9ao6Wm151nayUb69Q/dTsawp11+pJPd693vXkzaf2PtmTZ4lA3z0WQMcdbWf1itfKuu + WDH0SPvDgoCtnePWxu5Gc3dtCwKWf9d8vvlhnE2Ohln76XB60uv6Hu+2s8HZ6IfV+Kf6hgtmdcfP + Zpv9sFoQ44e4bUYY37PdTjux877rP88c4tpj721Xvw2fdtrFZ8PpqGcnv9NezXpZH+KPV1uNVtH2 + Ey9K8kfvSZhicpfL4m3jXdFOt3cn3Ukve/oz85+2L66SZ6MuR3KcXHYn58nr7tn5ytFkxF7y079O + eU3Os06yN+gkx1l/mI344WiSZT3OROzpkTptj7J0ko+evs6Hl3neWU6Oz7O8k4+y5eTNG2scW8w0 + f5l29fj0+OCnlM6vt+xk4/aoO9Qz8pQ+k2Lex6N0wM0fTeyJSfbTk+4gmyRLP//leP9xcp6Ok3HG + BU97yUlYIQvo5Ve8jcm5ljmOy+Tq+TJTljmJy1z61+PHyVhrHTeSN4NkwuDDlFcjdtvJ2tzF8XJy + mfU6ib7lko5yvcVJe5S2LzTScJSfcFjGTOhDluTt9nQkGhqx//XY+0+66n2UsTjmHqfbgITdcdLn + ao66rEIrmlwNuW693lVykmWDxBdEd4zYS0dnWfxWPZ4yhcl0lK1Avom+4m3rn8ArksvzbvucJtqR + MTuvlbVzHu/RIElP8ulEvxlnxeJtHuPJtHOVXDIJTsFpPuoz7CRPRtmHbnZpXdjkjWBhGgzxgVOW + j66MOuHNYe6+H6tswFRTLKamWUzS7kCEi8SB+Nr2Ho+0/jzm/7XgU7q8cnr1+UJf8Wvv2ambDhi/ + 0/3Q7UwZYDzk5zMd0mzEbPmhtdlMTrNs0kh+hujTsdYjgttIrKyYbpZCrdCzdjmSccFkw56JSp18 + kIlAsFcOgM8UJsmrCUGgeZ6c5u3pWFs3Oc+hduz28pydDTQWIdLBQAu4vp2hN46bH9C002Gj1V9e + Um+Z73O2k0VfDTmAp76ry8ne0fG7ZG9jo5UspXP3oZdfJhyy/Mrb+mXiIH+AROE8c+famnq8Wpw3 + HwUuAivxPRtkfJB9ZMdsvQVB7aqcpzqfHO3fK3c6dlchrRPH72EyznXSrpI2+3fCAZ2e/AY9tXN5 + sbnpZCK+yOR0Caa6AvzLCG+ksiem+qrYgyQOJ+bXWmlurTRbx83twN29uf5q7UTFp5Ps48R+bz/Z + 73Uj0snTdDiMDHF12Dm1RuFP1qzku8kNsGABh1wV1+adLTvw+VR+rocZ7bPuqq6pyAptGvz8p3TE + FvayH4UH/ut/WX/yPdz/e2vwcfLjggksHH2cT0ftCi+Zf5MZjJN3GCAI/9B7bT2FL40ohiLGnNGn + v/wcIZI1Kv/wyBqG/X7qZ3ezteEH1Dv0s+BUmW+4befntna6DLc0DAe0vicgyWQFxsKB6SRLryML + ueGDGVY0d/XqP7uNZ9V/eXzrIud28cXgjMeVmzo4m+1VyFH4FYAM2BI6XS1xmDCtg1YhwX82hN24 + O4Rt7a5JBvgKYVdXvzAI++JD2ps6+oOvwRiSo72XL5KDdDLKe8nBKD8bpX1xgYgZ7fg6/LX3JELS + t93l5ADIe5p1rUn8/UyjX9PeJB+AU7PBoHuqZ61xvXGVr7yLcAtgzSTm5wcntfkZMMw+DhHUhEF4 + gg2IgVEMh4l7jZMUfNe+MNiT8GqnI0RO5EDJ3BL29Qf1L4LA5EcwxwHyK3x3AWHCwMvJCSw7Sfs5 + 339IR91caOT0tNsGbTKisDBdntGTEJqLes7YT1JgmHfN/9OfuLCmKbzzcdgDjNm342z0odsGYdIE + HMbqTq7sD8UUNEong0n0eWIqS9Dvwxp8HCGk2F1AWVm5/S7cAloACGolUFtBcEgWIDJI0e1rJia7 + Ab8EBMH0vg++MjZh2ptYU7DreNI98/M1Ps8v6TPsSYl1LrLzvKeNSBgjEV0cno/5bIxoHpD+/N6H + lYDEkaiY2jjva5vHaCUShppKntBawDigunAytCKfv8079tFDyun5UayePju79x/VrNkdqqAYm3fl + 5z+MajYeGqp5iQR4mV4lR+lpNrkKz5iRJ8IZo038ofLW1Td6c3xU/8c44HukDTvm9U3vPyRocpIq + x0bYpGT5hdrOtFqbzd3W+ldIYDrgLwwSvLEHUhzxjUSPMXxJkuDzbNw9GwAJEDnFkOygLwACR+hA + uQlpp4ta58/diy5MIvfWCzHBz93RBaJ0J+1bjwvb7J2lo8u0p/6EA+ob/oTGgGH3z0fdBUNW3/Zj + sa3paCimaAwe1htYoDPhDqoFKSiNUXTEIPKh/RzgwCLi7PUg2IDVo6c6zgFQS2+e7yG/hM9hZZFj + RjiVzL0KQQWHtowPI88XkkjS6SSXIgvFjUnsGoMFaU/E6SucHAF6lEvhwkyR78BcxaTQ8pQ76l8b + m0/HUgoJ54nNGn4aTqQyCSPQEzIZWKsjRUDZR9BSTLTWMAPYb7VFgprYX0b2ZezPctDMyNYBguq2 + r4Bjq8OMsSao6VhPu533+zlvjw6eVmeKO2aGgrLX5WGHj4cp0xbQh4pvkJ45KIHBu2rZPr+dqz+5 + n7oKO+TV11gq4srPf5SpN9ceGlOfuWl+II04kYvPsPTDHFRvGtj6Nm9QgXKQe9kpeobpyN+Thb29 + yzo6kNNbmh1NOdLShWdBM7NIkbKP5qg7mEpEOEVHUT+9n6ZnKFc7vay+ybP8ctK94e8zJCufhvoO + 556he6ivWN+6IzjZ3G1u7a7tfAUnXyI4AYU2I7p/liFm/jLm3U+OpgisV3fRU+whjE+Wpc7A0nW+ + UAERIcgr7jPKihcj9PS3KSoEJ0q+HAFFafCRVI+mAVPv+DyxRQReeKJFiMWZCS9ySOzNE+wpWhrM + 01hqoYFxKdv78GVL5czL4hL7DG5xWRz8cArPlh2lPalimHzURS8Jm//H3/87OC/n5cTQlA1AKW1j + pv/4+/9AncsMLvVgwmThybJFVSffSy9F+NbODliDhQhB8JiOZY4HPrV5y1gGBGCQ4ajbXzCEW9Nk + 8rEpgnHoEO+IrUbyHEcCrINoBtp5r+eWCmjT2mpCmUEn72PIG2NLNhPGuBto1XpCc3kUQJO0Df4c + V8hnXcoXwaZaNXDZ52GwvmyhmoiwRoUIvPSY6SfaGggmRiKtbgLi6kjyPJ0ODC9D1HZPGAVlkAGR + ZZ/RlaxJHdwmMCBi0+p3e9q2EZZN3Boaj3SOoDEDoi1hfq7AqhwFpwyXYOlJs7EuI5dm89isimmv + nwvFmVODrJVM3bpwau4kS9s7je3yGz8V8LdoxxRijKbZyjqHOVQYM//+EBWNWYrYnCd0t16Zgp/L + 8tAC2kQ+3SYp5YzgW8Xovo7mlua4vRbnFH67HQ6sjtLMoa0/Qr3srDvuOeQza6fuzaIpbMwMxqld + 1xQ2n1Sn4Gf5ljtText8F/2CFnenQhfJAHbbcRFwHaQdRJ0o6H+KPch2s9DpGcFRY+1sNTbiLEVs + 5JTKzYdUmOqvzA5pj0aQNWhlZxVynHF1G4/8xfRnRTpL9oaLlxYn18UhaIdV5cYT7RuuZjxtPiTz + f7JVHjFbh1kRJTKYWdNOP8fogq5l95fHhLYZRFTthZNVrFVG0nD5oZwuWhA7bItRh9pVvzIFbDxo + mpWpK59sNnYi0XS6fk1xHhgk+3odrhL+Wg7DX1+mVxm2z/hnDgbzsn62thpb1X6wsk0msZ1u9NY2 + XdHFQfcifn/tRjDXePHNlBzIb1fDLcgi/pONylA6LB/w0tAhRYPNo0CL7WajWUxGLXBpuJgOeUdw + Rxn7+Suf7bmj1895wk3mSs6zHtYmvBk4AJjyw5UPZ0u/TJGJOzgYSA7zCzxDLl6BHdvQ2eujx6Hx + 6D0sYPTBbqRpZC/1cuhBc/+I7coiWZLOQGeEUCvnCj33GSdDJve0Z04gTICfu9ycrIcm/VyuASz8 + IjNnlOKv9odbZL7mSnP7Xsp8GzsG0P39Nqe0f5Ymd33roQl9ej7rxZWg3xUCrG9kD139n6MKpr7F + vReKWs1PEoo2N78KRV+iUPSitOLxkh5O+/KWOkKXNqxX0+7dLgehaincBt+mvLedDMZtzkDSx5n7 + nGAqL7Ob2RAQfuNNbqd4golN8f6bRRR4K5uoPPpwUTFPK7hTryfcDIfx+Ur3N3RXLuQHM+CJF4g1 + XMKGNb6x/qgULbmFIIQpSDtdLfwyHZn3WwTPeM7BTjD4ftB4zkSsO3VtwLuBoQiEG/6cyL0YFzYx + GNeHzswwqiLRHI9tvIqNVZbRrhmT+7htwseQNAcgkcmki3Gyk6lTY4hMY5Sj5jG2J4ceMVjNR4C3 + GH6oWcE1wzTGaKD5aa752SjHHOtQo5BAnW5CiEEEFUed5LtJ+jjBWN0FAdhY+Amiqu+BW2xDArNm + ItUlS4YC4Jw8LlS89m2ULedbz3YGGAFujeShuKydXCl2EjDjklFg+IUUFwzc8X2uUZFHuU4kM6xT + 6NYXLqqR7EEATp3IDFbbDqKXYQ2klN5UtvUCjs4SRJJPDxO7yaU24LTfB5zQlSCQE79uOUHKim6e + fGP3gJ/NX97RWpXeJrUg9HY7HGyat9YgKT7Evg2AQPcs5i/bunnbjc3wd58Ht5TvhN5OssmlfFz/ + n//bQdrqE2vozaojhh3A66Dtxy0MCdgyZb9/YZKJZqKpcbrPEZcrp1Ujhh6AwaKSFKwmkdqRZr76 + ZXVcLPO/MaSMLOaVGO6j3Xani2/ZEPHY9BZOkyXfr3hfC0KpezXtFO/H4ygUBDm63KOAufGZ6Pan + fdvJNfNl1VRSXrKPxe+3g4/rm0FwMghxGmDy+fVUaBBGrC69XAbu2uaqoUdCZIvrw3HYVNPXOqY3 + dw4tVmB7Er5P9SjKRxpp2YQhrjtSHd8MUI8YVHbi47pYXjvfVXOZ4DD2EBBN0kwTollGCBp2U524 + rqDxG08rI572Om7BzKbaJUIDEw4t+37r+orF6J3iZeVVwrwlKxCHg3OP0ADqF1XmqWAaE79QC/Qm + dvrMmMSJDM673vgkQ25yd5nZu679QP3CytiiGWmNhdi3miwvK//RhGa7NaYTudfMWdf1ZUC3Xzil + Tbbyp7vYSJPhx30tt6KBYeh8aHShhy4vhzGMmaHDO2LON+H5h4Jyled6lSYAVHN0NIKgwdX59tff + z4mTjYWbAjCc7kKBOEfDLtNHYxFYDYqt5JDXTrvJJsHrZGvlwNnx8Ztf7UCnmYdIXsf2PPdlduRa + Rn2bvfTBLbl68sxJWcDCx7hdDMRTGTflJ/fMTbnVxDVz1tj3T5IDkRcemhxYYtt6Oe3wOuJdaM27 + 9/Jcc2P97kau7d211ld57kuU5w6DLeEwMOVjvddvu9H5QWD8sDu+SN4VTg92NxY443yilGd87TIf + XZzk+UUUtMbJGQLGaGAALIRLwcxOcKZF9sDaDqOHl8rpB0GlAiRgFBPkqOq0ccu5qPhqSPBCdYy/ + K5Ii0IX3XsIcFqXxVJ636RkSEA2qE0BOc7MO3GEMDEeD/bsYzLGwGKYGMRepRMWby46YZZRXxIUh + XO+q+KwQm4L/rYtxarXYRdh9d03vqulj5+kSneaBNcmAx8hFg8Chwp+1aymyaQetPR3DHZ3929TB + EpfimT5HCGrTx40Wcxkgu5wgQMA+E+eMCnrjzIjVj56ZoSUKrbNIwMCRLVt+x5qMCBRCz+hVP1W2 + VMMqZG6ZJrOMW+Qzhqz1R45se9/QgQRuBpw/910nA2nY9kZHacEXQyrRZOm92Fmu6h6M+TF/Cy5C + eXs/g4s2n3wmpg1TeGhMe/bm1zPuQXbW66KIat/gyuJ3WgGA9f10ppOr+r+O9XxlcpTr9vtTNB43 + tVU0AJdUp7jNUa/vFfsPbpD1f8f/EdOn3kQZvG8f+f6Dk3XME1XbRK17MB44O7vrXyOGPEXEF+Ye + bHbt52apS/ZQbBLTzCu+B0PZg7sR6YKvhbvj2N34Y6Dkri44sd1bfEx6Gb4Vh1w3Ij9euOwX/+wc + pKLO3vM4EzTUFqiCpwpxKkIOJm+W7romzqNRoUsYtgU4w5uFVkgQ0gZ/yO1IegDJw4pXL7TShNAG + 0kTG76SBYyo2SfwbR1VC91EFyO7JL/CPlduPeQQxlDuKEHSLD6JaW2iL45wZPCDO7RMxXRJysoKb + HEEU6TKWEwWvYnDXbE4yAqa6CqHmlYtGV8ccKO7ZxDQY2OfGATjUu0hHeBXYvx0TgJLpvMP8XEWB + xfk874RocRPqZWE2AFJZRkoWgV7mdl7/tWUQiFoLqQPKXYt4zzMAuBUioqPgqmSr0no/ieqiV1VT + Eoc0SjMXNs9VY0I3E4c3PPw6CtKmhY1tJK9CBFgVKRdpAsIW/OPv/wcgMvvImGdsPlQaKEAcjwf0 + bGAnge2hb6Bs8g63TVulMKf8xOP3Z/TcmzjpyIRACBmb74cbNOe6bN+NQHLZccI5jgeikyfwOGbU + O10J247LCx4M3TwoWAJOxSgfFlqcrEbyXppHnEpIbBA7TDv9Ls4VpmQMnbhBRjg9Yl7fJ58VTZeq + nmZ2KeKFcErM7+bjRvISkmUfCcXuQUVdjlk9WpzN5TmxYET+QUhNSSHxdr/5FwuqDovTkdRx4WDL + lCO3OFHefF8kanBKNFJuLg90V3G54LNKZ+FizVA9eH5YEJpGIS1EN7WLWvHEM9nBnhB/AuyQyxVe + /dszxLBxbfK8IooaGOOHrNpPRUCj+cCcK/Qo6Fu9M/o3hLB+3V1fDxKHx3TWwcVMKuXztHfqR0pi + jX8QH6vKgJIK5OPmmjzpXIvmlVZYc1D5umRn5DwlIxKf+WI9MUd1yXGlp3KftM2z/hUEeKnHuIcX + DgeQVwL5JZMymQcFJxne+67JJ/Ec+95XTmD5Ar70KXCGizEiJzDz3qeOwatgZlBJpX5mfImmwl6k + qY4vieRqHbeKL0xa8YNpJEeg6POJVP0gXen7V2xz/NbacbSdrXwTtjNsOm6W1x4tG7E/xdpjiw1K + 9PjSXiH4nzFW3AedmnGcRbgWahu30bDATULd/YzC2PxssZXrOw9NqLvZI+e5IcJ6caiAijc0ifix + vsn9F5I27hpDubnbau2ur33V4H6JGlzOKQ7dybHcPlwrt0+KABcyknfga2xbrqaMAcT75L3qkuyr + Nq5yn5xGy3y7IL1C9V0NI5vDieA3uZbyEDTXj+NaugRz38FEK7QPd4B5GPxBDIjIGdzEEw7mQy/r + mkPx4z1LdgDL7ZOgrLLMNyRT+JgsHR+/eUwmCGzHJuMYBcKfDuxPs2hs4j1YJgZpEyONlg7IQOYQ + 72R6qlQRYDX1/+zN48r0Y/o+c2Eu1gckkqNStz0FOPAhABjSKy6xEgVwbHhNWRdAB/P+MuCZ3WSp + 9ZiUaD31gg6WhbEu/599n9mzN26J9KBzIA7KaxejkuPDN+/2DvdZEhwZPP+94aqltcfJC5I7CAUN + c8uxBLBXyjOzhsLmo8uG0CS/LJTnxdrEaNk108MotsIkDdTqrHacLGWNswYuR4UKOrZE8MOcaiKD + pEzmBHSUjNFugJghhVCPdOLKZWZIKmw+56dg+QDKsUVlrDyxX1pSr8LES7dnZiLQDE9DHL6WplMt + D3NSvPX0/7E/7NJIv0XT8RV5g/q322zvqfZ325hWVT32T4rX3Hhw8ZrhSavn4uHS642qb1Q5/fWN + Ki9GvCH1jXmtqtkO72OMY+vOGlZlFv0KHr5IDetb/CJ7Sen4ULyY+/auw1o7yat0mBxPiWHsJYdE + PknrmZCohCwNys+pd9juwQLt676i4QgusHyh+fnA2s0oSuMP75FQdr4HuDAKhsC32Q1tyewk50FS + LzC7aBeJHZn6Nf4wnwPq+vgzcEaeVhWlI2xRHnBFtgGJxrB79C9vYPO4FMuted5j9MhYi9yXA21u + oagI/EvjqJGsbb4w7mwsDM6OK6v022QZVZPooCoGWs5SqifcfCXhw+QjDopMrzIHdaE2zvjcJivl + HOK7fN5cGYUvIqFiMGxrepYrrRTr1XdlV8bBMZLHnFOyp7eJtjKNdmitw1F+4Twe7Ug0dU+HMrAy + IcdjVT0lraKUH8ANCankY1uYehefS60v7SkzlmZ7jZ7fSzmD+k7JpKyFcBoZJsyLIEx64ic8UGjm + i4hsWNTE3eFQcQNrynBLjQ/us8TW6H76bMmN07H9YK2e6mNZG+AwLyZHRYU0c9f2lHZXgwPmpXat + /SPdyB0fAp+h0RU29o51atkWndy4cP3RN6c0QmhidhqkAoKUwHqOG9SbDj0jhxqw5/5/goLQPNAM + DaiWpIMPMcJDoaQhpmMOS84GKDAB+dLxYB911bIfqnj13EGalKxYNac4vstWwibJOwMzh1k55UX+ + Ie8FT13rmskycbugOmmW4gzM2h/yPSSww+EeH9wqdWmWC2HOGJ1bHtlbkWFr7V568617GNNnQIbr + rYemQlr4UNQDttoLVf+JH3tOYnGl6tuiXubQxTNX327ukJsdrr41D4IMN7Aot9jVtzzpkj9bomVK + UmXzb3fh/6H6Lm7eHbxu765/zR72RYLXlxhyZFneQ2mDagVOtDceYo2Y4OoXWMPzjLQJoIfIIl5Y + U0U5vRVaOCaTZdn4oFRC2U1agGhfklMjG5FVFBQs25G1i3BzBnu+ErpBF7KPXuiivtkzmPAFkzzv + Ym89wO7V6w7rW79OL7r933FRP1/5+TzPAA1HWMlumsae5R0VCzzEOkYi+TQUA5iZ9CwMrmT4npNj + 94GLWr6gQaT1m8CXA4LRnyJanQfHMem/3D4FAPMzLM+mb8P2THILg2muZyO7Rdhdc3jAmsUWo9Lx + /S2CPGis/XWMA/ygO/Lse4yiQT3sq1mx544QtedFBxXFI06NVwbxlN1Up8nN7XIhlEsYkA4Vkme9 + GJySuBWdEi8vgy7qLFnqNkBqZLbtsa6hspyP2AQvV5BaYKNljrcGlFMw9VhYhtYQdF2ahiiq7xmP + c3uGChELsJaqfHLF7CzPjJeIuIymQ0tlT9OgenXsWyQiJSuuwaVA05BVBG9brgtWTXS1E6SS72y3 + Ka8iReLYAxsBh2at4///Zb2p6Laepuap72Ua5N/Cw9MRm6glnEwJNDT3l39pre001opPlohp20b5 + 6hZfAF6PugcKReS/ce0xsCRMkJlJ3w0iDCtpPHoxYChvLucY6FVsSdgAQGwkhn5jbXx6oq2TWKns + SBojLlndJnnQai08K8gkkZSm4Q2nT3NRRoQ82fgOcM7iA0n73Y+Yrs3U3Wp9l3zIu3jknqYEZCGu + cJo1IrFfjAjRNprN5WazmVi6hHHyvyXrpEnod5VRBjwPMFBWlzIril2LcYrSX6PQ2/Z3CS4+lUFE + EH6/dXu/vjy1Z4XKXXzCLEmmS3Link5JXLQWutn8Dm8OwmRjfh3/OKhyidtDQAiQGqJbSCh+El1S + cpB/Twl/iq0yIWAoYzznJewTFgKLPpzZw0r8VHVjtKeUPbBcD5Ib8yHeCSfAHLuYPR4F35SUbSmX + wArjtgXf6CD14hx9hB/xgMvIPMOSRZPYfIOrcI00oY9IIRyeuD3l9RC1kpdBwuC6BmLZEEPp0yXe + WtkRHiL2l7dURTZEEQd38gKyqDr3DFMLz3TBHYCaJn3r5ElRECdhZ1MUvHbVy6MZD39xdLnpdGA3 + wTQ2t8pAzc17mdhi67PJQBubD00GCiza8MRCpP8cQ41b7G5o4yy2vsEhD6oOMYncxeRuECz23hzU + d/PSX5z6Bm9CfqfkmexzIxLiAEaC8nHh6ubAyz1UwrfuLsestXabX5XwX6Qc82Ymi6yY7Nugo3or + 79qoo9r37HbvhZTHuygBSQUa0s+KA/z8l6ODw6S5s7L+xGM6F4gvr6j1RRQrkkY67SXv/I2fkQTi + D8fpFaZjzO5dcjidX0l6eHZDcyZsgsGvgoI3pVd+197P4cx7veyj3fQ43ozs9AvxwoDldzn6OxWu + ummiR1BlOfkL0tzlbf4Kv1ohLUQgJQk0gQPVJmHCop4Z+sUzvegU0FfunogccOJCnAGHVa16Qc04 + /lPymhB2IYE3SSqQJy5KnH9Rz6hs+OaUNni72nA41lXmIhAMXKOtZRn27k55W5Wcz1I6eoAWjq7C + ecAv1KjS9VtdCE09ildR2NUDKYyRj/4U7e7C8CpewBnTF9HHWMpexjZrfFnBACgDXuEI4pgXlpDM + HEITq+fPKhXd/CD+4+//wVF8HPH1LwMkF0pfui4/0tQ8keMP1+RFEzcbj37lAGq6f1aFKjdvAP7K + 4/+nRzz1Xk0LiayYsyuUtbYyAcrNQwmBSfQABEtxbRp+bDwU3SCFm4g2bhM7qCqObVcpFAq4UlnN + +KQQNz96zbmYjcBe8DrVBsWAO1Ccp180v4iyTVmSQr0E8hu1Ck/54LFajBAU6CKQ7QEb0NzxXVC0 + 4UDVPtpk7ABdSuPOhscvpqpR50qAk2BOsiA+F4Rx45CFR34fkDf6bgCGsUhgaVDsvAf3BZ9/w4+A + Sf7qzuDhcEFCflmYPYQZAoUgBovhfnqqCoDyHLVCJgGD4xWzgJUso0cCJkJVVN29sNuVI1EqSuOZ + EJFiWH8440oBZFcHQ9hgzF0IEFyLLi8Kt1oxDfgjhzsUbh2yu/baKmwxB4hrhV+gq0rFcGh0DgsB + QFCbi4zLk7dle/59is8wzTUFV1lwX/gZq8YpjzWr1Pfxjms/uQ0ejcoPIpCnItdW8xTxfFVSk89N + bWZKnC1FRZiRZfbumpeRCgyekZVTwmGYBHYwhNjCOhhPhC8FxYG9qJqtve4SZgKt4lBu8Ll2SFkn + Cy3uVDid4U46/awJlhpPV6MxitFFuIXnJLhhQwM0Z/jbe8UWAhna57l0KKzKDtLpdESHOBrb8rQa + JYOMxQr5S9Yd3C4W7dxLsaj1ufI8UMH3oYlFgYc5AqiXN+6/+LDOplaNfTdESa6t765/TeHwRYoP + t0IyO+K3SQP1aPxLFAUse4A5aqBVdRBuHFXQWzHUDjIBy1Ov+QH/ssRXcitoKLu4Ex1XV+q2SUJD + 56eANVTToBxj/3B9wRrn9FQYKdxFIjMsEhqN2yTbwwTwMWube4N5kCwrHK+tHNuMLYPJMkLDkPLv + Uge6GSKAQjwlUNQG1oxPBVjFImP5ztxmQzMDFmKYvS6xcUw5ohXn43IfFwfF8EB4WvoBBm8ac1Ei + uhYpFm3pNWr+VM5XfUqnIkmqHBy27WXjAsmfeVWJakPERLO/hsOvg7pA4yB0yZAyIFbKac3Mg8xB + CgyGAy1h4YDxOqJ3UOa5uKYDk69sYsyLHwHj7S7mFdYTqjXjXQIOZaHIDEG4I/Yf/GpoKhiS6L3Q + tFqwp9l1vGieUVva9opwxiSYs6gn64SQhMz5ok21J05Dj1TTRkffOiSe0ZQtW/p1upy8Hnez8+XE + CSUfe8JwodImVPLjFIVSKyYXcVRKr21LEcnA7AljAg9ZNbkMkKR7SjjPVmMFRJCYjgIG1/DC9N3x + cKpE9UvvQDq98y6iN05lbI/P4kVvJTkkETVfhZm8AaRzaPENo1S3zjK+P2ZDVLYCo0AQjGfJYwIt + JImHrWJXQ9kNhOxav7aymzovEnrOdI/ywQ1QM7+NyU3YJyqYWLFjhpXin0ShQvP9KddHskEMGtQG + +t4pYyEO9KqFUFEHCJeyeh1Bk3oLB7uZVjM6gTmUEPF5cTdFNSsdbXr8okx1FH60y/r34nUvX2tf + JDLxGbH1pg7yJ4dBQfJ+Ti0wjuUrDY7bFYOXl0aztyykPbMLjjLBZnETMXQspHFVJDKngoTe2Lwg + aK1IjWpZJd6JM+CJ0AHFEWyW3qJkDAGZuUiRfMF4IuxtuS3tYt86om0hgRwKeNfr4qJD2JrbEfz9 + TNW2Tr6uz5Kprbn+4Gov7vs5fW9nvx7B71de+fpWlt/KpchQyW2hNeEgOBVWXrb6PudehXtoetgg + iuSussPm7ubG1+DBLzF4sOL5b+7AYgZ6048tfl0sYe8MjTheuHhO7ysoS/zs2Go/EIC3t0/FQS4G + vsF3qtz8KWWOCrZyZI6LBzlwMyN4/ENXLsGCPPvK8jmyhBX/FmrcvCjrCQl4t/OiJKAnzHiJykzl + kd+pMIUWRC64USzytEfSiIEFp5sBfunlu/2jvcfAbvkxEOQHN0Flr6Qq0qvrxzI5hshSzTHQxvM4 + tTxQKPpwSTqFsgamopHeyBwThvCxYZSI26MTfOpJ7+QsHRYassQG1e9infpiNbqtI7pGCcnBJYtZ + avqubhPL5AAUGsg4JWvvywgoydN904sUmTJToGqOHhdy63HnD3pDF+oIyNOL4zsino+nSo+ql4g1 + +sFTvprOWMpm6XPB2LsABPk1oLs21VzFFsMReMOA25sObkI7Tf1tPu2OP2CI8k6EMdRya7M6b9Ok + 26w8+QCRAYYVvE9GN0eWuRotS2+zj9wJ6opj1YBi3m1s/Nq0/rFOy9KLXvf3FOxzPgGNAvGPkA11 + 9KjLNfldiJyTQCZwh2OL83DI38dCNKi5BAIymQhNrW2RKbmlm9WSr4CrYXVhh3VFQpiab2hFktUX + xc7LX8WiMdlI7lTwtdHqPJk4jiLKOwTwCiklLCkKuwZwVcmeMIjCgFgT8gZyAvc0Bpf2yVLPKxKP + rdPNN1sWBk2axoEklVMSRLHiViBpex6omFDINiC6hPk9IsXjlK4wzcToft9bDhI2CgU2aCrVPD/h + GpmtQ2lp/LCKPr4hS6IDx89sZqoiZMk7qvfcb8SYVwI47EfIA1oQpHliIAf34yTuU0F1uQjJoY6n + lR3Gw8gUBWWGGK4Ms6DckAEd20FsfuXa/Xh6DR6ORdUtjGgdFfUqwhrQ9XP6K8fCd9QpHzd14W6W + FLGkKPiW+StrsRPwA1vBGCupLprdlzAh05xbYmke1/iRDciS7SQX2WuQbXXRuQ96rr1og/6pPRB7 + YXEhWB1ZCPGyiLV2SaDQocy29X1UahrKALB63Q873tYMr6lcJ+J2SeB+hnlsfbZMIRvbD02XPwdg + bkDkEdHUN6lAncCA69vaQQrIp75VxDD1Le4CtG74etYh4R6KGeuf4OH0ZLfV/CpmfOFiBhhDb7sC + j4Wy7VWO18RAGaKzpa7aFzOwmpx2/hfZL24pmhp9i/Y+rf7QrArQUW4VNwOeQqkDCoLjQNkuglNj + wQw4FXA/ZKlGlUWhHqAB7Ktc6P8J+LYFOgo6Agy63k6sSrrY5pyq6z2q/+RAStlecmRBxv/4O53g + bfP+4IhyOU4uDWtA38Elo/Ygs/JmGl5SAIT/ZBgBFBIzZRjmESIBERSeNF65UJku0SFbB+/w0LAS + nQ4ylvYP3x14Vo9ibTXSB3KTvAyYkflJuH41WPihDCvecK49S+prcoiDuMWrMpvJq4MjRAJJJUBT + zhcKQNsXW1pZG8oW0Gi5wheMRJZAqmX7brsXuwkupXMVKzUS0H9R18SpIJxR8TyXDlwFUkyPLDcf + QGdANMUBMfJbxZQTnApQyNpJEpENK5YFEoXJtTeyVQUAG6oVem5LoSpTdwaNNenBHYUGzzEJZBLA + fGEAYI6ZHRk7JZ5WUiVohkNNI4Q04vEiffq7dIg1wD7nBsnVB5imHfdlV06PaGJL8t1Jk1dvjlY8 + JZCJdISBsDTJiBpF68GrxcJ9sGyQyRRhxSYRVhhh/YDwBtc4qHZtKA3LsESjIA6xlMajvSLcJygF + OF2AdgruEhuBB4zoF2GlQWIO2o6JBUGP59Siei5KDptZ3eUur6tdvGIrK3fdIG55OMLW+YdKqjcP + 1OWGgwjMJQ2vYVh/rIsbrodRlgylLmMhyFGDTO4/iMgo+NsW/4Q1i4rw0ZBGKvWQ178S2eWUFPF9 + RgO0H2YWU0C5l2SOoVOipSZc0ohflARQyZrwXPkZCedGn7DfboUgoSannoua6XJvP4a4JrPqJytj + Jc1BlDw5cZ77yIXVa2KkZh2JpNJPFESFbMiudhwlpfFvNSpOon5X5uy3vxkdaRfJGyLMPDlpRUAK + +7b4HPk5570gC6vOji5XdXYzb7+WGG82xMCrsBqgYpoPrkGZQ0kJ8C1r/5xEF54lKeFclEnP8mRp + Zy3mGw2jwImqR2z+LeGhfukuTpLcnL9cX7Y2ixWVe1Xd+Csl82DZOrgybtvy08je+oQncr/n0/hb + I6s5EO28IphZXElGoEwBvLzaL1I5yXhNlQaKQiGwVfKHxs038rMOtHeKlZauAfdEubQWr254a2dP + ptQnlWdd3rXm6SuHO48P1JyK03TtkWdIVS9X8+t+j0qTAFG4I0SFcndg0bJmKdYJDsulqB5EeSua + QSz6W+L3q9mhWjRAENzTMFvamunXAgUx2bkGNPJMf06sVNytgmzLTVrb96z6kGwQn8mk9eCc0t5G + QFwv7UX0WN+iBjsvtGfRturMfh9lx7ubqNabu62vRQC+SPe2vYgRYMvXz7eQdbwXiaKJN5MVQxiP + /xOkxihgHnTP8G4gKwB86yp55c9x/OO1ggABsFtlvFiORvyvREMCINU6to45qitFzjPUUSg2beVV + ri1QF0N0i4gBlyZAJQ4oxJoQj5TWSDHv8CCZKOSk4Zwoev17IsWCzMFjA+X5Xmgv5k39Xg8QcDjj + HN1lBtZjPQLm3Y5Roj0t5FqRnjiANtfKuRo6mI5ORCSpiw1o47ltiC6E4FraogqNTJkAKAhuLqwz + mLuvKkjSoIkH45xgYyJJNuKDxBymFddRzt6Rorui3ZG2Qfr3mdpoc9MV7EAOQLFt0CHKewHNxDmH + REnVgrxxO2yde4PBlLm/xpQmo8yRZ1OXSRffMgWvyMrDHin65trm2p4YFLcyVQgDVuvK1BoR6Onr + eVwHsSOUrpmubZb8ySTpAOxC8Sx2zgXKnm8n+2xFcclc2mvn5/lMeieEeiA0GacsNoroACEsMJ/y + v4Nh8RXUiQ0K22UQMbiK+s4wNxzPuh5Nv+zWmPiDmynccBjME3LkpGtO1nt2hCSiOmZxXqa70UYV + 8oqOLTkLkMSYR9vigeapY1RVVQOrYBVWyLwVdIAVEGQY74Roy32HnOE3fs58n+yIMxshSi+7oFth + YBWjq9vCD5GNsS4XL6VmpyMwigcCPdH+4d7R68d+DgVXg+LAZSJ+1i7FzGwdnD8RkzzipJRO4nwZ + Pw15KJDbVGdzZGIJJnbiNzTP7sA9UoPbnOYzI/u4OsMNjFqK/DT16EmY0pN2K6Bt3tMc7p8t+Hz9 + wVlmrvPqetwa37L6FvR2z9Hq5t0Tqq6v7W5+Dcb4ItEqJ5lwgKvkjaIfw/O3b2jqCC28V4P7vKaM + iDs/FZRWHWdWjtD4wwbxnMELH66XvD/v5lQCBe8lz0izTe50KVwsy6KUXKbvEFs1z6kIFkof+6Kx + q7vNo3ySXngmo6gVknViRVBU3LB62xWdZw4C4hUV9x5U4GR9QS2CHsg4top8kowdJPQbrt9lxIUY + kDQyxQyN2SgIgZJBuOfIRSc5sXUZThIvv9467q2ptMPesnhjYB8VHisNuiMvz8dnfenPZQJ2zQT/ + d2UiRT9pjUFodkAceKqBPqkOIjCCvh7tn/CEZdNXHCTu/Xkb/bFwlXA8uIfICDKUzU6pzJfkc9Pu + dKR4K8LAI3rz1PAMQ2fBC4u2hU5Lv9Iy28Ft5haxIiBKI0I06gTwaagjrjSStXplbMVsUmWzNW3C + a6FNeSxd4V6gsgCypJXV6oyEvo7Ci0Tgqex05SfZlxS+ElByJYvWEq4QG98vmlzRmbVwlyYfcUxo + jeoAFC1uGc5o85KEqVjFWJ7livOZdLlgTDVeP59M2vkNQwpAuOjfZ9BIDoM+tvD6WUQTaUCDDWY3 + SczzCrV/YYWtkAt5xAF7NNfckRZ+SEORqUkuW6XW1R38NkUwdkCrYy77RVVTbZt0iXyWuJBXmUr5 + UTh1LpFoYvtR4jxUly8t04GA7kvc5RhgNr3WWqPJ8mVz0qysV0g8P7tYBYr0V7GVCYT+KdfyroTg + XZivUQS6rSiI/bbb+FQ95oIrRsKa6PaXBAki+ffKEiAPQlfbs0gBdrLSmQ5+kLQaTUQXiePKn60u + KoT75NlL3pAQXp1SbX/XT2XDqFQcSsJsJL/qkQrWEro38ahiDuE8mK8ceVLx6FVjy9YbNyrIPLhz + sWcqHiGuY6oAw4wVM9dTV7jQxVOVEVq5p7rvrS2beNBJ4IXs8678fO4AaVoUVmxML64auByvts+6 + q8qsIFGL56DBz38yx7he9mOrufngcvXOqi3qhYB945N7Yf/r2/1imiLjJ3aRbkhJtegNqe9YZiGf + RFTX17e9/xLLBtJq5bw9uiF8fH17d+Orfv2LlFj+LP/jgIyBfsf8W8wV8PXcVGIyOu8dHb9Dn7zZ + 2iC5fKbsm66CekMo9H8ka9ubgJb+yZgfXmfnveQYN49CTADpOqKtiBD8eR/3DKo99q4BL7tRC0Sk + 1/nwkvRVpKQ6z3Lq/GD3ffPGGkeJZyaH1AGMkCZH0855d3S9WZVhHBtadAXg3GrJasVqx0OLPSEM + Wqph41zK96OVwaciLVYKOqwYFSaiggsV6JOvU0EaegdkK3TRHax4WpOYPUeKRZOm2InW8vrmVtgA + n1KYSxg7jlK4JbBRSFUo5M0YXS7tjIT6chMRlq4uyoG077APYL4cElQspFbu/pMVfEyMM5cQjBWm + WuNkgqsNvLp9scInWBJi4lIkQitZ8EsPmQ6cHRInhRhiakp1LMAEuuJNYJQ1PX5VWy8wU67AZkc0 + BY4U7iygeN8FTRS0XuxWcJkaZYQjaMdG+KUQSx8wRoVSVeLeroRcv5dVADY/W6qXjSbA7sn33Nzv + DXp8nPx4MWn/TaKCwqXdM8GZbZWvqDqVJ0Z6ijjlOYrnuKMnlhZidMdA12g7c7WUSo6OLCpEGbif + /vLzIL/EAefMyzqVf3hkr0C0eD9zXYV3ND2RvsJ7ig3g5u2LG/DBrVkpXyrDmlJgFfavftY/Qaas + H1OBQnbqw1t7Q8sr0tpiKlFJD0F9my2vc/0Xc6956d5T/8m/4nJD0l0XQT3BLj/YTaj/qHKfdXdv + nNPcXt9DT4ONT9Dd7uxubH31Uv8ivdTNEcw80vfPyX7JGwY6weqGbTwYZ6Un4p+DszGJT4qSlXZN + FkCWd0o4tpw8y0/wOvx1gVtARC63gJXY7BMh0F8w/Mo97hAXW5ti7OeaS0Lx7kZRPXj2tSMZeO5D + 1KtcQ1GuFD4D5nkZfGblHVcmjpGrIPZZXFTdVZmPcuCTVJhecI/mqJnQDZSWXbBm2wkcfU8tmpAx + f/7L8X5EU43kLb6NaFBytErh+RFgLacLsDjjEcNqnJGnzrKOhLzrIAt3K6y0nlkcDRZMwQFS+INU + cx0UzIwuTS7nRL6KKLTQxaLahETuMYHvJ5nqLFtNMTXTxvqfo99DjEdj3CLnjVKmRFQnbQzpg8zn + 2fyxiX4G8ZDJzvTZhCAAUQ2oCtcJCy3qUcqvao/aB47nv0+BSdq4TkcsRhb6F3YPhISLWYOcVCne + 8Cij8smZNJQaDwqYUb7cunB4gvMw+mqOAEBRE3O1Ir7Dld3yTIbSOePzWOCGzu3wa/teZtrb/GyK + nY0Hp9jZD++HtL2Vd7QeVljtBzw65F5O/Lw8CW4AO/cfWKzfvUT3Rmt3bfsrsPgSgcURvILDbIzg + QPICmSz88TxUMWYYVQVMlDW7cYY5slwIUT+qQDbyfrlosQBvvMcXDMBS1NBMsTjczPirvojF04vp + QnnsMKIQ8M7D7Y5OGC+OXu9Zzi24q/LWym/nQxdxXyZIr2GtBMOeLIQLjxuZJRvWY0+7M7pSrRN8 + s3rj73HWfExmsTINXGCMcClPt2w4bAyL7zMRGUdIpJafnvLh+mOxcEWNq+fKHGSyie+MIupBXZpy + RiBQfpUFkquF9oAAA/oiPzUbE9jgXF808yo0GuWGPjbN3jSxNL1oL3xS2ejs6i4T2FJgjBhjTsIA + gSsNVlBRbm08gTG6JWZFgO2yDACHLN8GpyI1ZNa1RHDysYNCrFFMeon4m8o6pY0iwfW5oJkM2d0x + 0WqBmbu/JDxcJV50DiZsE4EMxQkOdUuiqcylfi0CJZYyGWB2h9Ra1MKvbByHYICHEkQrXE9R+ST2 + fr0Hw+C8iZiVaXA0lKCl3/2dk0fVlkTJ0K4fATudWgzYUtnQupwELRiFoPUIgRnFtAqYFG0wIay0 + k3NaoTWuvDGik/Erq30FJHIY0+FfRSpzuybRslVNXM1AFOO84c6Q0iBm21N0nRCX9WNzYo5KDQF4 + VaUyeVigjcugsuXiwdCL4QeV4OyvOUaWi0dgr6B+FweJq9I5j0NNd6VbX+HBaAEmEdZZxac+BCIE + 0GN3ejgEYmHPRzgbciFLz8c+3g46uRAO9BuuGSkWxt0TgKUJHZDXnC3y0Rmn7XcDktxWslUCaNOx + qoGZuc8XzYc+ZzPYxluoLS0O7q3o8L6W6ETT8JlCXh5c8XZnbrIzy2cZL96SuUX13Iwyr2Cjdjjq + QWTRDp10cX3rm1d5b/EGXb9A9R08ABj65M6Wvo2d3bWdrzD0S4ShhwS54/AGW/Kb9za9dK5fYlId + ++fkjM2p0xHAyGG2sketcyU55o/ProaKle4kR9mZxyPrWSanbPTaOHz/q92URfAU68FskffFADWq + qV6pfDy6cirHHWcd6zX+6ZoGy4CsR7UUIMR1Ib24yuIpEAVaLfexSZ6/PzaQ61U7BDeEXIB+g7Ec + 6B0sqLB3lSeNspW0pMlJpAkYCb4YH7QQFK1IbENTCueUYyJJoaTzMi3RCoiEwA2xSQgO64TEVHoD + RAlevRDIsU6NcmyWKgYa8sFBT3HgcZ4eZlpZOdA3PxFkE6LRFpnXzO/6SesTfv4g6OhT1v9ammC1 + NCQHvFS6BmtPW0+aZW5ZXtLDuHXUBClfAKqwHs5pcvYCHXU7rIr5emw0JyYeD8it6N2plFeGFRTy + 2wV+OXVsgZTvRBXEURQcCr5QhgdTAoA60j9aeLup5EBohPWOouOZQRhDb+XqL2WeBLixJMWgFM5Q + kXY1e1xVRYgsVO0BAFnUcn6q/ogAYrc4MOq46lmKRdROhDazclKIqJ4QdrGfD22jLa8D0yc5NcAf + WrBHQu9+q8wU6mvQH4oNlH5uz6IsrBcBV8E5JQbvUAfS3BBvxUbNrfupOft82OjJQzNc7vlRZ+9D + Jod6+FE8P/bS1LebOYq8SfUtb7oZqmXpjwYn3y/tmVC5KQHquzye9ei+dzbAtfWdu2eq2lz7Wovv + 2+CeOJyOeg3EOqSa1ZijZLXVaK1+m3zs9wbj3Y/j7o+x8eXlZeNy3ZoTsNpa/W/v3h5heu6nKzGZ + A1+Nu7sEyfHL6GM38zn+KCQuaZ8jLI+to/d7b1Zx7l3N0+7fmEMS5qWhbmnb+DjufPsUt7dv5KHg + gAUkgwJLb7DYQnRXCOz3Nd7vmAXbSoCLNb7qXLAI7txJGxcRzSzYSV77Ix7/angn/nDYHeLz8lN+ + fhflnmMi+9QYCewCzhpyUykQUBwsRCRg1WtbRCGcu8hZiX5HjN1JIoZ27iVD3RgEkcg/5FSBB0KV + YGNqJBQXjXDjVPV/ybwZVHaOQNzVQ2kdywnB3PVH79JjVjGuKY8uA+kvreZOHEGMz/EBgTXu8c3m + 9Um9BI/8tUuFKP0V7MH83IpYmasZokYffBGAqlOpLeUsRdQo7mw2mmpDRYuZuytzwC2FlWByrBbl + BNZvGE6F+TCHgd/AMPrdLLlmiBJS7hhV3IXpZ0ycaEDcBWaSpZRpyEjYRfgLyVAK1/6KJRSzoKdD + 9ljW1loBPpVBh5NKKpXYgeoL4jwNYCiULMjHYd7EhV6tTPIV/g+kRRshjioCCuQP5GBeoca6Y2yh + RRcY9N0pZmfBW0jAHybZR7tL2gwoWxyPY34+y2kTotADeFUaHyvKJVdxzeQMpz+hv07XlUua8czu + gXnyKSmE50mtAa6TwZ3MwnKAYgOJOaZ1s3RcOM6Fv5VzBaKp0pouChbKcB84Y1R9LDzymajFHIDF + Sr87tBjytqPD1npcuI2lQx+OS5gCgcvaeSFyJbOpVh8kV+okpZhcVMmGAtBMO2pRmViF5lHPq7x0 + wGwr9wjxRTXLS+aaNm2H74Wbtv3f5XFRNJEVnDRV85jdoVQwKF/SDX1FbT3K6iK1ddgVQ+1cncqa + lxSfJRWsCm+eJtuNjTXP+dVqcl8QKwiLJpJYqnBaxjO58YQV6hDqGQnnJpnrar3xxLrScuY6e6gw + uLW+85mAsEDOQwPCzmrD7tfjS+c9Vh2lvlHBqarvR33zCue7qVGVH9a3K8amSvaoi3tHMOMt1nQe + HG6sbSt0pfWyvsv7jqlbzY27F6jbpMjE5le945eod0ShiERpwOl5sGf+4+//O3UjMpUiA81flakr + hB+OLOW8nfsFsPr2uOaIk2UuR3doIZygwcMbIPUrmU2XkxcC94vazYYLEHsWrJ6eBUbZMio1nsTs + 0Dhh/BZkiDG64vfONsUCPV+J4xM5BMDNqS3goRdggyh48JGDG/UZ4974HFd7wnwtjFYUQ9snCBYU + drT1/OrRzOYZ38thUS3ulSilQJwsCy2kpATwf8ieqrEsGaF4cPQ6o2oBaCQa7CwRoKHTOGvQqJz5 + UVPx/+AIj0pWDypmRsG8Qrls+MyPRjB1OxqRhoEMKYxu6tsK0AkG9rZ6N62kaW/jzEylKCBWZtxz + aCzi46LHgZCmEqGAZfZwYhvjfyHiV2mu7/GOowV0LS2easaE1FMoVAuwpam2JujfGo9kLeV3FfdI + o0x17yKVKjmBut6tae/AunjXIWZKG4zEMsWsSslvc1hQSk0dLeQL5cCJ1NMPOgYlUR6TpBCXwCI4 + hfvnqW+LnDHhAAths8Gq1NX53tbmAbKX+RTvTeDu5vry2to6bUKyGa23k7SebDAni5Et/hD1sTFv + EiMESLuxTqJdTP0WuxxIGOJwi6+t27WNxuZ8w/lhtFUoD54gS1mdXp1Xuxk6kkqkGHwK+L1uX5Hb + yrMsLrh32q9ALe2mbpJzaB1YJzxWcM9QhJnaMknKVF/k3rJraNvMvDaKK6tJCuhT58R8ODaWWxvr + kWq6v1Lx7xvtNZLOVaARMNk9RMsNJYNPs/EkNsDhxOVbSUqCywuWtYQSpmyvTQuNKkcooVGRRHTF + KcQ8gjCDuQh/DnfW5OKGV5zDJv+boril3Qcp/W0NCG1zm31t/0ICrA5a/7ZuY+VyM4pX+agMtiC4 + feHrFqpViB4x0fBlJh8XHRCXPexCVWnMWayMVLl5u8go69+RSq7cAfmOfJ80G2v6NWIKRh3ylXJ7 + 9BKFv+3obxfZFbT4npDsLf3oT1NlmHhPIg1dtRAyB3BkXf4tdP+8QdcfdOUS0ev059fHR3vFjTCW + WWVVbibjPfFQ6Obm/dT779jEC+vVPy8UeuPBVbZ7fg0r1eN/z/JW//d9ncyDc8LxbtD1H6Oe4bjW + 9/JCOi+8jUBGz3kR8O+rb/sefUdQqqHYqeC4hVLOA5Bf8OWuHssbIqQ3t3c3177KL1+i/HIA+zD1 + 9xGJmz0Ne/JmPJ7CpMVWXytIb+VVlstoQaKLXvIrL+4oOZYGDaZ4GHOzwKfFLPenig8kNWMneZUO + k2M5wfbsTi2QdihOSV/EEFGWwdpE4WbGIvBqxBTRXFsCmfpmz5mOOvup27/eqMo3nsG0EiwS5GnC + NZkirvJO1FJS5fpbenVw+BiEbYXB7kSCpdevfqVSoKUwsvRFJUYLLgILiTIP4DzF+4iKCWAe+RoA + 1aAHPhfDuEVWrM+2yZI2xhAbYC7YLghT2OETr+tgpAeFHQMU2TNEBTlYfDS9J8hke3m92WQSwrlj + AmXARafKsg9sKAaEDGBETBb0/yHvggpOIFgK/eTaKCU2lk/UnoYPmw3y08LiN5qSKwCAYt0W9k2F + Y6P5waETFHpVQJbnT/HuZqfYbKCnpscWwLk9Jd9lcoXHjEtOlILAMkMwNq+vVWMo3K8RfXRg7DhO + jAiayJiCfCYMQd2+62epBj45hxIYirrQaSZ9vPa0Zo465md+fNx3O9JEf/ABWbqcfHvt7rRvQqEK + WuPRenyuZPARwam998AawVBM0ZxkkaSvrQ6hdmb3NqmhQh0Vow6Ow8gvCHBn6tqrzni/pxSlKE5G + hSCWVnVmDRKBYIXqJbj28C8QqyXLdAI92nO531T1p92Pq4BSzO5WhINtCOeyODt+KueEFhdv1qwg + 97YLry7uvDG5hz/8MsqOswtwLkU3JbwEx5tI49kDwrfN+cN7bSISITRV3XEMurh/STbxATWHGbq2 + qE6ieuRcingb7DaVy+LVOCGs+lTpQG11MfBeb17QqgaHX/ohcyk+y+gEMEjEr2KcgF0Gdx2+6drH + uSJvzc51szV/K4IlUzur1KwejnA7GbeXN+qegrtR89GxyVV6Q2LS3Og+xUVkMiJpSDRb6pc49SEw + z18sbRJ5GJQjT7QsM+ZVAvSuGaY0ZhsyY0nBdUO+2xa8Z49TH4MfYrqiNj1HhYkr2nzzTOc11GGQ + lY+XbI5oTCYoCeZOoG5tcRoY0ZNAsDfKPDFjWMIqzGP6L5vFTf2Xlt/aVUnXfCGB3BZNnKcWDdvl + rPDeBk/dxROdPQRry0/Yu7kjW8xPdLx+7szQ59kioFqVWxjhZw8xi6o5x+rcjy/GKT35HP8buJcC + IPEl442C5LqUFJsokiJWtjhZqlrnlDoDuumx038f3274up+JK7Y+k9kLO8TWQzN7vXLuibNLAb5A + gKlnslksTZU4cuHfHZTuC6NyJa8iPDUguPCD+y+era/fUTzbwl9rd+1rDfMvMoGVFeZB5qKalfLc + v3DPFMG0N5aSSfr2fLD6LBcUtmT4Uq1TxYyciVsr240Wjn+F/9eMWHV0oSyreJ93+8l+A7kpJCa/ + UQY7RKlLDtBbMi6ABuDJShJc0VenhEnKHTzIVjGzFKLLBHcssRL+e8nT7z/JKSNaJAp2xrIdNBs5 + YCMhxacaGj1M/RjGNpAbXHlEMPkcwXFyxWMZ+yESzjSXygwglAwHV3Ciu8MIy5P0B/aMqSA6hMwA + GYH3sC0xyszMLbdyKPI2NlvHzftWsEjh3J8pemv9oXGoBReunpfYyav/s19Rv5yeI3shR6pc4Rta + 3X++tYHC+05qRfjWxu7G16K4XyTfemNpwCVye6bSoFt47v6uZUyW87dDr/GxgkJfXrSe+XCBwvCI + dEW8sRRxRR/45+5Fl3c8d5X9Qrb1c3d0sYw7QHqLSlAMK6gGnOeUQir/knYm5CI39tPBMbKXD6Mf + tTjSokXu9WCAyq2EUudYZVGW3jzfQ1EYPg9cSF8XRvO5272PMzIQGTGQD+Xh6Nl4kMjS6SSXfI8N + 3PK+aQx0nPIlFhutcD2TFhVVBYvE/zOtTMoiniIH9a9tse5VLKWZJic1JIl+xLnDCPRk8jKZBWjE + ImOibee+E601zAC+Wm2RKOGiMUn2L2STD9pSyb1FTZvVstCNqj+SeyhHhSkmrtVJG6mZuas2elP0 + COYIrbYwc8VqY2W2/cH525Xa9vmtrPmeBg9tfb6shzsPjTUvuGr1vPdQyNLc/evbvCH8kZPcy05R + Pk1Hg/qWliaKzA23NBtPOdOIoWjT6/uSIwaVhFQdVFra+oa/4f7Nqe95LsiF0OEkvySmsr6LmStY + vg31H8y9Q/cuoKnVat4l99Ba87i1LpTRvGvuoYUZP9GBHpGv1oJpvvkh/uTpSuxZ2eWzH1bjHxRz + s7gZMtEZSo5qwx9WST6L+zmd/0AmObQgk1QD/eARP7uddog08p8/KVooBil12sVnX1hAE/r/nVgP + 7lnWmyS/jOWF77Z5MbDIWe2oLwAUn82LEtm1YMzwywke0qinYywPHAtB1z0HraBjZIYkjZYaGePf + eRe5M7BIgmbIU2NLk4LbDGtxZc5zjRButDQXL9Uouw5colOO1yYj1Kw9qYIYTCTE48Dn//H3/+7x + O/JezdweqYb/+Pv/8PBIq2bhGVGUpTBM0yaPS6MI39rZAWywEDFqHq2Qz5h1mcEQAjBILDM4N4Sn + ZJLxx6YIyKFDVriFVxzXw60uwWDFH6FNa6sZKqNjzhvHQCbC/J1WrScQxePOgQgKvC8ORujSDJia + ahngTZiKPjcTT3Qi5M8CGxUi8NJL06FTx4tukSQCvSGutRq50u4JpJyGYofLPiP0LyJSrNOnSvBs + mwzeCvSSWcUdKVFDXEJKlqpJlkchUGaHHEg7je3SIw5tvIzCUCfaYyoTDbXmWRSFGWnCkqDuE/pY + b6wXffjBqgx1nmojYr9Gsa1iyDCRLXW2XXjdhd9uU4ZayiDNfebU1Z+BivuqT0QHH+R3bQoE24Sl + aTCO3bqmsFl4E4bfchhtCjPDaz7Foa89zr4NfsMU1u+lXIrbaLoku64j4uat+JMtVEeCm28B/HNe + s0wQY8jOk8ZWnLvWyAsRQIHOAFPDr89DkqpVWmhlh42J4Ed71XjkT56/C/IIYEPxnYt5GiqhU7MH + 0KlqAU/YqYy6zPbJFpVkIj01ayC3owdPaKDDyqG5UFooYu5iHCIAhves6GV7rbFR9EIP4a5i8rEo + 7sqGMlO7mVdWJ5Wp27EKNXY0n83GTtET+/syvVJ98aBMMeSPSs/SfmxtluTUppNDezIJDX3Eyllm + 3HjnLM9WIJyN/mS9vEm2ueSSsLdU9iofaqdCJakShyShlR0cY+DF2M+LnLwXHhUyoeHfcUXMG3nn + e/B83hgIvVUZNZwGXXp54bAav3VlmKTd17hp5WG/Wb5p7qw072da0Vbzc1nHAIoPTcBxz0deiN4N + 4oPd+noAH9FBfQu9Z/V/vfcCQHPnLmrGIAA82d24a9anrwLAg8po8KK0hxnKzpAAjO0eUUGBxJiX + lpb0MO0KCh1EP7p3cDAk9HsoFITAc0dKMVO1lVMQ5+3gHhKSB7LacXWJ5BHUEgtLWd+XmCwdHrxT + dszodyE7GNCC30Y/L7FKECyc68rZZGWUUleA7g/VYcnxvX/qtk3H4N2FSDWCmY4CCFytCkiejoBJ + iowwxaQViqyuQxMLMRShyiWrChFEbUyFDAZLxOdHzjs4miqGqbI21byMNICvCp9YcklyiZqkU0Do + 2Ig2+HGBxiwfAE5EloMIP56Zg+XGTDnZkKhVSRjkatQdShCzwV2lKV+eS6YbB0EUKZyIonDAn9kC + q/tOWoTLfAVXWTq1NFo2XVI7nuZkL7ffAzUn50TH4FsqqWJmdV6aUesA5Ns4HOnbAcDGvbQ97pDD + 7/PYHncenIKz5irXM+vqQ1Dfqu4M139RPgT1bSxW86aoiXuPJPDJu4PB0pFEi9xI63eMg/iKJB44 + kvg1H10kf5VfTUDkYsHv8sCAD6dBI/8/p1W8PeAboxvVlyzX+NNjWPft04LpMzmvExtrR5kOTZz/ + Je4tqqlxqPhgKWXg/0fY96yuk/RAG/zGXPLFcYyV4bHpGi/TVc2nRbPqIJln8g6dr6RdS5RjYZPB + R9oSIZquSXon+LZxO7NpKjeROfUbMmHqBCjD/1xjhPj7nvBggko0ue1GAVZwNm0zLNyPJsR5KXe0 + 0E1ebU8grWhW6GLDMKUyVuGgfIKTsLKHagIhZ6PgQjGpO9DcNCNuodXMrpVLmTVERjikjdL4TF5l + tiw+VymdGNwBkiy30jC46VVbooHMwOn7g8oSNV7b53qpI/u7YuKCCgFXXnyqC/O19spjW6Xp2E1S + QERcO4iSVNoyz9pMGCXCQnOk8uSTWGiFO/hPKFPLV8WgHrjvKtf4res32/bRLKYSrYPiWEtC6Rny + eVptwIL0opBvIjkHsPyydUEvVe3AvqkS1RHp9b3kc6O5xeUaBfPKAsJ8wpHVkdDxshzlha4rRvRy + dGM2ecuuTku0Sh4Qa8of9oCSZjGTQd4W9NWIXLiCZDOqfNtorYoQfpIGKf0SF9UjsW1KZdy/kqNX + Hoa48oKIpY8Bh6uvsJ66o23UgCre24m0zodzx9fG7svaT2fFObYe4wbO7lncfFLJzZS6D/4MUv0f + UNieHE7a+YOSkDrpmuiiB5eTRncW6B/zRhTXctyQaeKYmCNp8Nu9qeZKPx1CfjiPfKqfLPxUacOK + 7+JA+3k+4rFSzaVk6fmvfz3ad3RtcykUeeVnIdnwPrdc6VezZOno178e7j/moBa+CGyzTSF4jrj7 + AjMJiCmZORAYNeLV5cboIHj0y8w+FtvPGtXCuzSdpVUMsJ5vlwDup3+89DmfRQIA3z00DaAdNHvG + 64G3X5H6v0egUt/CHqdboLs9yfVdzN3v++cn0Ny5ixd9APfru5utr+D+SwxyrqgJD1CsFIz2GLtN + ZsG/e2ekp8Y+ix/dfkpCSjEmsrNhzkmWjvf2cduDTVn1kYq+zC7GAvz/KQmXCl55JD6TGF8Uq/LU + l2Jd4jJYmZV089+y864MRy9Km7zgRDsv/OocVkeQ/062Ji0Is+AoMru9jgrNoMBy/rH08t3+0Z7i + l+WhkI4spYgskVIYyMSEOyHJl7yxyFKx1qOqA3zK65BZCIYX6RILk5V4YEQJfJziM0/YDxZ4Vub5 + UKTPswAAA82+0GCcMxiLTnfAvhQlaQqKzb0++8yXVWodAWkydXO8KGap6Tsktj9hjZ7RsRpOAAv5 + MhxCFt8KdXoeLJelLnMzshIX3Zv2cV2UKTWkriotplJVpuNddH4CJsg1I+gxKjWuUga+obL49qYD + 5dBORHubT7vjD2gnEQvoJLbEzIm85tDwBMD+O/iGxEnCPCYdgPaoZWjnd2ajELrofDBBLJTMw/4q + o5aRAeqfoUB0jCi4GYSHCl4PAYmip9w53M3SyEVX8QwAf6tyQchyL5q77d39U7Aby401r6bx8vtm + +MX8HRzwx+VFqkOrWCMqniLSRHlOnRMy935QynrbYtSpqrri567x6GBKV+3K2dNeFksyDban2wqx + KeHYyRfLdLqsOnheOHFJ02lnwNKPhgpJ8mwAlHkELrcp66kEtwCzYTVy6yuPsKIZy+zDBeU0HVUE + 4AlSWSS2SYKBB8aL5j46tnLznrFdIBlvuWa/P25+ZmtLvw5tly3DUKJ+GmUct8rO+qY4wRfsi1Ta + PgHCfsivEM3mZJVSlL1Pe4wAqlNqtzjMgkkTkNtXtGf5kQ3DOkV/KsjzkU0wlP/kR+6IflOeBBYJ + Vem8OEX6u17k8tzR2fyaZXsY4YYcPZNlOony8jglBy3pX5GzKNeWd+6gNL+nkPmzBezsPLiAnZLD + 34BW78LtA5u/oRfOXv1fI3OqbzHHte4fZm41PwEzb341rcf8/1+Yb+1eRcXHmTXFi4mM7oTJSx3P + OtUupTZW2lP+8eSxnf0/AItjCM8nOOV+qvoccHdNJTqnzgTzejbJUndXXSvcyFhUkSDR1h41Ulq/ + dHPRs7VQPLsOiuFnnIDLBI7wUksg7pxP+kOwQrftmRILQgevPvDJXmgvvoh5gKaIBzE5pWEgkLuB + bOuRfzrsIyfNtGegXguJGYQstbSmGAcQIzYjtTHe6YiCLQ5ljYOjZTNQEQz1mPcNDsVpur44avUM + A3npzCsc6FyQkIMjoMZyJqUnwGKAgrkPMuVRsQ4mFGbvWNyVq3ekLfpZ4RmfqY02N10BCbKD4M7o + sk2As3yHgb9flPsMko/06LIv0GpmnXuDgUKjXodCf0FzKSlT+S9xOnYlJ7lngW92pCqba3timPl3 + 8zsAf/bxrLAaT1FTb5s5p5Fld6J6uGa6JncoC1FIU6ruj00/St5g0yuHFq4tpZBqr50T68zGK6Wn + BU8tm46SMvNlCft8QNzWkBBpnBdIKixP1CDEkeMfy5LcIlD5FoFc/Kv0d+QHB4ezTs8kzSU6kDP9 + nh0BwFs2q6DFLcxWhWChY+sO4tI5y5+aG22SY1Gd3qiqCvCms4764M5oKt17ZXUUYlGo2gkhOOGY + +cR4ASDwzMnznbNDz/yQ4y4lQSnpjB99naX9mO41OXSrS/GCas46GKN4TBDZ9g/3jl4TDCgZQ5VK + tD1sV/Gz9m465EcG8CxMFOjSMGVt0zBD3dU0OUNEZtIUGoAOI7MauG+L5qlwAN3D4H2v+SDZ4JWv + CrtSLBgcrjpp46YipTl31ARCe9IrBoen1eSb8ivlP/cwpN3ChD6TVvnBQeTrTLwepMYnrr4FvQ0Q + Vkm8ZM/i/YOxTRWauDUQPah+yW/5VfX7RQaix5Mcn145iPIaW35Hg6t1aPU9VqO7FPSsvor2hDvC + 87dbudo9k2QFN0SdVSzQ49U5o3qCVIxW0rrygQGqAM2C26Zx89C5qVNKhR7swGHoc/GWKgQQpziB + OaDHHuJWKGShIDTAob306GpM2SNtS2ned55hhuqgfYvzxvMzaHC8BFY6q1g2BiJtoQiguphUOM8x + bE/4vg0WMFYnbpoqQZs56pqWihieHUsQ2LT/bdn/rjtr9oUBZGZUZerkycZmAcxW0PbhUSHOadpB + BhNSIQxMS1ZBv0A+C8gLKWFgdcJU8FBqrCtrv7R1QuCVjSjxsToitEcUFJMcC68rnbogYsgWYzAE + txe0+vBZcxo1grGGdUL6VeHojHSW4suxgvtMN2Efl5PNje80iagtH8u7BiSAC400uRlOrpxoPGCU + Qw3HGu9EcUBQvPyhcGCYPUjf61BoSuoyoXyBO+2gU9vc/A5M5qZzp0z8co5CCuWvLF/KPQ6SAoJs + zGqlLVdwIj8Y4FjaePLd42XoqIPHfNs90vGxAhTJhX+uzrVXVFjabH2Hhf1XqsQT768sPlAOYQC1 + 6qT7u1Kjq/Cq1QqVm4xgJIBz7qgA+Rg9Ovvqzrnv7dJW8zvbXU07dHr1+HtWgOhSaba29R2/ZVIg + 3VCRInTAUkDRHIgIsAubDGiPr243zLcMQz3ZbTb5jwyR7V3hP8daEtGeqtyYv1f6yTAYWA5HgKd4 + U3PojRevDjun1ij8yZqVjDB5GooITi+AsYQZnmWNKb7fGHlWF/gsru7gHvlZIBQM+qEZ5p+7sSE8 + gEaXhQH5flXD03d7s8rtqW/cnpLvFkMgOTQw3+WDO7T0p/cuDe80gwcA+e5S5jRAvp3djbumNF9w + LWaj+BeH+/PZXZrBqr5mBfhnljkNupiVQ2CFzIB7kxVyiKMK2lfotx7zI3u88XPENPse19o+aZqf + W/qcVbKBKEWpvaTY/MXSySljD/s7YFFIKxOsBKbz3MNDFUghb0G7ags0n4cwHTLsZSNUO6+cEURl + pwvSFR9flAe9tK1ZiplU6z7yq8CBV9BQ2NLSyQpgjqVZVDsfmX6TdWFChMv9BgJAm9G+cI6HwkaI + LfsIk1TKO+kBxCB/aRw1YteUpGQxVvAYvQDrHZC72tevQcXsQAwdHiOCj825FtZCyziBIqwI4ITR + 29CRxdhEnivNQ58IF4q/h+ziWmdASGF9qzZpnBFtip4nNljrTC8h452cGPpdK/reBlYCG9QPCCsf + gOKUb1vZ/UZT85wG4bq5XufB6MpaRBqpeqVcBCZHxbDtxYmBYrOTQ8sxKiKV8zSSBSURdJtNBMXv + AQaB639gv09x41xx8hfUkfPDJeQKSba1A6hWnYTzm1t8ZO6+ns8IdZ+8UJzy2C+Nx7OplgKd+C9p + XXGuwO+xByYy9V9fScgdrhA/1uMoCNtaBXsIVkIZkOska58Puv8eckfQmWlQiyy9SloAPCqcJgB+ + tpNOEVnbi2OAOu8o6Oe4TYBS0KnVpYLQOnJITd1qMJsb4T3we4VsT9PeFPRmWcyZRg4uPWO0cG1Z + RI9A8BHTwatBOB94fJ5PVvpUiU/HuAn3Jo1HRQWlioTGQQYyh4X56YqKVLbf7w1XH8M2bX5zteTx + rFvpFdILE6hGfkWyq0rBzO8N5Uoe5AqhIGWK2r0hTjyFS7Y9NE5AEXcVXeYgp9JC9GGB00PLQ3Sk + HB17ieYXcFCeguQdoFfPmt87rTVmLoNIAH1z3cBBRLjXlJQ4u+h0mQ9U8BEwidEWb6es4lLbeiwX + 3PaFLqYu0VG4wAfaW3mNh+HNdx6x7TFOLIOzlWMltz4qy0vMtlp/nBzq/Ie4itk/apSNxwhLHFnE + K6kqbxz0dpB9P6sE7WwY6yhRuoP7ys/1oL191l0V8+HgKG6gwc9/wo1LjmI/UlH6wRVFnWff+5Fr + l/y3HtJe4/Ue5bsQpUd8UAxwOFP+u34Q3MV5ev2deKlH3m5FCS8OwyN/dEUkh6ceXDiBPX+q8G8j + JocXzUJUixsWp3XDCmh735Ww23dWwq6t7659DdP/IpWw81f6+i3d/QTOYrxnT0mbx8Zp/ijqjhD8 + uWLSJxRTfU6hjqyXvFuA0GPbX9MeqQOWk7dg4LFkixvaHiEJnAP70zHQan9BwwoweXpcQi9j2wGF + OkYJoEJsW/8kBp2H3pCDqdhg7BE4R8EgYsexiSiA374jAyUVcmcBoR3HCp6ziHoQ6j90VIBkAeYe + oJ+/eV+O1PASBcHHPqxOIDBlrzfO0bn9waWcZJNLjMr4AYDNZRNdJXpHBWDQoJpLrWoRffKCIkUW + LKKYviA+SkRgX3dwgRp4MM6JpZeONha8d01i+IsrXs3toUJZwVoIagWTYs+ozeWMKSMuSs1I2+jd + LJ/euFHxU4a9rreXmBBxavxAGvnS69eSUlkWI/wMQMOAAVebuugWFm9ktKV6hCDw0HxckV6FGfME + 4wMG4VMrm+KQTuKlhCnPpnDjSTNhptRDqr8KYhfix1HcTQsMb7e2egPmTcr3FKlRNe8zqUO3H5o6 + dP5ZvwtioTDqygHeToZ1DuIbVI+1IkgrYNEnfPM2vFv1vYcVIKf4C1ff8oU9eHHwROUnbwBmRbuj + 4mV5w8uin3hZ6keh0N7FTapdSmONcWOq7+ABIEJSfVTkGuU6lZUDBVB/qEqumyvUR3Ad7frm7uZd + 65p81dE+qHQLMZLpeOY9uLOc/8+GgK+msDjMqFYOBd0klVZuw2sVlWH2MUUbCQdVYXkqHJs+ynHS + QTf7PbeEpCN0OvFZWJl9FpbCtVaQ2XVNSuJipNhpjGuKURiYUU0bFJGcm/H5VfYRmCe9mMdTRFgC + MIiGVXDGL0PTHRvjF3gJsyh0k+hb8ETgbkoNjQbO3mxUoKQOEPIj3Aa1KBMGC5KlQKoa8yBwvTL6 + sxgez8SVYCnv4K1HX2AIoq3R3vF7JXfHRzJqoqVrssIBPhSAkhqNXj3cXAeEICyFKp+kHfIyCg8G + jWJUIAl1GMEL71ahNqE7/ktz2aSZgqG1/HSiSCLp71yrWkF8mp4a+Y7mvfzMgFUMnWFaqAG7J8F5 + dBgtBWgpi+Fc1ayfDb+FAovoCLGMYyRnqfKfYi0MVboCK+IGuqCrncgYrjlA7YDVRWVKmSOlCNKp + yCQuHVJT94dTbZRvTuSvelYDLOdI2CFlk1iwOnU1rvk3CDiaOGE/+apNkYiNXSeMGCZQuHwbypmE + oxXkClMkT7CWuOHd9dNzB8p07O2cLcTbFT0tE5fEEUzXcpAQgvQO9YdyLPaL8kFKburolgzaIRMY + 5CihrkaV9jIuvzibooP36DGcoPri1BdW8MINs3CD0GEh98m0hx7XN4OgJ3M7gOrZgAgn1Wk18Qn2 + 5Z4TpolmA8tZRAxMt9OBeYjwUHiwXbiXYd42mJw7WK5fA5tzXE0A0OXFerAQGp3QZ4LQTx4ahJ7l + fwfhntfju7vwk/qvb4WPcQJVTX59dxE9Rzx/A7B9ALj0LuXQAy598lVT+YVGPc2LtIs0lbcatf7Z + 6PRI2p3R+KK7nJC6dLELQVRQ7smWgMIRvSM2ejjJ0QIgGxvfRZtZVdEcC4t4CWWzwzsGDgDQgnor + GFUwojAdg4pieXnHh2S8YVFVpn7dlwG+eAkuvyIjJq595yHEplSAmf8jCLFLaDWMeAZFzSGcgltT + nMVSYgFfKh4Ei+cJL1c3ccCKiq60ZhaIybSWgmdxnrHykmvWZjoCggF/bPrVyOUqjeLYqn1U0RL6 + l3LR4JDhOetRY7g0f1A0tQc0+9ZQfsZzRzXcCosFFTeAyi4wQlyZo2L5Q7jSEDMrUF6uJQOixdA9 + BqKVrgPX5j7X1Ty9HRDO/9ZgMIBGbgamIbWYlO4E9wUBw2DlZ6LBqJ8saRURcwWL2eMoPczP+eRE + jjw4LJizgIeQsUS3X5fzNfzWI5THRINiKCcV5ueWed9q/9J+VViZH87OlY7htSEWaJLj8A6XHUPe + MAf3ALY5nEwN+2r0+f2Jgxep46KWF3Tq8YRsrCpsQxPy23ald2G+rKwUrDhF4eghrpnTgQUIBcdg + hIkFR3/mrNjyKzOIclRccTj3lSnJPQRXHh00rrClsvJIP92mIIXNHVyjRPWExt6D+GGYpfpyPRDl + sldrrarHfphFyn/YDeDBFYm+nRPXA1Mpjc1TbT/4DtyATGOTysGu7zha7I/DHb+h39g0KrDjODd8 + cpwPV/JT81u802wERHgssc1xrw9GeEndVCWMOd93ZwG8YKpn/wbV8EZrt/nVWeD/t84CdR5j/2zk + /SvpHdEJn1Nsc5z8egOSxuUH1Ru1RsmCQ5mam1p2ibjAqk4B0xR97eCTNM0BK6G8Iv1UNKUa/slP + FI3ssMmtuOL5WLTRp3l2XWkqQVVinYXKTLxewFWPJXmBCuhKqa//MOVwBSLKIh81ymQfKhR/lj5K + Kb0aoXzre/x+DUOYws/QdqF8bLUqPQK5NJu32UcmRhlzY94ylIeCAQKAitbzkVFA47rASwcR9NKN + ynI4RZDf3BsXE44u/fyX45DSM6WGEBjnUMHaUOM5Wfzxh7iIcz+GrhJkLBMv9Jq62pPleGlarc2i + mta2KgspludK/2szDUrzE3k9a8Wajh1V/cAxQLPKukICM8aKvMM8KUz1TCRWUU/ONxL1adyQEY9m + VH8bMPfDwG4JQZm6eMhZi4QLCKzYQGldQwJR948XyJNkQUoGpQazdG34u2BUqAgtpbpZiyg6C5sj + rTPHDMeanlMwOnfQ2DxKvTfNL7jG6axWFxJXaQsqCMyRsalakCVjVAIVNQ13Z/AyDCmOKMqlRZpZ + SFpm4ogdm7goSZj5sOPVpfpvWUMloLMS7RevyYJ9lnJdqQcknA2hBaFkgGxQLIkGROeo5tfZK0c0 + eY5UW0rVTNSh2zXw1cWqwsQimIkYlywBHs7PirmIldAvl4SCsptFS6zlnhR9IohMZC+Rk0e7y5kw + +G/K6PKuxooY2Hzc59h9kE6nlhi60KlzXTGkSI2OQ/SDVUWvG9argo5/FuDeeGiq6HnAHQFr1T27 + HhmHr/GZCq/0QXil6z9Z+BDXNz+0NIWY4zjRb7xE+GKvWq+Njbn1EK5mAUB6JX7PKL2KMLXwG4H0 + lbiE6zq/+g/nGM79S4PQat49Jm5jfXdj82sG3C8xA+6rKaHm4iQoA0NGo0PHg8G7QGkRxqiXlc3I + jvuCMLajKWrlfcLje6HadNQjm3Yl/vAsa1+cp31gcz64St7eAIVf58ML/FnVst+/WugiGzu9PdFX + bHlb8t3Ybo/QNrA90HGAz0ZyuGCeVQXSsWAbX6hOlnyVq6J0gJmWpqGaufcdiBwMYkF3xl+V3XPc + jZbuwHWuhAUEhIpYdv2izJQF5BmQcUkg5izuotAV6MI9LASXTXsqBHTLHA3cxpqnKN7KBPPA7hu/ + Z+08vEymtfNkx+Yb0xPxOxIIrDWSZxGQnqrwAh+ESrW3dQ12ZQ9cZsjKRRY0UGYw0SQEzQnkCfu6 + T67RxtwpPMmYXEyAdj45WxLihZv/44c2e0UKjhBOBM+C00lMDqyx2unQITU+I668LhBkqfKPvi+G + RgniApmFdP9MAnci/BsIYlOWhnJG2ukwns3OtlHO7AbeIhIJd5Q9l2jmTtj+OxCXZZxYVFpMCHMm + AG32zByM8GPAfqQ6YqfUlLZIMfcidpcQz8TA8neTJFGRAx2sSu4rIKE5sUAfnRXzyVEZFna60Oca + dUbTAZqs0xVTwoU8Vctgg0hyUVg97MfUdTxGyrzt2elYBaS0EXAlxyl/3J+Tccs5eejcQRFaJ3BL + 3o8YUGsu3ZAFy4XcV+aC/CCPRjmaFrLV6/R35eQIb2OoH+IA2OSOeC2D7wqCtNV8hkyifXE/Z3bh + dl9nir4pfdZ9S/1gmUBn9c/20sdDStn6P6iPBpU8NHhccNB6MCi8qePAQ2gZ129Q9XqewPquZs5h + fbN9ZRS8pYZDlVPdQ3y6eXe/iw3SdFliFB4L3hv8hfEeRkmMcUjBxk89P5Hd9N2v/sAPyh/4UDUG + 7InmTT7yYHE4ySB5RuJuXtfD7hmOcVFCowGtjX39Ygkd9Iq/6SsenphtlHoTVCfv3BVX7ODFR7JY + ysRMeQXFZCoKP1nC2f40T/u1+WoN7r7twoLI0GF3MGLHGbz7CSj2dmhcMK58YNXePJkYNJkLuJJK + Z9TFFiyuxn9OnEyFr+HY6iCQFhL9lhIaWR4LFHogD/M5RQUKbBP7MlKKH58H/woqwaWDC4usU656 + OOiwOwSeiJAkj1UAGYiowHpHkPYMbayh36gdCuFS7jagzhkGIoKzWYrpVjskxoJNK12TshQImHTB + oyyFXLq4LhBGhVcH+Tlajr66A+EpAxplT9p26bLp6/sEAHrMz7OUcQavOVvUvpxmbSGoYsmmAx4Q + YfKBZ25a9x76KS6qmNWUBw0oMUNpdGo8PlKNzm5IQGXmAHsG7MfCrsmJGxRwsdgc4vntOEdqSu+N + MtsxM0QwPM/2FFhe2AJtoYNgKJn25Tw7YGvPF27bSdZOgw6dLPim6NZSzH2Byclvm0UgDgJPySea + 0bcyE1vHODCTP0GZ4NgdVZ8FuhLwj7BxAZYldYGqXDAy65oOroiXtGwCph21lxdxTmNp9QOgIQlX + 3GfXVeM6ZGQZI3hmpi+oSnWBMjhRczFMrO3h+HAsIrEQfaSeL8waZDPpIdDQCJTs4FNviX4x1+n8 + jpV9k4J17v4sy+t3lJJJ7uycqET9L4m97L1wpxVytPCesEmomTmQUtXaXVE9PSv5oD+PbJtP8o9x + 9nL8PZyysh7qfssOjAT6Fx075EO/68gDcoex/ZDzOyhcSmx+Yb7dZkOwPbMDjVc9vuBuCaILUb47 + WIHmU3aYQ2gKcXZQed2QHwTzmUJciX0Rso+gqCfB1ArhljKIFFlCtP04V015MGZvkW5qPtR99lWG + /aGxC1v8HVoYAcrD4RfMbqHddAlG1kf8Oviz+4gmyK015dZkMgZjsSeFixJEUkSh3+lTSaeyii2R + duLUK95h1zGpOewbq1VqHfalnDtvkT9p3MlKaUS/FVUKc0OtRIeeTLytOOo8jJhW9IiW9TY4UsoG + XZDeDms/KPI3t6srKT1afGPjnqh+zYmFwZIKhDgJEjcfxduwmGbMgtnF7yUKh2Vaem09ceesWQeT + t4tpy9/GExJapsJwEaGOEgNZTRizCOA+ptudDHO0GIVw7rQMJ7a0T8VAhPh0VYwS8aYHYUoPtmpz + kHmOd9/jGrQhflTMGeuM94iDXHkvfz2HmbPBcZFM1kbiXZS1Rf92lrPgPhSbMVfLZfY5IOQivjTx + 4SZPTw+BnpunMSSI8kSVnlKkHGJ7e8T7YCOz965YTk1fzHpsDwo7oIeQBdkJuraq4mrFa5EPehiM + NTHVJYd363lQbMJJFnN2htvgfzfi3E3tQhwQBjCuVpxFODx62iwOIYCq8MrNrD+8DC6rF8/Dgsdb + Mw83Xf+Md85AFRMvCtzOu2ndz5SIrc3PZTZqbT44Py1/nPwkCErVC6th1+sbvPLHpb7Bi4Oj+j+W + TDGyw/q2L9/u7d/wV1hg8jaVe+UZ6exnrMz7nk49rf96HkrUtwyIu75BCcXr28wlhKhvaFCgrYe3 + PXFl90JT2Jxu+x5qDJp3T+y9iZvY1leL1pdo0XomeFsmaJSIhMkZsCzkzyEG58Bf31Qq5R65l7xJ + NFYZEckOyAwiV1d7ACUH0L9m1MIgw6D747gSb4E1jOAJoUksYqBued//ZYEJKWoMaIyDk3JADohg + ZWKL7E2xMVq9E9itUkaS3W54njxf0HOVbR7DUwvzhEM1QwjTDkmiWRUYXlmutdZL4f9CsJS84L7W + 0t+DdCSJdgB8qOeVXNlEERyegI4gNagJypapBgyHcGcxtVeUH2xkjeXk1+7Kyy4RBhaK4E75laJ3 + ExMM3D1bNhHJgWYzAE8HiVHlNr2VgGvxa4QXt+xgoFJmGflDxZSUpGkstBvM3oSbPhlrvLCM5yIJ + ieVYT1w2sI15sgYqZaByKJT/c6QSUgFIiZ4X3XxMKdAKTRBE/IR5fT8TfSUOSvzxVZowdhnOkuQX + DKyKBCitERrvDBke+C6BGdQLUXB6K8uwe116WU4C4T3WRtkETchmW8gqiDJLhkZLQQraJsA5FkrE + BoOjj3I9MrWKpK+9dlnMhc5AYWnayJIezoJRUwfCz4EOxRK3zGgbjkbn8ey2i0KRMna1ZsmxyufX + KPLS8nb78TNbWWUyutX7ctA68iSKrh8qtsWOHCnBteIym/q1fUOlQWLIsCobwiPEWa0GaGsA0cFM + fYViS91UN7fYKVE+QowoF1X7UJpMpeYZg4b8RZmvUKNR42F0+2Bph1XvEiR0YDp+76tXfR4hb93T + wiufK2t4q/ngsoYvYkb1MM3OdP2fdTx+tteovg0D3m+jT3OH0pXFNR/JjFObBGZzfbf1tTbLF+np + j1mGTMSWy474lRQeJh4jLR9P75uVrQ305GgVzKR6kI4u5AYBHysrI0t5atdgATz7CzokobNDtIDW + JqKreePNZZ6jPDo+z/IOYaTwWvctXNj8AMxHk6Np57zr7oQzzaoPNR2Wb/zcjYx+6YIgXoVZru5o + wFfI7kQejN/F0qt1MyiyHYgDxRxroDJrrScAAHSRMDKsWiiCT/CgPhOMk+fvJ5FRhMWLZ1uoQDAx + H13wKyWYo/OUNCdWG/1E2uEVMsvilMEAxquKqZ2GSXhApbk1kSd1gB0BXPebtIhm0VtvrBF6q6oz + 7LRPu9D0BVBSLNeUmZ7fmGmg0BpjyiKtSiXLHJ2IWu2cWfNvFLp4kVjK62nvFL96dN7kbLxSnhAI + Nzhz2FOM0JbvtZaIugsJQF2srW8vN7eayelkrZyirdnawZ61ZP0bpIcRBEOW5cXm039pbTaerK3y + pYebApOURVqUjM5GfGbKPy8TowE4BYrdsIxoAuscnMJlKUwaJazlu2RQpSCJ2b41D0cY+igOJqKZ + nwqt2dWUDUBnjc5xmA9D8UctNRAizFAfhcLep1Nl7JZau4ezrfWxgfKbBElsz0sUCPnlCqcPxYPU + xQZyKgd5kqzZuWjFbwSJraFpnqMhQoBX9OuZE5E0rVBCq7CzX2yPpsUazrijopPr/v3c+bHQMSzK + z2AHQilrt716Fecx0/30tlG9ss/ibAO3fWjONs9m3hmjy0Jl1TN/7+obyKWMx2DlqHgM9vQY3OCZ + s+/PxA0tnus9+8nes/qBD8KzWN/iSC/2TX+OPg71bf6ql+/2kea4z3+eSk9cZNw4scz64wYvym6P + Yl9/I50SXhspif7W7uqcvokeb3ftrgVbqqPMlmD5YfWc9xPHtUff/EAoQSqlqMHPPO3+jdvXaScf + +73BeNd//jGmObm8vGyImSnVGZhk3MhHZ6vv92bKlnwbPu20i8++sJrQ+/hpi99dJa+p+YHQXWZh + tjcZFxxURrCMg+kJ5ahiKy5MV8LwyrsUf2+cS/ekqlMREnV1BGukdECKz44e8z2FTWGytFO/ANcd + 4vtLaTYp0362Em2DNHlH7ubRwWvSo7h9YAaUxR+O/dQto9n/kCaHND54bYPEBjPA8B3OBMvJK8qp + JgfLBP89r2nPAcqKtJV/oAZqKQUVhbmu3ZrV6nleba3brMsPvVbAGDVKO3vqi0vCYos1hr/aEs1N + DrfB0dMj4KMMvr/qnlqv5d8eWdv46u55QYEbXsVrZ0PgkHxSaPLMVv6OshN4ZWQ2TOz2kSS/1eLu + 6Vaultfyh1UpTkadp2r2zaMf4k/f/FBc4m9+qNCBfnavVzXbxeHpPB+mGp+EawTEXf0N7yJWygN0 + 51r3W7vrzd31u9oSyFESFht9E+s9FWunN/tyLXZzvP7x7Fdf3zuzfdzh+W58HHe+FStAFdHe9Ydn + XwGsCtowDxzeLU4SGSXaCnmE73o48juqDY3b3KOcGBZp9p5nXgIwHHv9FZ+QY/wN7OwveNN+Hl21 + yRTvweM/LVD2xycKNSij8hThhpUi793U9m32AZ+BZ6CI7MY09T9lH8gtnpL79HmK+eTGhFF/4bXj + Wdzr5D3MEj+h9f9pdNN0eQOQ32mV9pH33t/Q9G06QYNNLRre9f1ze9hDnuO49pnn+VXeRxBhJoOO + 2W1e39A1hbmR2YGKyHg3Eeyn//f/QoU+yJjBcUY2H2KX/nxDt0fd8w/gL1oTPRjetYVzfYeQ0/2Q + UlVU8yV7jx2DmaaRi2ysNNdX1raPm9v/C6tAXn9Twnu5+tmq1DSvV9OunYVRr/LqO59y7ve+fOpV + KEhvvQGTI3m9Et4WnmXlAMC/7yrgFFOoBNbm/VifMXb96X/9L1vN74f879r39k8EeCJhfkSo2vg+ + BEDogRlkv/UNF2JAW5UQvdpqNoh02Fr984uf3uVpa7252XqyY59ReJfZTbyPv6FWGVzY722Q258Z + acVw2Twizq5Yp56e9IbHx6a+mtoIy9Kl2LFN4jFOMOulPW50hAAm+NtHWd8+kkbrz4QOIT8w3w4i + 0HREZK0E90hYHyO0X04+NJL1LYr5DhvJ2iaZvdc21zZ4Zt6/2U2s5QJCdj42IJ+R8Q9SL+zIbR01 + fK5OD/+3b7Gdr2Lv7SREkoye/vJzLJpqzco/zMIlHumCUVjDAvCIucQfVBlCCS3Q/BQcpL51p8pW + /BNzNQxsJXbq18Ejmp76fTDkU99xuBxHFPqTn+lsw/8MgJZ1hhVEhuWoertrTQMgstbu5l1FwnKM + WYC0GFbJ4dVehbs1Hs42+wq6/mdAF7hKIgOi4NHkSmpivTV7nd9IZ2kq0vfTCZoEfu/JweHuPW6G + WYj5zo/vAoz1FsFU4b5d3NtvLPHj2X54pnCw7y5uWlUuHsYgUDnudjL0pGizgUlBwckdD6sZ+2rC + pUfDKs91kAN6TV+BTNBaAZEUeKOipVAZwLRYeCN5TZVsXn4cQWczpy9o7M7KpsnFVaBT+ExL12xx + I8RWyB92ioMv+cOLCydFODPHiUGOx79KEx3Shks3e4qqm9eeZ/tqKLeRsWXydp9beh6HOFuazC9b + hRERiVLFdKgLvAB6K5b/2z0ZFi2BdIscgvXW5jUKuerax50hOdp/1RC3icoVgTmb25sWpaULqGEr + CdltKr6sTFjqbXv7qrtrr+kMOvtfHahZPmSrn01h3GxeUxiXwxqNigODJs1YmuOmF/HdTMHmRxRb + z/l/EV/BDtggdKsPxgg7nk//TjCs5LF3ZL7F2ZvlZFXOG65a5Xbd0Da3upOkIEXGm+OO1T4XLrG+ + 2wqpKiSpb4/op9ehSkkR9gAkKGcsCmMG97bZLv4z+Pfw/GqMXZDMZwUbX1u/q2Z3a3cDxcpdLfzX + hprlvIu5Oc45d2lW9j3b+is7/59h528VO7Xy7GrF/sGjYIK+HoI/E9WQn6HMnZyL05myJdgTebtf + X2HqVtWR5GiIR5wBApjluyn5nqdeVHMBl3/Bw4S+IepH3twkv59jEyVX0HLyb9jcERQX1fKr8gK4 + oTE5VBpwFvwzV3CqHPI7lETlvGGNYd7j6rz7Pm+iLEiQZPAghGecpVPQS3eABgYFBYkUPBNGpyv/ + c+L8zJ2P6hfdkYUWWfzIysmVR6YlqJakNxE5T7D5XhhnhAEWn6NMt+AtixuTApUUMHo3Bvkg/FRA + ArPkQvkFK1B0lH36/7V3NrttG0EcfxUeLSBE2hgIgrYokESKFFh2DFOt0SMV0Yri0DREyY176L1v + kOfLk/T3n92lSIukfTHcQ09xoOV+zOzOzs7Hf+qLRbPZVcFgNS7drmKp3fO6gbX02CzNwkYESVGY + ZviNSSIVIN5uJppX9bmSr6QkhTIbSvziq5ssrua9o7sF9cnx7/3bpeJ3cTPh+18yzkQJUn/CvtBC + g9ZGYj49ne+xDM+3EkoV3YcqoyXexxWTyfW9dFev+DF+8eppASB20i9Ye0yGP4pHmp73FIy98Y1m + HXrGKTcO1nz3NLCbR8bXx1EnTvVKJ/yj5+rvZH/zLq5rC3c2YO1cdX/TcjC7G3uB093gtegmqu8R + svsbT/dmgydTMR4KF+xUjMMH5oG0bMT7nTj/qxg/laSZ5unUw4tVLvAHuF6eRzUr6j1e9jY3zQwJ + jEMZOa1KEJVQxiN5TSZmNAKw7DaecS9H4/RL+tWSBzYGJsG1tig/rS42tqNb9IlzkixXXMOVUwJv + c1sp32DNH69wLn/BmodacZxu14V1HH41qR/+85aLkOgDnMspr6HudjPi6ehthCvaZZ2FDhq9na8u + eV0pkFFYat29jbf09QfuI+AYultNlXzyhkvUuWtbRxTIDX2Nt5AIz03PCs63txsomGxWn6+6x3yD + SYBlqk5eH37yW65dHpKWeGN+ImQYClmfY2eYXWbyFYFn9Slt8b6E5b1L57KuJOgh63bDT9UyWy+3 + FoMwya5QHXu3BDtzhZfoRChUJBP2qKQTjBAUeTmhGkLpAiDCgA1eT6jSu8SWpX/iSZ+b7AiIuBsr + HDNUsTo5J3uGPyogVF6IBvip0NX6KmEfFTB/aB7DvtWf0ULkJBATD2dCub2eTZwwyRxgC2iQ0LCF + BHUdCn1c6TnjDx+GiTMyvD4ZjqYJICepgmBRZb36oHrGDfEgJRRVMjo4liPixc8RaQU/RMfR92// + DFDondzAYYvc2EhuLIPcOBjNxuVAkZ9/RX+DTfISJdaDbQCjAZ9dUCz1+ygpjoaIYi8WMk2pibKX + BZURCxv5Y2SfMJrciGZZC+NgLnOKZX3e0redTUw1666InU3XlMZZU8dmWc3QssQZLsdcKsteWAzD + 55wbhS7JrMefvFmUtb+wMiANArlBwpfTW7ZtPGcVl9UogQCHISEHPD4yzpw2LHBw6EvWTZigmdKl + 9EPx5N3ZwNmElBMlJJVACcwbCghyP6Ktq+YIZIPWTJ4l1YtF+nhpoBOUaw+diwv3nQJlQVjE7Sdp + EtYgroU5G9MgQaP7qpTOBTT97XfijCGPwbzwXKPyYwMF5iAZDQeBjxUJCVRVOcyFex5y0m3q/oGA + uhfvWuJ+2zqAmOLaAdPo6ZOvFvH7s4jOLQ3PNgx+c/YCkbgWTh2IEYZhor7/Xd+ahcKNzRqrbWUP + SHubgQStXVHMS6suKbJp3LttDeciuynYLIvoINWmHhgvFd3ggPT0zNQ4GorHD490G8WlEgbEEuKJ + l5xDe7nbzD03HJ44/GAXiuM6iGQ8YR7m9taCru10KjbM7UTlSfPqcze17S19Es6K7WdS3Io7HDWl + vMk4+rZ3sEjb3Bq204SmXRGycSIqFAhM5hR3BNc0+2ro4gvkh7zABNyX9heL5lrkytahrI9jv6Lm + Z8/sL5sHxJNZnKgLoYZ4sSWW8AOH5yPBkzqsuIoF+O1OgiO7e5PqgbzPa40KD0kM5Ilr4OcSTdyR + 6ywHjFRXsaKyJGKW+Cy4cJHM/OF5ANN5zJ/E84LsUQrz6Emtt67nuWeqT7asr9AOmbYIPdzgORHb + mCBHpxTWODx7xrxKcDM0bibMoZ2chDWKLBRYiAz4QSaISyYdaYv4w/vBnHKFi4tMyjQgJ9QHqWsu + k+1c8KqAUhH1MkPIKVgH84rdCOSdKlOQdjA6jGD2CDYcufZmnhbpgc9x0iQcOJ9RKhwQgaQASWal + P7UR8vQzuzYIf4rZYmDRTLLrAlAglsVxwzLraFiXQaYJ1e+zhk3gMBYo5Mv/nk0AuL5HsgnsI6a3 + PMVaxvaxjf5tahvD3rZXj2cTCLLHaNHqeedyX9VkO8o7gl7F1Lo/+Tjs/k3i2MDeups0pGR3M13K + O0He187Hn3c3eQoLwi/Pp3gZZY1cL0p8TwrCjk+PJ7/+C7nAnAGB5gEA + headers: + cache-control: [private] + content-encoding: [gzip] + content-type: [text/xml; charset=UTF-8] + date: ['Tue, 20 Oct 2015 17:57:58 GMT'] + server: [nginx/1.2.1] + set-cookie: [bp_plack_session=bcbdcabedecc3511b6db52f78b6db23675a78f10; path=/; + HttpOnly, SERVERID=athena_nginx; path=/] + status: {code: 200, message: OK} +version: 1 diff --git a/tests/vcr/uow.yaml b/tests/vcr/uow.yaml new file mode 100644 index 00000000..01bc7caa --- /dev/null +++ b/tests/vcr/uow.yaml @@ -0,0 +1,170 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.4.1 CPython/2.7.9 Darwin/13.4.0] + method: GET + uri: http://ro.uow.edu.au/do/oai/?verb=ListRecords&metadataPrefix=oai_dc&from=2015-09-30T00:00:00Z&until=2015-10-02T00:00:00Z + response: + body: + string: !!binary | + H4sIAAAAAAAAA+2d3XLcRpKFr62nQGgjNsYRZDd/LFuiJTkk2bLksTxaUbZ25sZR3Y1mw0QDPfgh + 2XqCvd5H3CfZ72QV0ADZIKmxx57dUMTOWiQKhaqsrMyTJ7OKD7+6WKbRWVyUSZ49urs/2rsbxdk0 + nyXZyaO7P759vnv/7leP7zz8y5OXu69fvbjzCc2z8tHdRVWtjsbj8/PzUb6KM1dMF8lZXI7y4mRM + 2/HBaG98N7Q+uiiT3hvnh9buYG9vf/yfr74/ni7ipdtNsrJy2TTWa2VyVNpvv8+nrrKh3eaLdz75 + 5DbNwmRGF+Xs7uM7nzws4nKVZ2X8tavixwd7+/d29/d29w7e7j84uvf50cHB3x6Oe03slb/XcVlJ + cpNHd79PyupNPM2LWXk3WsaVm7nKvS7ieXLx6G7ukp9n07tRNC/y5aO71v/eg93Dvbd7e0f2f3/j + YZ1VSRqe+q93nj4OsyryUZ2fj+JZPXL1eJaP6XuswdlgmAoj64yFX3zyyR2mp5FpoovYzeJCv36Y + zGK+OE/4kU6OzvPitBxN4hUTLUfTfHk0L2LaJtPTn8/jNC0Ryd7ew3HnNfXCPJGCW6682Npp3Xtw + dPg5Yts811A+eVjG1fEqnj5e1ZM08St7+UMPx00jvfJw3I75YSNYG7+X6tFsGplGHvmfe2o2qJi+ + 7fhueHU2bV9b1UVqujmbjuM0XiKjcrw/2m/bfqAqR/+oJochRrdRZ9+20WatyvSoSqo0fvwkc+m6 + TMoon0dpfr7LcqezKCnzqshXyTQ6y4sqvohOUleW0TTPKpdkbPz290Ver8ooyaK/PnUHz+rDv3zx + P//13xdRteBX8yRdltFZUtYuTd7Hs2iyjsqpy6yD4//48eXX0TKZFnk5zVdrNKEZ0x0Nb1rErsqL + x++kWjvR80bXrF3zsNfytct2oidpfBGvo5+Gm71z2clO9CbOyoU7H272PJ7lZRyf7UTHcXES+/Ft + /e6LJD2Js1NUfCd64bLyap+zuJwWyUpW6vHbReyluZsmp3EjxxnmoUgmtZpImqs6LREYUo+LaBav + 8jKp+LkVcoSUo56YtYQTWp9dknNZr+KChZvV00oL9/faZVW95CNVXMzjAlMe84WzhP9sViNy2Yz/ + STfob54XEfaBvU4Hbs6LqEKe6ifGunQnWVyhK6Y7ZVQmJxlmg4WuUhZ86dKUF6qFy/h/cfSNK6rF + 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 + 1ofj3h+seqi/Hqa/NPb4fwFGTz0GmmwAAA== + headers: + cache-control: [private] + content-encoding: [gzip] + content-type: [text/xml; charset=UTF-8] + date: ['Fri, 02 Oct 2015 19:56:22 GMT'] + server: [nginx/1.2.1] + set-cookie: [bp_plack_session=5acce21f0d73e59cd4d752dc298cd3e7a62ccd2e; path=/; + HttpOnly, SERVERID=apollo_nginx; path=/] + status: {code: 200, message: OK} +version: 1 diff --git a/tests/vcr/utktrace.yaml b/tests/vcr/utktrace.yaml new file mode 100644 index 00000000..53d7b690 --- /dev/null +++ b/tests/vcr/utktrace.yaml @@ -0,0 +1,4139 @@ +interactions: +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.4.1 CPython/2.7.10 Darwin/14.0.0] + method: GET + uri: http://trace.tennessee.edu/do/oai/?verb=ListRecords&metadataPrefix=oai_dc&from=2015-08-30T00:00:00Z&until=2015-09-10T00:00:00Z + response: + body: + string: !!binary | + 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 + 6/8PrCdg9UAlAgA= + headers: + cache-control: [private] + connection: [keep-alive] + content-encoding: [gzip] + content-type: [text/xml; charset=UTF-8] + date: ['Thu, 10 Sep 2015 19:45:25 GMT'] + server: [nginx/1.2.1] + set-cookie: [bp_plack_session=90e688406106723948bbeb8688f82a9710273418; path=/; + HttpOnly] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.4.1 CPython/2.7.10 Darwin/14.0.0] + method: GET + uri: http://trace.tennessee.edu/do/oai/?verb=ListRecords&resumptionToken=885231/oai_dc/100/2015-08-30T00:00:00Z/2015-09-10T00:00:00Z + response: + body: + string: !!binary | + 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 + pJsvPF9d729uPPnh/wcNbCMVDe0EAA== + headers: + cache-control: [private] + connection: [keep-alive] + content-encoding: [gzip] + content-type: [text/xml; charset=UTF-8] + date: ['Thu, 10 Sep 2015 19:45:30 GMT'] + server: [nginx/1.2.1] + set-cookie: [bp_plack_session=87f707c86645b5f1ff64d22d63f80812262a0bc5; path=/; + HttpOnly] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.4.1 CPython/2.7.10 Darwin/14.0.0] + method: GET + uri: http://trace.tennessee.edu/do/oai/?verb=ListRecords&resumptionToken=885231/oai_dc/200/2015-08-30T00:00:00Z/2015-09-10T00:00:00Z + response: + body: + string: !!binary | + H4sIAAAAAAAAA+y9y3JcSZauNy4+xbY81sdAMwYI8E5WVpaBIMhEFUFCACrzdLW1tW1EbADRjAs6 + LgSRA1nNpLE0acmk2RlIM2mgmUyDbmmsd6gn0ff/y33vHWAEkqxTqSyk0awuBODbL8uXL//X1b/+ + 7YfhoHhfTab98eg3X22ub3xVVKPuuNcfnf7mqz8cvew8+eq339z6+u3Wbmd/79tbv6L5aPqbr85m + s/Nnd+9eXFysj8+rUTnpnvXfV9P18eT0Lm3v3lvfuPtVav3sw7S/8MXFfbe7t7Gxefc/7b0+7J5V + w7LTH01n5ahb6bNp/9nUv3097pYzT+1TRrz1q199SrO0mPUP095X39z61deTano+Hk2rF+Ws+ube + xubDzsbTzubG0ebTZw8ePrv/+I9f311o4k/+ZV5NZ6Lc8W++et2fzg6q7njSm35V0HQ+PNekj8bv + Koj65MnDe/c3747L/j/1undZNf/VGE869zeONjae+T9/TL/0wPUvvyq+SQuaTcputT6rRqNqOq2q + 9ao3v9sbq9O7mp1nw1qYWmsy/OJXv7rF+jQ1rfSsKnvVRL/+ut+rRrP+SZ8f6eTZkv6fzWfv/ul0 + UvZ6/em08+Dxo0df3219pU56UIxdG57XZNt4cLT54Nm9jWf3n0C25u+aya++nlazw/Oq+835/HjQ + j53VKJ3ueDD4+m7+6/VtNaNPbFvPfrH913drOnw9rGYlsyxNk9iiZ71uYTZ/Fj8v8O5Kbo+2d79K + n/a69Wfn88nADM/uV4NqCN2ndzfXN+u2n3k+ir/0eKQpFp9yRqJtPiLa6u6zWX82qL55PphXx9Vk + clmcjweX52fVaDyYFuW0GJWz+aQcFCV8Nex3J+Pjvn461Xr5v1IHvDgZj3vH48moKt73J/NpNX1W + HI0vSk5OMR/Bm5IBEj7F7KzqT4ph1T0rR/3pkF57RXl+ntlmWvRH7qyYXk5n1XAKs+UZ3tJku5Oq + nI0n3/xuPD3r3ykOR9UZszk8m/TfMUG3zk3cvldNu5O+z+03L69OsignFQe7Oz4d9X+omMi0CBYu + 4KTB7KzojpFck9G0uBhPBr0LjoknzCIm1cmYj6uTk6o7Q0YWU47arDrtV9NiNtaHs8l4kJY7PWfW + dM8Hx5WogDCpJFyr3nqRCa8v1eLdaHwhGkzSx2kqx9WoOumL5KLYwl6cT2DfyYwO1oujs/6Uucx7 + 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 + headers: + cache-control: [private] + connection: [keep-alive] + content-encoding: [gzip] + content-type: [text/xml; charset=UTF-8] + date: ['Thu, 10 Sep 2015 19:45:37 GMT'] + server: [nginx/1.2.1] + set-cookie: [bp_plack_session=24449360d8ed84c2a71635d1fb78f4d19df9ba5a; path=/; + HttpOnly] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: ['*/*'] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python-requests/2.4.1 CPython/2.7.10 Darwin/14.0.0] + method: GET + uri: http://trace.tennessee.edu/do/oai/?verb=ListRecords&resumptionToken=885231/oai_dc/300/2015-08-30T00:00:00Z/2015-09-10T00:00:00Z + response: + body: + string: !!binary | + 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 + QDQrIyUtzlrj3dHLp/8/I2+nCd4gAgA= + headers: + cache-control: [private] + connection: [keep-alive] + content-encoding: [gzip] + content-type: [text/xml; charset=UTF-8] + date: ['Thu, 10 Sep 2015 19:45:42 GMT'] + server: [nginx/1.2.1] + set-cookie: [bp_plack_session=5ec9afdd116694f9681f27d4f051d22084f34a99; path=/; + HttpOnly] + status: {code: 200, message: OK} +version: 1