feed icon rss

Your email was sent successfully. Check your inbox.

An error occurred while sending the email. Please try again.

Proceed reservation?

Export
Filter
  • Online Resource  (11)
  • Brandenburg  (11)
  • MPI Bildungsforschung  (9)
  • Berlin International  (2)
  • Open access  (11)
Type of Medium
  • Online Resource  (11)
  • Book  (8)
Language
Region
Access
  • 1
    UID:
    almahu_9949602254902882
    Format: 1 online resource (807 pages)
    Edition: 1st ed.
    ISBN: 9781484243985
    Note: Intro -- Table of Contents -- About the Authors -- Acknowledgments -- Preface -- Part 1 -- Chapter 1: Jumping Right In: "Hello, TBB!" -- Why Threading Building Blocks? -- Performance: Small Overhead, Big Benefits for C++ -- Evolving Support for Parallelism in TBB and C++ -- Recent C++ Additions for Parallelism -- The Threading Building Blocks (TBB) Library -- Parallel Execution Interfaces -- Interfaces That Are Independent of the Execution Model -- Using the Building Blocks in TBB -- Let's Get Started Already! -- Getting the Threading Building Blocks (TBB) Library -- Getting a Copy of the Examples -- Writing a First "Hello, TBB!" Example -- Building the Simple Examples -- Steps to Set Up an Environment -- Building on Windows Using Microsoft Visual Studio -- Building on a Linux Platform from a Terminal -- Using the Intel Compiler -- tbbvars and pstlvars Scripts -- Setting Up Variables Manually Without Using the tbbvars Script or the Intel Compiler -- A More Complete Example -- Starting with a Serial Implementation -- Adding a Message-Driven Layer Using a Flow Graph -- Adding a Fork-Join Layer Using a parallel_for -- Adding a SIMD Layer Using a Parallel STL Transform -- Summary -- Chapter 2: Generic Parallel Algorithms -- Functional / Task Parallelism -- A Slightly More Complicated Example: A Parallel Implementation of Quicksort -- Loops: parallel_for, parallel_reduce, and parallel_scan -- parallel_for: Applying a Body to Each Element in a Range -- A Slightly More Complicated Example: Parallel Matrix Multiplication -- parallel_reduce: Calculating a Single Result Across a Range -- A Slightly More Complicated Example: Calculating π by Numerical Integration -- parallel_scan: A Reduction with Intermediate Values -- How Does This Work? -- A Slightly More Complicated Example: Line of Sight -- Cook Until Done: parallel_do and parallel_pipeline. , parallel_do: Apply a Body Until There Are No More Items Left -- A Slightly More Complicated Example: Forward Substitution -- parallel_pipeline: Streaming Items Through a Series of Filters -- A Slightly More Complicated Example: Creating 3D Stereoscopic Images -- Summary -- For More Information -- Chapter 3: Flow Graphs -- Why Use Graphs to Express Parallelism? -- The Basics of the TBB Flow Graph Interface -- Step 1: Create the Graph Object -- Step 2: Make the Nodes -- Step 3: Add Edges -- Step 4: Start the Graph -- Step 5: Wait for the Graph to Complete Executing -- A More Complicated Example of a Data Flow Graph -- Implementing the Example as a TBB Flow Graph -- Understanding the Performance of a Data Flow Graph -- The Special Case of Dependency Graphs -- Implementing a Dependency Graph -- Estimating the Scalability of a Dependency Graph -- Advanced Topics in TBB Flow Graphs -- Summary -- Chapter 4: TBB and the Parallel Algorithms of the C++ Standard Template Library -- Does the C++ STL Library Belong in This Book? -- A Parallel STL Execution Policy Analogy -- A Simple Example Using std::for_each -- What Algorithms Are Provided in a Parallel STL Implementation? -- How to Get and Use a Copy of Parallel STL That Uses TBB -- Algorithms in Intel's Parallel STL -- Capturing More Use Cases with Custom Iterators -- Highlighting Some of the Most Useful Algorithms -- std::for_each, std::for_each_n -- std::transform -- std::reduce -- std::transform_reduce -- A Deeper Dive into the Execution Policies -- The sequenced_policy -- The parallel_policy -- The unsequenced_policy -- The parallel_unsequenced_policy -- Which Execution Policy Should We Use? -- Other Ways to Introduce SIMD Parallelism -- Summary -- For More Information -- Chapter 5: Synchronization: Why and How to Avoid It -- A Running Example: Histogram of an Image -- An Unsafe Parallel Implementation. , A First Safe Parallel Implementation: Coarse-Grained Locking -- Mutex Flavors -- A Second Safe Parallel Implementation: Fine-Grained Locking -- A Third Safe Parallel Implementation: Atomics -- A Better Parallel Implementation: Privatization and Reduction -- Thread Local Storage, TLS -- enumerable_thread_specific, ETS -- combinable -- The Easiest Parallel Implementation: Reduction Template -- Recap of Our Options -- Summary -- For More Information -- Chapter 6: Data Structures for Concurrency -- Key Data Structures Basics -- Unordered Associative Containers -- Map vs. Set -- Multiple Values -- Hashing -- Unordered -- Concurrent Containers -- Concurrent Unordered Associative Containers -- concurrent_hash_map -- Concurrent Support for map/multimap and set/multiset Interfaces -- Built-In Locking vs. No Visible Locking -- Iterating Through These Structures Is Asking for Trouble -- Concurrent Queues: Regular, Bounded, and Priority -- Bounding Size -- Priority Ordering -- Staying Thread-Safe: Try to Forget About Top, Size, Empty, Front, Back -- Iterators -- Why to Use This Concurrent Queue: The A-B-A Problem -- When to NOT Use Queues: Think Algorithms! -- Concurrent Vector -- When to Use tbb::concurrent_vector Instead of std::vector -- Elements Never Move -- Concurrent Growth of concurrent_vectors -- Summary -- Chapter 7: Scalable Memory Allocation -- Modern C++ Memory Allocation -- Scalable Memory Allocation: What -- Scalable Memory Allocation: Why -- Avoiding False Sharing with Padding -- Scalable Memory Allocation Alternatives: Which -- Compilation Considerations -- Most Popular Usage (C/C++ Proxy Library): How -- Linux: malloc/new Proxy Library Usage -- macOS: malloc/new Proxy Library Usage -- Windows: malloc/new Proxy Library Usage -- Testing our Proxy Library Usage -- C Functions: Scalable Memory Allocators for C. , C++ Classes: Scalable Memory Allocators for C++ -- Allocators with std::allocator< -- T> -- Signature -- scalable_allocator -- tbb_allocator -- zero_allocator -- cached_aligned_allocator -- Memory Pool Support: memory_pool_allocator -- Array Allocation Support: aligned_space -- Replacing new and delete Selectively -- Performance Tuning: Some Control Knobs -- What Are Huge Pages? -- TBB Support for Huge Pages -- scalable_allocation_mode(int mode, intptr_t value) -- TBBMALLOC_USE_HUGE_PAGES -- TBBMALLOC_SET_SOFT_HEAP_LIMIT -- int scalable_allocation_command(int cmd, void ∗param) -- TBBMALLOC_CLEAN_ALL_BUFFERS -- TBBMALLOC_CLEAN_THREAD_BUFFERS -- Summary -- Chapter 8: Mapping Parallel Patterns to TBB -- Parallel Patterns vs. Parallel Algorithms -- Patterns Categorize Algorithms, Designs, etc. -- Patterns That Work -- Data Parallelism Wins -- Nesting Pattern -- Map Pattern -- Workpile Pattern -- Reduction Patterns (Reduce and Scan) -- Fork-Join Pattern -- Divide-and-Conquer Pattern -- Branch-and-Bound Pattern -- Pipeline Pattern -- Event-Based Coordination Pattern (Reactive Streams) -- Summary -- For More Information -- Part 2 -- Chapter 9: The Pillars of Composability -- What Is Composability? -- Nested Composition -- Concurrent Composition -- Serial Composition -- The Features That Make TBB a Composable Library -- The TBB Thread Pool (the Market) and Task Arenas -- The TBB Task Dispatcher: Work Stealing and More -- Putting It All Together -- Looking Forward -- Controlling the Number of Threads -- Work Isolation -- Task-to-Thread and Thread-to-Core Affinity -- Task Priorities -- Summary -- For More Information -- Chapter 10: Using Tasks to Create Your Own Algorithms -- A Running Example: The Sequence -- The High-Level Approach: parallel_invoke -- The Highest Among the Lower: task_group -- The Low-Level Task Interface: Part One - Task Blocking. , The Low-Level Task Interface: Part Two - Task Continuation -- Bypassing the Scheduler -- The Low-Level Task Interface: Part Three - Task Recycling -- Task Interface Checklist -- One More Thing: FIFO (aka Fire-and-Forget) Tasks -- Putting These Low-Level Features to Work -- Summary -- For More Information -- Chapter 11: Controlling the Number of Threads Used for Execution -- A Brief Recap of the TBB Scheduler Architecture -- Interfaces for Controlling the Number of Threads -- Controlling Thread Count with task_scheduler_init -- Controlling Thread Count with task_arena -- Controlling Thread Count with global_control -- Summary of Concepts and Classes -- The Best Approaches for Setting the Number of Threads -- Using a Single task_scheduler_init Object for a Simple Application -- Using More Than One task_scheduler_init Object in a Simple Application -- Using Multiple Arenas with Different Numbers of Slots to Influence Where TBB Places Its Worker Threads -- Using global_control to Control How Many Threads Are Available to Fill Arena Slots -- Using global_control to Temporarily Restrict the Number of Available Threads -- When NOT to Control the Number of Threads -- Figuring Out What's Gone Wrong -- Summary -- Chapter 12: Using Work Isolation for Correctness and Performance -- Work Isolation for Correctness -- Creating an Isolated Region with  this_task_arena::isolate -- Oh No! Work Isolation Can Cause Its Own Correctness Issues! -- Even When It Is Safe, Work Isolation Is Not Free -- Using Task Arenas for Isolation: A Double-Edged Sword -- Don't Be Tempted to Use task_arenas to Create Work Isolation for Correctness -- Summary -- For More Information -- Chapter 13: Creating Thread-to-Core and Task-to-Thread Affinity -- Creating Thread-to-Core Affinity -- Creating Task-to-Thread Affinity -- When and How Should We Use the TBB Affinity Features? -- Summary. , For More Information.
    Additional Edition: Print version: Voss, Michael Pro TBB Berkeley, CA : Apress L. P.,c2019 ISBN 9781484243978
    Language: English
    Subjects: Computer Science
    RVK:
    Keywords: Electronic books. ; Electronic books
    URL: Volltext  (kostenfrei)
    URL: Volltext  (kostenfrei)
    URL: Full-text  ((OIS Credentials Required))
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 2
    UID:
    almahu_9949301325402882
    Format: 1 online resource (205 pages)
    ISBN: 9783319452647
    Note: Intro -- The Restless Compendium -- Foreword -- Acknowledgements -- Contents -- List of Figures -- List of Tables -- 1 Introduction -- Part I Minds -- 2 Altered States: Resting State and Default Mode as Psychopathology -- Notes -- 3 The Quest for quies mentis -- Notes -- Further Reading -- 4 Writing and Daydreaming -- Multiplicity of the Self and the Fragility of Self-Representation -- Creativity, Self and Sublimation: 'The Mark on the Wall' -- Fragmentation -- Notes -- Further Reading -- 5 Daydream Archive -- Rummaging Through the Archive -- Notes -- Further Reading -- 6 Descriptive Experience Sampling as a Psychological Method -- Notes -- Further Reading -- 7 The Poetics of Descriptive Experience Sampling -- Further Reading -- 8 The Rest Test: Preliminary Findings from a Large-Scale International Survey on Rest -- What Is Rest and How Do People like to Do It? -- How Does the Modern World of Work Aff ect Our Ability to Rest? -- Notes -- Further Reading -- Part II Bodies -- 9 From Therapeutic Relaxation to Mindfulness in the Twentieth Century -- Notes -- 10 So Even the Tree has its Yolk -- Afterword -- Notes -- Further Reading -- 11 Cartographies of Rest: The Spectral Envelope of Vigilance -- Vigilance -- 'Near Sensing' and a Perspectival View of Urban Space -- Notes -- 12 Getting the Measure of the Restless City -- Notes -- Further Reading -- 13 Drawing Attention: Ways of Knowing Derived in the Movement of the Pencil -- Notes -- Further Reading -- 14 Songs of Rest: An Intervention in the Complex Genre of the Lullaby -- Note -- Further Reading -- 15 Could Insomnia Be Relieved with a YouTube Video? The Relaxation and Calm of ASMR -- The Unexplained Feeling: What Is ASMR ? -- The Rise of ASMR -- The Science of ASMR -- Tasting Words: Is ASMR a Synaesthetic Experience? -- People Find it Hard to Believe Things That They Do Not Experience -- Notes. , Further Resources -- 16 Relief from a Certain Kind of Personhood in ASMR Role-Play Videos -- Notes -- Part III Practices -- 17 R-E-S-T and Composition: Silence, Breath and aah . . . [Gap] Musical Rest -- Intro -- Compositional Process (and Themes of Rest) -- Breath: A Solo Alto Flute Piece -- None sitting resting: A Piece for String Quartet -- Outro -- Notes -- 18 Metrics of Unrest: Building Social and Technical Networks for Heathrow Noise -- Notes -- Further Reading -- 19 This Is an Experiment: Capturing the Everyday Dynamics of Collaboration in The Diary Room -- Notes -- 20 Greasing the Wheels: Invisible Labour in Interdisciplinary Environments -- The Participating Non-Academic -- Institutional Rhythms and Arrhythmias -- Performing Research and the Visibility of Labour -- What Now? -- Further reading -- 21 Rest Denied, Rest Reclaimed -- Notes -- Further Resources -- 22 Laziness: A Literary-Historical Perspective -- Notes -- Further Reading -- 23 Day of Restlessness -- Further Reading -- 24 Erratum to: "The Restless Compendium" -- Index.
    Additional Edition: Print version: Callard, Felicity The Restless Compendium Cham : Springer International Publishing AG,c2016 ISBN 9783319452630
    Language: English
    Keywords: Electronic books. ; Essay ; Fulltext. ; Internet Resources. ; Aufsatzsammlung ; Electronic books.
    URL: Volltext  (kostenfrei)
    URL: FULL  ((Currently Only Available on Campus))
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 3
    UID:
    b3kat_BV047569138
    Format: 1 Online-Ressource (xi, 186 Seiten) , Illustrationen
    ISBN: 9781003180180
    Series Statement: Interdisciplinary disability studies
    Content: Understanding Disability Throughout History explores seldom-heard voices from the past by studying the hidden lives of disabled people before the concept of disability existed culturally, socially and administratively. The book focuses on Iceland from the Age of Settlement, traditionally considered to have taken place from 874 to 930, until the 1936 Law on Social Security (Lög um almannatryggingar), which is the first time that disabled people were referenced in Iceland as a legal or administrative category. Data sources analysed in the project represent a broad range of materials that are not often featured in the study of disability, such as bone collections, medieval literature and census data from the early modern era, archaeological remains, historical archives, folktales and legends, personal narratives and museum displays. The ten chapters include contributions from multidisciplinary team of experts working in the fields of Disability Studies, History, Archaeology, Medieval Icelandic Literature, Folklore and Ethnology, Anthropology, Museum Studies, and Archival Sciences, along with a collection of post-doctoral and graduate students. The volume will be of interest to all scholars and students of disability studies, history, medieval studies, ethnology, folklore, and archaeology.
    Additional Edition: Erscheint auch als Druck-Ausgabe, Hardcover ISBN 978-1-032-01827-0
    Additional Edition: Erscheint auch als Druck-Ausgabe, Paperback ISBN 978-1-032-01782-2
    Language: English
    URL: Volltext  (kostenfrei)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 4
    Online Resource
    Online Resource
    London ; New Delhi ; New York ; Sydney : Bloomsbury
    UID:
    b3kat_BV047118970
    Format: 1 Online-Ressource (xvi, 309 Seiten) , Illustrationen
    ISBN: 9780567659347 , 9780567655516
    Series Statement: Scriptural traces: critical perspectives on the reception and influence of the bible 2
    Content: Harnessing Chaos: The Bible in English Political Discourse Since 1968 (2014) looked at the shifts in political understandings of the Bible in the aftermath of the social and economic changes of the 1960s. The book examined the decline of the Radical bible (i.e. the Bible roughly equated with socialism) in parliamentary politics and the victory of (a modified form of) Thatcher's re-reading of the Liberal Bible tradition, which equated the Bible with rule of law, democracy and tolerance. This showed how Thatcher's Bible was developed by politicians and the significance of Tony Blair's socially liberal qualifications, as well as the Radical Bible's survival outside Parliament and against the backdrop of emerging Thatcherism. The new, revised edition of Harnessing Chaos includes an additional chapter/postscript on some of the remarkable and unexpected uses of the Bible that happened since 2014. These include David Cameron giving a number of key speeches which intensified Thatcher's Bible, particularly in his justification of his most controversial policy decisions surrounding foodbanks, austerity and ISIS, Ed Miliband engaging with Russell Brand's Radical Bible, and the unpredicted emergence of Jeremy Corbyn, which has seen him and his close allies explicitly use the Radical Bible, in direct disagreement with Thatcher, in his first major speeches. These developments have been, in varying degrees, unpredictable but also vital to understanding the fate of the Bible in contemporary English politics
    Additional Edition: Erscheint auch als Online-Ausgabe
    Language: English
    Keywords: Bibel ; Rezeption ; England ; Politische Sprache ; Geschichte 1968-2014
    URL: Volltext  (kostenfrei)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 5
    Online Resource
    Online Resource
    Boca Raton ; London ; New York : CRC Press, Taylor & Francis Group
    UID:
    b3kat_BV047956254
    Format: 1 Online-Ressource
    Edition: First edition
    ISBN: 9781351007962
    Additional Edition: Erscheint auch als Druck-Ausgabe, Hardcover ISBN 978-1-138-49987-4
    Language: English
    Subjects: Physics
    RVK:
    Keywords: Teilchenbeschleunigung ; Teilchenbeschleuniger ; Lehrbuch
    URL: Volltext  (kostenfrei)
    URL: Volltext  (kostenfrei)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 6
    UID:
    gbv_1034146653
    Format: 1 Online-Ressource (viii, 250 Seiten) , Illustrationen
    ISBN: 9781474271332 , 9781474271318 , 9781474271325
    Content: In a unique approach to historical representations, the central question of this book is 'what is history?' By describing 'history' through its supplementary function to the field of history, rather than the ground of a study, this collection considers new insights into historical thinking and historiography across the humanities. It fosters engagement from around the disciplines in historical thinking and, from that, invites historians and philosophers of history to see clearly the impact of their work outside of their own specific fields, and encourages deep reflection on the role of historical production in society.
    Content: As such, Theories of History opens up for the first time a truly cross-disciplinary dialogue on history and is a unique intervention in the study of historical representation. Essays in this volume discuss music history, linguistics, theater studies, paintings, film, archaeology and more. This book is essential reading for those interested in the practice and theories of history, philosophy, and the humanities more broadly. Readers of this volume are not only witness to, but also part of the creation of, radical new discourses in and ways of thinking about, doing and experiencing history.
    Note: Includes bibliographical references and index , Barrierefreier Inhalt: Compliant with Level AA of the Web Content Accessibility Guidelines. Content is displayed as HTML full text which can easily be resized or read with assistive technology, with mark-up that allows screen readers and keyboard-only users to navigate easily
    Additional Edition: ISBN 9781474271301
    Additional Edition: Erscheint auch als Druck-Ausgabe Theories of history London : Bloomsbury Academic, 2018 ISBN 9781474271301
    Language: English
    Keywords: Geschichtstheorie ; Geschichtsphilosophie ; Geschichtsschreibung ; Aufsatzsammlung
    URL: Volltext  (kostenfrei)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 7
    UID:
    b3kat_BV044364474
    Format: 1 Online-Ressource (320 Seiten) , Illustrationen, Diagramme
    ISBN: 9783830984979
    Note: Literaturangaben , Beiträge teilweise englisch, teilweise deutsch, teilweise französisch
    Additional Edition: Erscheint auch als Druckausgabe ISBN 978-3-8309-3497-4
    Language: French
    Subjects: Comparative Studies. Non-European Languages/Literatures , Sociology
    RVK:
    RVK:
    RVK:
    Keywords: Sprache ; Identität ; Nationenbildung ; Aufsatzsammlung ; Aufsatzsammlung ; Aufsatzsammlung
    URL: Volltext  (kostenfrei)
    Author information: Kvam, Sigmund 1951-
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 8
    Online Resource
    Online Resource
    London :Bloomsbury Academic,
    UID:
    almahu_BV047258023
    Format: 1 Online-Ressource(x, 218 Seiten).
    ISBN: 978-1-4742-4769-6 , 978-1-4742-4767-2 , 978-1-4742-4768-9
    Note: Includes bibliographical references and index
    Additional Edition: Erscheint auch als Druck-Ausgabe ISBN 978-1-4742-4770-2
    Language: English
    Subjects: Philosophy
    RVK:
    Keywords: Nihilismus ; Sinnlosigkeit
    URL: Volltext  (kostenfrei)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 9
    UID:
    gbv_644969296
    Format: 40 S.
    Edition: Online-Ausg. Berlin Staatsbibliothek zu Berlin - Preußischer Kulturbesitz 2010 Online-Ressource (Text) SSG 6,25 Digital : Digitalisierung des Sondersammelgebiets Ost- und Südostasien der Staatsbibliothek zu Berlin - westlicher Bestand
    Note: Vorlageform des Erscheinungsvermerks: London : Published by L. and G. Seeley, 169, Fleet Street; and sold by Smith, Elder, and Co., Cornhill , SBB-PK Berlin
    Additional Edition: Erscheint auch als Druck-Ausgabe Brooke, James, 1803 - 1868 A letter from Borneo, with notices of the country and its inhabitants London : Seeley, 1842
    Language: English
    URL: Volltext  (kostenfrei)
    URL: Volltext  (Deutschlandweit zugänglich)
    Author information: Brooke, James 1803-1868
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 10
    Online Resource
    Online Resource
    [London] : Bloomsbury Academic | London : Bloomsbury Publishing
    UID:
    gbv_1034141384
    Format: 1 Online-Ressource (ix, 257 p)
    Edition: 2014
    ISBN: 9781474295734 , 9781472585639 , 9781472585646
    Uniform Title: Refugees in twentieth-century Europe
    Content: "Refugees in Europe, 1919-1959 offers a new history of Europe's mid-20th century as seen through its recurrent refugee crises. By bringing together in one volume recent research on a range of different contexts of groups of refugees and refugee policy, it sheds light on the common assumptions that underpinned the history of refugees throughout the period under review. The essays foreground the period between the end of the First World War, which inaugurated a series of new international structures to deal with displaced populations, and the late 1950s, when Europe's home-grown refugee problems had supposedly been 'solved' and attention shifted from the identification of an exclusively European refugee problem to a global one. Borrowing from E. H. Carr's The Twenty Years' Crisis, first published in 1939, the editors of the volume test the idea that the two post-war eras could be represented as a single crisis of a European-dominated international order of nation states in the face of successive refugee crises which were both the direct consequence of that system and a challenge to it. Each of the chapters reflects on the utility and limitations of this notion of a 'forty years' crisis' for understanding the development of specific national and international responses to refugees in the mid-20th century. Contributors to the volume also provide alternative readings of the history of an international refugee regime, in which the non-European and colonial world are assigned a central role in the narrative."--Bloomsbury Publishing
    Note: Includes bibliographical references and index , Barrierefreier Inhalt: Compliant with Level AA of the Web Content Accessibility Guidelines. Content is displayed as HTML full text which can easily be resized or read with assistive technology, with mark-up that allows screen readers and keyboard-only users to navigate easily
    Additional Edition: ISBN 9781472585622
    Additional Edition: ISBN 9781472585615
    Additional Edition: Erscheint auch als Druck-Ausgabe Refugees in Europe, 1919-1959 London : Bloomsbury Academic, an imprint of Bloomsbury Publishing Plc, 2017 ISBN 9781472585615
    Additional Edition: ISBN 1472585623
    Additional Edition: ISBN 9781472585622
    Language: English
    Subjects: History
    RVK:
    RVK:
    Keywords: Europa ; Flucht ; Flüchtling ; Geschichte 1919-1959 ; Aufsatzsammlung
    URL: Volltext  (kostenfrei)
    URL: Volltext  (kostenfrei)
    Author information: Frank, Matthew James 1973-
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
Close ⊗
This website uses cookies and the analysis tool Matomo. Further information can be found on the KOBV privacy pages