Materias dentro de su búsqueda.
Materias dentro de su búsqueda.
- Web site development 13
- Development 11
- Kasack 10
- Application software 9
- Web sites 6
- -Historia de la Iglesia 5
- -Papas 5
- Application program interfaces (Computer software) 5
- Archivos y bibliotecas 5
- Computer algorithms 5
- Iglesia Católica 5
- Literature & literary studies 5
- Papas 5
- Relaciones 5
- Teología 5
- Computer programming 4
- Historia 4
- History 4
- JavaScript (Computer program language) 4
- Mathematical optimization 4
- Authoring programs 3
- Design 3
- Document markup languages 3
- Education 3
- Novela alemana 3
- Política 3
- Web applications 3
- russische Orthodoxe Kirche 3
- 1945 2
- Apología de Orígenes. Rufino de Aquilea 2
-
181Publicado 2014Tabla de Contenidos: “…4.6 Randomized Topological Design4.6.1 Expander graphs; 4.6.2 Monte Carlo optimization; 4.7 Genetic Algorithms; 4.8 Resource Allocation; 4.8.1 The Knapsack problem; 4.8.2 Dynamic programming; 4.8.3 Branch-and-bound; 4.9 Summary; 5 Stochastic Processes and Queues; 5.1 Traffic and blocking; 5.1.1 Point processes; 5.1.2 The Poisson process; 5.1.3 Characterization of traffic; 5.2 Modeling with queues; 5.2.1 Characteristics of queueing processes; 5.2.2 Measuring system performance; 5.2.3 Some general results; 5.2.4 Simple Markovian queues; 5.3 Markov chain analysis…”
Libro electrónico -
182Publicado 2023Tabla de Contenidos: “…Comment First -- Write Self-Documenting Code -- Keep It Small -- Stay Focused -- Avoid Side Effects -- Validate Results -- Practice Offensive Programming -- Use Exceptions -- Write Exception Handlers First -- Don't Repeat Code -- Defer Optimization -- Summary -- What You Learned in This Chapter -- Chapter 11 Algorithms -- Algorithm Study -- Algorithmic Approaches -- Decision Trees -- Knapsack -- The Eight Queens Problem -- Exhaustive Search -- Backtracking -- Pruning Trees -- Branch and Bound -- Heuristics -- Greedy -- Divide and Conquer -- Recursion -- Dynamic Programming -- Caching -- Randomization -- Monte Carlo Algorithms -- Las Vegas Algorithms -- Atlantic City Algorithms -- State Diagrams -- Design Patterns -- Creational Patterns -- Structural Patterns -- Behavioral Patterns -- Design Pattern Summary -- Parallel Programming -- Artificial Intelligence -- Definitions -- Learning Systems -- Natural Language Processing -- Artificial Neural Network -- Deep Learning -- Expert System -- Artificial General Intelligence -- Algorithm Characteristics -- Summary -- What You Learned in This Chapter -- Chapter 12 Programming Languages -- The Myth of Picking a Language -- Language Generations -- First Generation -- Second Generation -- Third Generation (3GL) -- Fourth Generation -- Fifth Generation -- Sixth Generation -- IDEs -- Language Families -- Assembly -- Imperative -- Procedural -- Declarative -- Object-Oriented -- Functional -- Specialized -- Language Family Summary -- The Best Language -- Summary -- What You Learned in This Chapter -- Chapter 13 Testing -- Testing Goals -- Reasons Bugs Never Die -- Diminishing Returns -- Deadlines -- Consequences -- It's Too Soon -- Usefulness -- Obsolescence -- It's Not a Bug -- It Never Ends -- It's Better Than Nothing -- Fixing Bugs Is Dangerous -- Which Bugs to Fix -- Levels of Testing -- Unit Testing…”
Libro electrónico -
183Publicado 2023Tabla de Contenidos: “…Combinatorial optimization problems with the QUBO model -- Binary linear programming -- The Knapsack problem -- Graph coloring -- The Traveling Salesperson Problem -- Other problems and other formulations -- Summary -- Chapter 4: Adiabatic Quantum Computing and Quantum Annealing -- Adiabatic quantum computing -- Quantum annealing -- Using Ocean to formulate and transform optimization problems -- Constrained quadratic models in Ocean -- Solving constrained quadratic models with dimod -- Running constrained problems on quantum annealers -- Solving optimization problems on quantum annealers with Leap -- The Leap annealers -- Embeddings and annealer topologies -- Controlling annealing parameters -- The importance of coupling strengths -- Classical and hybrid samplers -- Classical solvers -- Hybrid solvers -- Summary -- Chapter 5: QAOA: Quantum Approximate Optimization Algorithm -- From adiabatic computing to QAOA -- Discretizing adiabatic quantum computing -- QAOA: The algorithm -- Circuits for QAOA -- Estimating the energy -- QUBO and HOBO -- Using QAOA with Qiskit -- Using QAOA with Hamiltonians -- Solving QUBO problems with QAOA in Qiskit -- Using QAOA with PennyLane -- Summary -- Chapter 6: GAS: Grover Adaptive Search -- Grover's algorithm -- Quantum oracles -- Grover's circuits -- Probability of finding a marked element -- Finding minima with Grover's algorithm -- Quantum oracles for combinatorial optimization -- The quantum Fourier transform -- Encoding and adding integer numbers -- Computing the whole polynomial -- Constructing the oracle -- Using GAS with Qiskit -- Summary -- Chapter 7: VQE: Variational Quantum Eigensolver -- Hamiltonians, observables, and their expectation values -- Observables -- Estimating the expectation values of observables -- Introducing VQE -- Getting excited with VQE -- Using VQE with Qiskit…”
Libro electrónico -
184Publicado 2023Tabla de Contenidos: “…Reasons for Showing Different Content to Search Engines and Visitors -- Leveraging the robots.txt File -- Using the rel="nofollow" Attribute -- Using the Robots Meta Tag -- Using the rel="canonical" Attribute -- Additional Methods for Segmenting Content Delivery -- Redirects -- Why and When to Redirect -- Good and Bad Redirects -- Methods for URL Redirecting and Rewriting -- How to Redirect a Home Page Index File Without Looping -- Using a Content Management System -- CMS Selection -- Third-Party CMS or Ecommerce Platform Add-ons -- CMS and Ecommerce Platform Training -- JavaScript Frameworks and Static Site Generators -- Types of Rendering -- JavaScript Frameworks -- Jamstack -- Problems That Still Happen with JavaScript -- Best Practices for Multilingual/Multicountry Targeting -- When to Enable a New Language or Country Version of Your Site -- When to Target a Language or Country with a Localized Website Version -- Configuring Your Site's Language or Country Versions to Rank in Different Markets -- The Impact of Natural Language Processing -- Entities -- Fair Use -- Structured Data -- Schema.org -- Schema.org Markup Overview -- How to Use Schema.org -- Summarizing Schema.org's Importance -- Google's EEAT and YMYL -- Author Authority and Your Content -- Why Did Google End Support for rel="author"? …”
Libro electrónico -
185Publicado 2022Tabla de Contenidos: “…Encoding using Huffman compression -- Remembering sequences with LZW -- Hiding Your Secrets with Cryptography -- Substituting characters -- Working with AES encryption -- Part 5 Challenging Difficult Problems -- Chapter 15 Working with Greedy Algorithms -- Deciding When It Is Better to Be Greedy -- Understanding why greedy is good -- Keeping greedy algorithms under control -- Considering NP complete problems -- Finding Out How Greedy Can Be Useful -- Arranging cached computer data -- Competing for resources -- Revisiting Huffman coding -- Chapter 16 Relying on Dynamic Programming -- Explaining Dynamic Programming -- Obtaining a historical basis -- Making problems dynamic -- Casting recursion dynamically -- Leveraging memoization -- Discovering the Best Dynamic Recipes -- Looking inside the knapsack -- Touring around cities -- Approximating string search -- Chapter 17 Using Randomized Algorithms -- Defining How Randomization Works -- Considering why randomization is needed -- Understanding how probability works -- Understanding distributions -- Simulating the use of the Monte Carlo method -- Putting Randomness into your Logic -- Calculating a median using quick select -- Doing simulations using Monte Carlo -- Ordering faster with quick sort -- Chapter 18 Performing Local Search -- Understanding Local Search -- Knowing the neighborhood -- Presenting local search tricks -- Explaining hill climbing with n-queens -- Discovering simulated annealing -- Avoiding repeats using Tabu Search -- Solving Satisfiability of Boolean Circuits -- Solving 2-SAT using randomization -- Implementing the Python code -- Realizing that the starting point is important -- Chapter 19 Employing Linear Programming -- Using Linear Functions as a Tool -- Grasping the basic math you need -- Learning to simplify when planning -- Working with geometry using simplex…”
Libro electrónico -
186
-
187Publicado 2018Tabla de Contenidos: “…Iteration -- 11.2 Tail Recursion By Thinking Iteratively -- 11.2.1 Factorial -- 11.2.2 Decimal To Base B Conversion -- 11.3 Nested Recursion -- 11.3.1 The Ackermann Function -- 11.3.2 The Mccarthy 91 Function -- 11.3.3 The Digital Root -- 11.4 Tail And Nested Recursion Through Function Generalization -- 11.4.1 Factorial -- 11.4.2 Decimal To Base B Conversion -- 11.5 Exercises -- Chapter 12 Multiple Recursion Iii: Backtracking -- 12.1 Introduction -- 12.1.1 Partial And Complete Solutions -- 12.1.2 Recursive Structure -- 12.2 Generating Combinatorial Entities -- 12.2.1 Subsets -- 12.2.2 Permutations -- 12.3 The N-queens Problem -- 12.3.1 Finding Every Solution -- 12.3.2 Finding One Solution -- 12.4 Subset Sum Problem -- 12.5 Path Through A Maze -- 12.6 The Sudoku Puzzle -- 12.7 0-1 Knapsack Problem -- 12.7.1 Standard Backtracking Algorithm…”
Libro electrónico -
188Publicado 2023Tabla de Contenidos: “…Front Cover -- Handbook of Metaheuristic Algorithms -- Copyright -- Contents -- List of figures -- List of tables -- List of algorithms -- List of listings -- About the authors -- Chun-Wei Tsai (1978-) -- Ming-Chao Chiang (1956-) -- Preface -- Part 1 Fundamentals -- 1 Introduction -- 1.1 Why metaheuristic algorithms -- 1.2 Organization of this book -- 2 Optimization problems -- 2.1 Problem definition -- 2.2 Combinatorial optimization problems -- 2.2.1 The one-max and 0-1 knapsack problems -- 2.2.2 The B2D and deceptive problems -- 2.2.3 The traveling salesman problem (TSP) -- 2.3 Continuous optimization problems -- 2.3.1 The single-objective optimization problem -- 2.3.2 The multi-objective optimization problem -- 2.4 Summary -- 3 Traditional methods -- 3.1 Exhaustive search (ES) -- 3.1.1 The basic idea of ES -- 3.1.2 Implementation of ES for the one-max problem -- 3.1.3 Discussion of ES -- 3.2 Hill climbing (HC) -- 3.2.1 The basic idea of HC -- 3.2.2 Implementation of HC for the one-max problem -- 3.2.2.1 Main function -- 3.2.2.2 Search function of HC -- 3.2.2.2.1 Declaration of parameters and functions -- 3.2.2.2.2 The main loop -- 3.2.2.2.3 Additional functions -- 3.2.2.3 Library function -- 3.2.3 Discussion of HC -- 3.3 Comparisons between ES and HC -- 3.3.1 Simulation results of ES and HC for the one-max problem -- 3.3.2 Simulation results of ES and HC for the deceptive problem -- 3.4 Summary of ES and HC -- Supplementary source code -- 4 Metaheuristic algorithms -- 4.1 What is a metaheuristic algorithm? …”
Libro electrónico -
189
-
190
-
191
-
192
-
193
-
194por Williams, H. P.Tabla de Contenidos: “…6.3.5 Building stable models -- 6.4 Further investigations using a model -- 6.5 Presentation of the solutions -- Chapter 7 Non-linear models -- 7.1 Typical applications -- 7.2 Local and global optima -- 7.3 Separable programming -- 7.4 Converting a problem to a separable model -- Chapter 8 Integer programming -- 8.1 Introduction -- 8.2 The applicability of integer programming -- 8.2.1 Problems with discrete inputs and outputs -- 8.2.2 Problems with logical conditions -- 8.2.3 Combinatorial problems -- 8.2.4 Non-linear problems -- 8.2.5 Network problems -- 8.3 Solving integer programming models -- 8.3.1 Cutting planes methods -- 8.3.2 Enumerative methods -- 8.3.3 Pseudo-Boolean methods -- 8.3.4 Branch and bound methods -- Chapter 9 Building integer programming models I -- 9.1 The uses of discrete variables -- 9.1.1 Indivisible (discrete) quantities -- 9.1.2 Decision variables -- 9.1.3 Indicator variables -- 9.2 Logical conditions and 0-1 variables -- 9.3 Special ordered sets of variables -- 9.4 Extra conditions applied to linear programming models -- 9.4.1 Disjunctive constraints -- 9.4.2 Non-convex regions -- 9.4.3 Limiting the number of variables in a solution -- 9.4.4 Sequentially dependent decisions -- 9.4.5 Economies of scale -- 9.4.6 Discrete capacity extensions -- 9.4.7 Maximax objectives -- 9.5 Special kinds of integer programming model -- 9.5.1 Set covering problems -- 9.5.2 Set packing problems -- 9.5.3 Set partitioning problems -- 9.5.4 The knapsack problem -- 9.5.5 The travelling salesman problem -- 9.5.6 The vehicle routing problem -- 9.5.7 The quadratic assignment problem -- 9.6 Column generation -- Chapter 10 Building integer programming models II -- 10.1 Good and bad formulations -- 10.1.1 The number of variables in an IP model -- 10.1.2 The number of constraints in an IP model -- 10.2 Simplifying an integer programming model…”
Publicado 2013
Libro electrónico -
195Publicado 2000“…The second section examines the impact of globalization on governance within individual nations (including China, struggling countries in the developing world, and the industrialized democracies) and includes Elaine Kamarck's assessment of global trends in public-sector reform. …”
Libro electrónico -
196Publicado 2019“…During the pogrom, Stormtroopers, Hitler Youth, and ordinary Germans murdered more than a hundred Jews (many more committed suicide) and ransacked and destroyed thousands of Jewish institutions, synagogues, shops, and homes. …”
Libro electrónico -
197Publicado 2017“…They pro-actively communicate power demand and supply, adhering to a set of behavioral rules this book defines, and finally solve the 0-1 knapsack problem of choosing offers in such a way that not only solves the disequilibrium, but also minimizes line loss, by elegant modeling in the Boolean domain. …”
Libro electrónico -
198Publicado 1984Libro electrónico
-
199Publicado 2021“…Food insecurity effects, measured through the Household Food Insecurity Access Scale and cereals stocks, were found to be greater for households in the Casamance region than in the Kaolack and Kaffrine regions. The findings also indicate that farmer networks deployed a coordinated response comprising food aid and access to personal protective equipment, distribution of short-cycle legumes and grains (e.g., cowpea, maize) and vegetable seeds, protection measures for cereals seeds, and financial innovations with banks. …”
Libro electrónico -
200por Regidor Nieto, María del Pilar“…La SÉPTIMA PARTE se ocupa de un nuevo director: Jordi Sánchez, cuya obra "Krámpack" también se lleva a escena por él mismo y al cine por Cesc Gay. …”
Publicado 2004
Universidad Loyola - Universidad Loyola Granada (Otras Fuentes: Biblioteca de la Universidad Pontificia de Salamanca)Enlace del recurso
Tesis