A Comparative Study of Adaptive Crossover Operators for Genetic Algorithms to Resolve the Traveling Salesman Problem

Total Page:16

File Type:pdf, Size:1020Kb

A Comparative Study of Adaptive Crossover Operators for Genetic Algorithms to Resolve the Traveling Salesman Problem International Journal of Computer Applications (0975 – 8887) Volume 31– No.11, October 2011 A Comparative Study of Adaptive Crossover Operators for Genetic Algorithms to Resolve the Traveling Salesman Problem ABDOUN Otman ABOUCHABAKA Jaafar LaRIT, Department of Computer Science LaRIT, Department of Computer Science IBN Tofail University, Kenitra, Morocco IBN Tofail University, Kenitra, Morocco ABSTRACT the modeler not only choose the representation methodology, Genetic algorithm includes some parameters that should be but also the cost function that judges the model’s soundness. adjusting so that the algorithm can provide positive results. The genetic algorithm is a one of the family of evolutionary Crossover operators play very important role by constructing algorithms. The population of a genetic algorithm (GA) evolves competitive Genetic Algorithms (GAs). In this paper, the basic by using genetic operators inspired by the evolutionary in conceptual features and specific characteristics of various biology, "The survival is the individual most suitable to the crossover operators in the context of the Traveling Salesman environment". Darwin discovered that species evolution based Problem (TSP) are discussed. The results of experimental on two components: the selection and reproduction. The comparison of more than six different crossover operators for selection provides a reproduction of the strongest and more the TSP are presented. The experiment results show that OX robust individuals, while the reproduction is a phase in which operator enables to achieve a better solutions than other the evolution run. operators tested. Genetic algorithms are powerful methods of optimization used successfully in different problems. Their performance is Keywords depending on the encoding scheme and the choice of genetic Travelers Salesman Problem, Genetic Algorithm, NP-Hard operators especially, the selection, crossover and mutation Problem, Crossover Operator, probability of crossover, Genetic operators. A variety of these latest operators have been Algorithm, suggested in the previous researches. In particular, several crossover operators have been developed and adapted to the 1. INTRODUCTION permutation presentations that can be used in a large variety of This section introduces the current scientific understanding of combinatorial optimization problems. In this area, a typical the natural selection process with the purpose of gaining an example of the most studied problems is the Traveling Salesman insight into the construction, application, and terminology of Problem (TSP). genetic algorithms. Natural selection –evolution- is discussed in many texts and treatises, and one of its first proponents, Charles The traveling salesman problem (TSP) is a classical problem of Darwin.His theory of evolution was based on four primary combinatorial optimization of Operations Research’s area. The premises [7]. First, like begets like; equivalently, an offspring purpose is to find a minimum total cost Hamiltonian cycle [22]. has many of the characteristics of its parents. This premise There are several practical uses for this problem, such as vehicle implies that the population is stable. Second, there are variations routing (with the additional constraints of vehicle’s route, such in characteristics between individuals that can be passed from as capacity’s vehicles) [23] and drilling problems [24]. one generation to the next. The third premise is that only a small percentage of the offspring produced survive to adulthood. The TSP has received considerable attention over the last two Finally, which of the offspring survive depends on their decades and various approaches are proposed to solve the inherited characteristics. These premises combine to produce the problem, such as branch-and-bound [28], cutting planes [35], 2- theory of natural selection. In modern evolutionary theory an opt [33], simulated annealing [31], neural network [1,37], and understanding of genetics adds impetus to the explanation of the tabu search [9, 29]. Some of these methods are exact algorithms, stages of natural selection. while the others are near-optimal or approximate algorithms. Another set of biologically-inspired methods are Genetic The exact algorithms include the integer linear programming Algorithms (GAs). They derive their inspiration from combining approaches with additional linear constraints to eliminate the concept of genetic recombination with the theory of infeasible subtours [25, 27, 30, 34, 36,36]. On the other hand, evolution and survival of the fittest members of a population [5]. network models yield appropriate methods that are flexible Starting from a random set of candidate parameters, the learning enough to include the precedence constraints [28,32]. More process devises better and better approximations to the optimal recently, genetic algorithm (GA) approaches are successfully parameters. The GA is primarily a search and optimization implemented to the TSP [26]. Potvin [35] presents survey of GA technique. One can, however, pose nearly any practical problem approaches for the general TSP. as one of optimization, including many environmental modeling These researches have provided the birth of several genetic problems. To configure a problem for GA solution requires that mechanisms in particular, the selection, crossover and the 49 International Journal of Computer Applications (0975 – 8887) Volume 31– No.11, October 2011 mutation operators. In order to resolve the TSP problem, we The mathematical formulation of TSP problem expresses by: propose in this paper to study empirically the impact affiliation of the different crossover operators.Finally we analyze the 푚푖푛{푓 푇 , 푇 = 푇 1 , 푇 2 , … … , 푇 푛 } (4) experimental results. 2. TRAVELING SALESMAN PROBLEM Which T[i] is a permutation on the set {1, 2, …,V}. The Traveling Salesman Problem (TSP) is one of the most intensively studied problems in computational mathematics.In The travelling salesman problem (TSP) is an NP-hard problem the TSP problem, which is closely related to the Hamiltonian in combinatorial optimization studied in operations research and cycle problem, a salesman must visit n cities. Modeling the theoretical computer science [5]. problem as a complete graph with n vertices, we can say that the Theorem: The subset-sum problem is NP-complete [3]. salesman wishes to make a tour, or Hamiltonian cycle, visiting each city exactly once and finishing at the city he starts from [1]. Proof :We first show that TSP belongs to NP. Given an instance Given the cost of travel between all cities, how should he plan of the problem, we use as a certificate the sequence of n vertices his itinerary for minimum total cost of the entire tour? in the tour. The verification algorithm checks that this sequence contains each vertex exactly once, sums up the edge costs, and As a concrete example, consider a delivery company with a checks whether the sum is at most k. This process can certainly central depot. Each day, it loads up each delivery truck at the be done in polynomial time. depot and sends it around to deliver goods to several addresses. At the end of the day, each truck must end up back at the To prove that TSP is NP-hard, we show that HAM-CYCLE ≤ P depotso that it is ready to be loaded for the next day. To reduce TSP. Let G =(V, E)be an instance of HAM-CYCLE. We costs, the company wants to select an order of delivery stops that construct an instance of TSP asfollows. We form the complete yields the lowest overall distance traveled by each truck. This graph G’ = (V, E’), , whereE’={(i,j) : i, j V andi ≠j }, and we problem is the well-known “Traveling Salesman Problem,” andit define the cost function c by is NP-complete [1]. It has no known efficient algorithm. Under 0 푖푓 푖, 푗 퐸 certain assumptions, however, we know of efficient algorithms 푐 푖, 푗 = (5) that give an overall distance which is not too far above the 1 푖푓 푖, 푗 퐸 smallest possible. (Note that because Gis undirected, it has no self-loops, and so The search space for the TSP is a set of permutations of n cities. c(v, v)=1 for all vertices vV.) The instance of TSP is then (G’, Any single permutation of n cities yields a solution (which is a c, 0), which we can easily create in polynomial time. complete tour of n cities). The optimal solution is a permutation We now show that graph Ghas a Hamiltonian cycle if and only which yields the minimum cost of the tour. The size of the if graphG’has atour of cost at most0. Suppose that graphGhas a search space is n!. Hamiltonian cycleh. Each edgeinhbelongs toE and thus has cost0 in G’. Thus,his a tour inG’with cost0. In other words, a TSP of size V is defined by a set of points v= Conversely, suppose that graphG’has a tourh’of cost at most0. {v1, v2, …,vn} which vi a city marked by coordinates vi.x and Since the costsof the edges inE’are0 and1, the cost of tourh’is vi.y where we define a metric distance function f as in (1). A exactly0and each edge on thetour must have cost0. solution of TSP problem is a form of scheduling Therefore,h’contains only edges inE. We conclude thath’is a T=(T[1],T[2],……,T[n], T[1]) which T[i] is a permutation on Hamiltonian cycle in graphG. the set {1, 2, …,V}. The evaluation function calculates the adaptation of each solution of the problem by the following A quick calculation shows that the complexity is O(n!) which n formula: is the number of cities (Table. 1). 푛−1 Table 1. Number of possibilities and calculation time by the 2 2 푓 = 푣푖. 푥 − 푣푖+1. 푥 + 푣푖. 푦 − 푣푖+1. 푦 number of cities 푖=1 Number of Number of Computation time cities possibilities + (푣 . 푥 − 푣 . 푥)2 + (푣 . 푦 − 푣 . 푦)2(1) 푛 1 푛 1 5 12 12 μs Where n is the number of cities.
Recommended publications
  • Stephen Colbert's Super PAC and the Growing Role of Comedy in Our
    STEPHEN COLBERT’S SUPER PAC AND THE GROWING ROLE OF COMEDY IN OUR POLITICAL DISCOURSE BY MELISSA CHANG, SCHOOL OF PUBLIC AFFAIRS ADVISER: CHRIS EDELSON, PROFESSOR IN THE SCHOOL OF PUBLIC AFFAIRS UNIVERSITY HONORS IN CLEG SPRING 2012 Dedicated to Professor Chris Edelson for his generous support and encouragement, and to Professor Lauren Feldman who inspired my capstone with her course on “Entertainment, Comedy, and Politics”. Thank you so, so much! 2 | C h a n g STEPHEN COLBERT’S SUPER PAC AND THE GROWING ROLE OF COMEDY IN OUR POLITICAL DISCOURSE Abstract: Comedy plays an increasingly legitimate role in the American political discourse as figures such as Stephen Colbert effectively use humor and satire to scrutinize politics and current events, and encourage the public to think more critically about how our government and leaders rule. In his response to the Supreme Court case of Citizens United v. Federal Election Commission (2010) and the rise of Super PACs, Stephen Colbert has taken the lead in critiquing changes in campaign finance. This study analyzes segments from The Colbert Report and the Colbert Super PAC, identifying his message and tactics. This paper aims to demonstrate how Colbert pushes political satire to new heights by engaging in real life campaigns, thereby offering a legitimate voice in today’s political discourse. INTRODUCTION While political satire is not new, few have mastered this art like Stephen Colbert, whose originality and influence have catapulted him to the status of a pop culture icon. Never breaking character from his zany, blustering persona, Colbert has transformed the way Americans view politics by using comedy to draw attention to important issues of the day, critiquing and unpacking these issues in a digestible way for a wide audience.
    [Show full text]
  • Crossmedia Adaptation and the Development of Continuity in the Dc Animated Universe
    “INFINITE EARTHS”: CROSSMEDIA ADAPTATION AND THE DEVELOPMENT OF CONTINUITY IN THE DC ANIMATED UNIVERSE Alex Nader A Thesis Submitted to the Graduate College of Bowling Green State University in partial fulfillment of the requirements for the degree of MASTER OF ARTS May 2015 Committee: Jeff Brown, Advisor Becca Cragin © 2015 Alexander Nader All Rights Reserved iii ABSTRACT Jeff Brown, Advisor This thesis examines the process of adapting comic book properties into other visual media. I focus on the DC Animated Universe, the popular adaptation of DC Comics characters and concepts into all-ages programming. This adapted universe started with Batman: The Animated Series and comprised several shows on multiple networks, all of which fit into a shared universe based on their comic book counterparts. The adaptation of these properties is heavily reliant to intertextuality across DC Comics media. The shared universe developed within the television medium acted as an early example of comic book media adapting the idea of shared universes, a process that has been replicated with extreme financial success by DC and Marvel (in various stages of fruition). I address the process of adapting DC Comics properties in television, dividing it into “strict” or “loose” adaptations, as well as derivative adaptations that add new material to the comic book canon. This process was initially slow, exploding after the first series (Batman: The Animated Series) changed networks and Saturday morning cartoons flourished, allowing for more opportunities for producers to create content. References, crossover episodes, and the later series Justice League Unlimited allowed producers to utilize this shared universe to develop otherwise impossible adaptations that often became lasting additions to DC Comics publishing.
    [Show full text]
  • Symbolic Computation Using Grammatical Evolution
    Symbolic Computation using Grammatical Evolution Alan Christianson Department of Mathematics and Computer Science South Dakota School of Mines and Technology Rapid City, SD 57701 [email protected] Jeff McGough Department of Mathematics and Computer Science South Dakota School of Mines and Technology Rapid City, SD 57701 [email protected] March 20, 2009 Abstract Evolutionary Algorithms have demonstrated results in a vast array of optimization prob- lems and are regularly employed in engineering design. However, many mathematical problems have shown traditional methods to be the more effective approach. In the case of symbolic computation, it may be difficult or not feasible to extend numerical approachs and thus leave the door open to other methods. In this paper, we study the application of a grammar-based approach in Evolutionary Com- puting known as Grammatical Evolution (GE) to a selected problem in control theory. Grammatical evolution is a variation of genetic programming. GE does not operate di- rectly on the expression but following a lead from nature indirectly through genome strings. These evolved strings are used to select production rules in a BNF grammar to generate algebraic expressions which are potential solutions to the problem at hand. Traditional approaches have been plagued by unrestrained expression growth, stagnation and lack of convergence. These are addressed by the more biologically realistic BNF representation and variations in the genetic operators. 1 Introduction Control Theory is a well established field which concerns itself with the modeling and reg- ulation of dynamical processes. The discipline brings robust mathematical tools to address many questions in process control.
    [Show full text]
  • Genetic Algorithm: Reviews, Implementations, and Applications
    Paper— Genetic Algorithm: Reviews, Implementation and Applications Genetic Algorithm: Reviews, Implementations, and Applications Tanweer Alam() Faculty of Computer and Information Systems, Islamic University of Madinah, Saudi Arabia [email protected] Shamimul Qamar Computer Engineering Department, King Khalid University, Abha, Saudi Arabia Amit Dixit Department of ECE, Quantum School of Technology, Roorkee, India Mohamed Benaida Faculty of Computer and Information Systems, Islamic University of Madinah, Saudi Arabia How to cite this article? Tanweer Alam. Shamimul Qamar. Amit Dixit. Mohamed Benaida. " Genetic Al- gorithm: Reviews, Implementations, and Applications.", International Journal of Engineering Pedagogy (iJEP). 2020. Abstract—Nowadays genetic algorithm (GA) is greatly used in engineering ped- agogy as an adaptive technique to learn and solve complex problems and issues. It is a meta-heuristic approach that is used to solve hybrid computation chal- lenges. GA utilizes selection, crossover, and mutation operators to effectively manage the searching system strategy. This algorithm is derived from natural se- lection and genetics concepts. GA is an intelligent use of random search sup- ported with historical data to contribute the search in an area of the improved outcome within a coverage framework. Such algorithms are widely used for maintaining high-quality reactions to optimize issues and problems investigation. These techniques are recognized to be somewhat of a statistical investigation pro- cess to search for a suitable solution or prevent an accurate strategy for challenges in optimization or searches. These techniques have been produced from natu- ral selection or genetics principles. For random testing, historical information is provided with intelligent enslavement to continue moving the search out from the area of improved features for processing of the outcomes.
    [Show full text]
  • Accelerating Real-Valued Genetic Algorithms Using Mutation-With-Momentum
    CORE Metadata, citation and similar papers at core.ac.uk Provided by University of Tasmania Open Access Repository Accelerating Real-Valued Genetic Algorithms Using Mutation-With-Momentum Luke Temby, Peter Vamplew and Adam Berry Technical Report 2005-02 School of Computing, University of Tasmania, Private Bag 100, Hobart This report is an extended version of a paper of the same title presented at AI'05: The 18th Australian Joint Conference on Artificial Intelligence, Sydney, Australia, 5-9 Dec 2005. Abstract: In a canonical genetic algorithm, the reproduction operators (crossover and mutation) are random in nature. The direction of the search carried out by the GA system is driven purely by the bias to fitter individuals in the selection process. Several authors have proposed the use of directed mutation operators as a means of improving the convergence speed of GAs on problems involving real-valued alleles. This paper proposes a new approach to directed mutation based on the momentum concept commonly used to accelerate the gradient descent training of neural networks. This mutation-with- momentum operator is compared against standard Gaussian mutation across a series of benchmark problems, and is shown to regularly result in rapid improvements in performance during the early generations of the GA. A hybrid system combining the momentum-based and standard mutation operators is shown to outperform either individual approach to mutation across all of the benchmarks. 1 Introduction In a traditional genetic algorithm (GA) using a bit-string representation, the mutation operator acts primarily to preserve diversity within the population, ensuring that alleles can not be permanently lost from the population.
    [Show full text]
  • Core Collections in Genre Studies Romance Fiction
    the alert collector Neal Wyatt, Editor Building genre collections is a central concern of public li- brary collection development efforts. Even for college and Core Collections university libraries, where it is not a major focus, a solid core collection makes a welcome addition for students needing a break from their course load and supports a range of aca- in Genre Studies demic interests. Given the widespread popularity of genre books, understanding the basics of a given genre is a great skill for all types of librarians to have. Romance Fiction 101 It was, therefore, an important and groundbreaking event when the RUSA Collection Development and Evaluation Section (CODES) voted to create a new juried list highlight- ing the best in genre literature. The Reading List, as the new list will be called, honors the single best title in eight genre categories: romance, mystery, science fiction, fantasy, horror, historical fiction, women’s fiction, and the adrenaline genre group consisting of thriller, suspense, and adventure. To celebrate this new list and explore the wealth of genre literature, The Alert Collector will launch an ongoing, occa- Neal Wyatt and Georgine sional series of genre-themed articles. This column explores olson, kristin Ramsdell, Joyce the romance genre in all its many incarnations. Saricks, and Lynne Welch, Five librarians gathered together to write this column Guest Columnists and share their knowledge and love of the genre. Each was asked to write an introduction to a subgenre and to select five books that highlight the features of that subgenre. The result Correspondence concerning the is an enlightening, entertaining guide to building a core col- column should be addressed to Neal lection in the genre area that accounts for almost half of all Wyatt, Collection Management paperbacks sold each year.1 Manager, Chesterfield County Public Georgine Olson, who wrote the historical romance sec- Library, 9501 Lori Rd., Chesterfield, VA tion, has been reading historical romance even longer than 23832; [email protected].
    [Show full text]
  • YA Crossovers: Adult Books for Teen Readers, Teen Books for Adults
    YA Crossovers: Adult Books for Teen Readers, Teen Books for Adults Rebecca Vnuk, Editor, Collection Management and Library Outreach, Booklist www.booklistonline.com/live-events Basic RA Passive RA Challenges of YA-RA Finding Book Recommendations: Using Booklist and Novelist for YA-RA Adult Crossover Titles for Young Adults Young Adult Crossover Titles for Adults Resources Poll: How many of you have had any “formal” training working with either young adults or YA materials? Basic RA Connecting with the reader What are they looking for? Appeal Elements Pacing Mood Setting But also… Genre Authors Connecting via Doorways A book with story as its biggest doorway is one that readers describe as a page-turner, a book that they can’t put down because they desperately want to discover what happens next. A book with character as its biggest doorway is a book in which readers feel so connected with the characters that when the book is over they feel they’ve lost someone dear to them. Readers of novels in which setting is most prominent say things like “I felt like I was there.” A book in which language is the major doorway leads readers to utter sentences like “I read more slowly because I wanted to savor the language” or “I’m not even sure what the book is about, but I loved the way the author wrote.” -Nancy Pearl The “RA Interview” for Teens (courtesy of Heather Booth) Small Talk: Keep the interaction light and low-pressure Determine requirements/interest level Make your pitch Make your exit Check back in Displays: Useful to the Patrons, Equally
    [Show full text]
  • Solving a Highly Multimodal Design Optimization Problem Using the Extended Genetic Algorithm GLEAM
    Solving a highly multimodal design optimization problem using the extended genetic algorithm GLEAM W. Jakob, M. Gorges-Schleuter, I. Sieber, W. Süß, H. Eggert Institute for Applied Computer Science, Forschungszentrum Karlsruhe, P.O. 3640, D-76021 Karlsruhe, Germany, EMail: [email protected] Abstract In the area of micro system design the usage of simulation and optimization must precede the production of specimen or test batches due to the expensive and time consuming nature of the production process itself. In this paper we report on the design optimization of a heterodyne receiver which is a detection module for opti- cal communication-systems. The collimating lens-system of the receiver is opti- mized with respect to the tolerances of the fabrication and assembly process as well as to the spherical aberrations of the lenses. It is shown that this is a highly multimodal problem which cannot be solved by traditional local hill climbing algorithms. For the applicability of more sophisticated search methods like our extended Genetic Algorithm GLEAM short runtimes for the simulation or a small amount of simulation runs is essential. Thus we tested a new approach, the so called optimization foreruns, the results of which are used for the initialization of the main optimization run. The promising results were checked by testing the approach with mathematical test functions known from literature. The surprising result was that most of these functions behave considerable different from our real world problems, which limits their usefulness drastically. 1 Introduction The production of specimen for microcomponents or microsystems is both, mate- rial and time consuming because of the sophisticated manufacturing techniques.
    [Show full text]
  • The Cw Arrowverse and Myth-Making, Or the Commodification of Transmedia Franchising
    PRODUCTIONS / MARKETS / STRATEGIES THE CW ARROWVERSE AND MYTH-MAKING, OR THE COMMODIFICATION OF TRANSMEDIA FRANCHISING CHARLES JOSEPH Name Charles Joseph Arrowverse, a shared narrative space based on DC-inspired Academic centre University of Rennes 2 original series which provided the network with a fertile E-mail address [email protected] groundwork to build upon. The CW did not hesitate to capitalize on its not-so-newfound superhero brand to KEYWORDS induce a circulation of myth, relying on these larger-than- The CW; DC comics; Arrowverse; transmedia; convergence; life characters at the heart of American pop culture to superhero; myth. fortify its cultural and historical bedrock and earn its seat along the rest of the Big 4. This paper aims to decipher how The CW pioneered new technology-based tools ABSTRACT which ultimately changed the American media-industrial The CW’s influence over the American network television landscape of the early 2010s, putting these tools to the landscape has never ceased to grow since its creation test with the network’s superhero series. It will thus also in 2006. The network’s audience composition reflects address how the Arrowverse set of characters has triggered The CW’s strategies to improve its original content as cross-media and transmedia experimentations, how The well as diversifying it, moving away from its image as a CW stimulated rapport with its strong fan base, as well network for teenage girls. One of the key elements which as how the network has been able to capitalize on the has supported this shift was the development of the superhero genre’s evocative capacities.
    [Show full text]
  • Arxiv:1606.00601V1 [Cs.NE] 2 Jun 2016 Keywords: Pr Solving Tasks
    On the performance of different mutation operators of a subpopulation-based genetic algorithm for multi-robot task allocation problems Chun Liua,b,∗, Andreas Krollb aSchool of Automation, Beijing University of Posts and Telecommunications No 10, Xitucheng Road, 100876, Beijing, China bDepartment of Measurement and Control, Mechanical Engineering, University of Kassel M¨onchebergstraße 7, 34125, Kassel, Germany Abstract The performance of different mutation operators is usually evaluated in conjunc- tion with specific parameter settings of genetic algorithms and target problems. Most studies focus on the classical genetic algorithm with different parameters or on solving unconstrained combinatorial optimization problems such as the traveling salesman problems. In this paper, a subpopulation-based genetic al- gorithm that uses only mutation and selection is developed to solve multi-robot task allocation problems. The target problems are constrained combinatorial optimization problems, and are more complex if cooperative tasks are involved as these introduce additional spatial and temporal constraints. The proposed genetic algorithm can obtain better solutions than classical genetic algorithms with tournament selection and partially mapped crossover. The performance of different mutation operators in solving problems without/with cooperative arXiv:1606.00601v1 [cs.NE] 2 Jun 2016 tasks is evaluated. The results imply that inversion mutation performs better than others when solving problems without cooperative tasks, and the swap- inversion combination performs better than others when solving problems with cooperative tasks. Keywords: constrained combinatorial optimization, genetic algorithm, ∗Corresponding author. Email addresses: [email protected] (Chun Liu), [email protected] (Andreas Kroll) August 13, 2018 mutation operators, subpopulation, multi-robot task allocation, inspection problems 1.
    [Show full text]
  • Valiant Entertainment and Sony Pictures Today Announced a Deal To
    Valiant Entertainment and Sony Pictures today announced a deal to bring two of Valiant's award-winning comic book superhero franchises— BLOODSHOT and HARBINGER—to the big screen over the course of five feature films that will culminate in the shared universe crossover film, HARBINGER WARS. BLOODSHOT, arriving in theaters in 2017, will kick off the five-picture plan leading to HARBINGER WARS and will be directed by David Leitch & Chad Stahelski (John Wick) from a script by Jeff Wadlow (Kick Ass 2) and Eric Heisserer (Story of Your Life). Neal H. Moritz and Toby Jaffe fromOriginal Film (The Fast and the Furious franchise) and Dinesh Shamdasani from Valiant Entertainment will produce the film. Matthew Vaughn and Jason Kothari will serve as executive producers. HARBINGER will follow shortly thereafter from a script by Eric Heisserer (Story of Your Life). Sony and Valiant remain tight-lipped about potential directors. Neal H. Moritz and Toby Jaffe from Original Film(The Fast and the Furious franchise) and Dinesh Shamdasani from Valiant Entertainment will produce. Both BLOODSHOT and HARBINGER will be followed by sequels before the title characters confront each other head on in HARBINGER WARS—a motion picture directly inspired by Valiant’s critically acclaimed 2013 comic book crossover of the same name. Andrea Giannetti will oversee the five- picture HARBINGER WARS initiative for Sony Pictures. “Valiant is one of the most successful publishers in the history of comics, and Neal is one of the best action producers in the business today. This is a formidable partnership that will bring two incredibly commercial franchises with global appeal together on the big screen,” said Sony Entertainment Motion Picture Group President Doug Belgrad.
    [Show full text]
  • Breathing New Life Into Comic Collections
    BREATHING NEW LIFE INTO COMIC COLLECTIONS: DRAWN & QUARTERLY’S CHOICE TO REFORMAT & REPUBLISH FOR A YOUNG READERSHIP by Gillian Cott B.A. (Honours) English Language & Literature, University of Windsor, 2012 B.Ed., University of Windsor, 2013 Project submitted in partial fulfillment of the requirements for the degree of Master of Publishing Faculty of Communication, Art, and Technology © Gillian Cott, 2016 Simon Fraser University Fall 2016 • This work is licensed under the Creative Commons Attribution 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. APPROVAL Name Gillian Cott Degree Master of Publishing Title of Project Breathing New Life into Comic Collections: Drawn & Quarterly’s Choice to Reformat & Republish for a Young Readership Supervisory Committee ________________________________ Hannah McGregor Senior Supervisor Assistant Professor, Publishing Program Simon Fraser University ________________________________ John Maxwell Supervisor Associate Professor, Publishing Program Simon Fraser University ________________________________ Marcela Huerta Industry Supervisor Assistant Editor Drawn & Quarterly Montreal, Quebec Date Approved ________________________________ ii BREATHING NEW LIFE INTO COMIC COLLECTIONS ABSTRACT Graphic novels and comic reprints have recently surged in popularity due to Hollywood adaptations and bestselling titles such as Art Spiegelman’s Maus and Marjane Satrapi’s Persepolis. Despite these successes, publishers still struggle to find the right audience for many comic collections. This report focuses on Drawn & Quarterly’s decision to reprint two comic collections in smaller, kid-friendly editions. It analyzes why D+Q decided to reformat the Janssons’ Moomin comics and Mizuki’s Kitaro manga for specific readerships, with a focus on the emerging genre of crossover literature.
    [Show full text]