• Refine Query
  • Source
  • Publication year
  • to
  • Language
  • 35
  • 4
  • 4
  • 3
  • 3
  • 2
  • 1
  • Tagged with
  • 59
  • 27
  • 18
  • 15
  • 14
  • 13
  • 8
  • 8
  • 7
  • 6
  • 6
  • 5
  • 5
  • 5
  • 5
  • About
  • The Global ETD Search service is a free service for researchers to find electronic theses and dissertations. This service is provided by the Networked Digital Library of Theses and Dissertations.
    Our metadata is collected from universities around the world. If you manage a university/consortium/country archive and want to be added, details can be found on the NDLTD website.
1

Untersuchungen zu einigen Problemklassen des Context-Matching und Implementierung ausgewählter Algorithmen in der funktionalen Programmiersprache Haskell

Gersdorf, Jörn Unknown Date (has links)
Univ., Diplomarbeit, 2004--Frankfurt (Main)
2

Generierung, Verwaltung und Verarbeitung von Bidirectional Texture Functions (BTFs) zur photorealistischen Bildgenerierung mit komplexen Oberflächenmodellen

Qian, Jing Unknown Date (has links)
Univ., Diplomarbeit, 2006--Frankfurt (Main)
3

REST-orientierte Refaktorisierung des E-Learning-Systems Autotool

Siegburg, Marcellus 11 July 2024 (has links)
Das in der Lehre eingesetzte E-Learning-System Autotool zeichnet sich durch die Möglichkeit der automatischen Bewertung von Einsendungen aus. Es kann zu eingesendeten Lösungsversuchen Aussagen über deren Korrektheit treffen und damit dem Nutzer Hinweise bei der Lösungssuche geben. Die Architektur des Autotools richtet sich jedoch nicht nach den zugrundeliegenden Technologien des Web. In der Webprogrammierung ist eine auf REST basierende Architektur empfehlenswert, denn REST ist ein Architekturstil für verteilte Hypermediasysteme, der den Entwurf des HTTP geleitet hat. HTTP ist das Protokoll, das der Kommunikation im Web zugrunde liegt. Durch die URI, der Adresse einer Ressource, werden dabei die Zustände für den Nutzer transparent. Versteckte Zustände werden vermieden. Das erhöht die Benutzerfreundlichkeit und verbessert die Struktur der Webseite. Die bisherige Weboberfläche des Autotool bietet diese Transparenz nicht. Durch den Einsatz von Yesod, einem Framework für Webanwendungsentwicklung, wird dies verbessert. Ein optionaler Bestandteil von Yesod ist Persistent, eine typsichere Datenbankschnittstelle. Persistent soll die bisherige Datenbankanbindung ablösen. Bei der bisherigen Implementierung fallen Datenbankmismatches erst bei der Benutzung durch fehlerhaftes Verhalten der Anwendung auf. Durch die Verwendung von Persistent werden solche Fehler schon zur Compilezeit festgestellt.:1 Einleitung 2 Autotool 2.1 Struktur und Benutzung 2.2 Lösen einer Aufgabe 2.3 Aufbau 3 Anforderungsanalyse 3.1 HTTP-Standard 3.2 Anwendungsfälle 3.2.1 Administrator 3.2.2 Direktor 3.2.3 Tutor 3.2.4 Student 3.2.5 Webseitenbesucher 3.3 Erfolgskriterien 4 Moderne Webprogrammierung 4.1 Representational State Transfer (REST) 4.1.1 Hypertext Transfer Protocol (HTTP) 4.1.2 Ressource-Oriented Architecture (ROA) 4.2 Yesod 4.2.1 Routing 4.2.2 Shakespearean Templates 4.2.3 Persistent 4.2.4 Internationalisierung 4.2.5 Scaffolding 4.3 Haskell 5 Austausch des Webframeworks 5.1 Erstellen der Routen 5.2 Austausch des Webfrontends 5.3 Austausch der Persistenz 5.4 Installation des Autotools 6 Ergebnisse 6.1 REST-Orientierung 6.2 Migration der Datenbank 6.3 Testen der Anwendungsfälle 6.4 Belastungstests 6.5 Weitere Ergebnisse 7 Ausblick
4

Lambda-kalkul jako nástroj pro metaprogramování v C++ / λ-calculus as a Tool for Metaprogramming in C++

Šefl, Vít January 2016 (has links)
The template system of C++ is expressive enough to allow the programmer to write programs which are evaluated during compile time. This can be exploited for example in generic programming. However, these programs are very often hard to write, read and maintain. We introduce a simple translation from lambda calculus into C++ templates and show how it can be used to simplify C++ metaprograms. This variation of lambda calculus is then extended with Hindley-Milner type system and various other features (Haskell-like syntax, user-defined data types, tools for interaction with existing C++ template code and so on). We then build a compiler capable of transforming programs written in this language into C++ template metaprograms. Powered by TCPDF (www.tcpdf.org)
5

SAT Compilation for Constraints over Structured Finite Domains

Bau, Alexander 22 March 2017 (has links) (PDF)
A constraint is a formula in first-order logic expressing a relation between values of various domains. In order to solve a constraint, constructing a propositional encoding is a successfully applied technique that benefits from substantial progress made in the development of modern SAT solvers. However, propositional encodings are generally created by developing a problem-specific generator program or by crafting them manually, which often is a time-consuming and error-prone process especially for constraints over complex domains. Therefore, the present thesis introduces the constraint solver CO4 that automatically generates propositional encodings for constraints over structured finite domains written in a syntactical subset of the functional programming language Haskell. This subset of Haskell enables the specification of expressive and concise constraints by supporting user-defined algebraic data types, pattern matching, and polymorphic types, as well as higher-order and recursive functions. The constraint solver CO4 transforms a constraint written in this high-level language into a propositional formula. After an external SAT solver determined a satisfying assignment for the variables in the generated formula, a solution in the domain of discourse is derived. This approach is even applicable for finite restrictions of recursively defined algebraic data types. The present thesis describes all aspects of CO4 in detail: the language used for specifying constraints, the solving process and its correctness, as well as exemplary applications of CO4.
6

SAT Compilation for Constraints over Structured Finite Domains

Bau, Alexander 07 February 2017 (has links)
A constraint is a formula in first-order logic expressing a relation between values of various domains. In order to solve a constraint, constructing a propositional encoding is a successfully applied technique that benefits from substantial progress made in the development of modern SAT solvers. However, propositional encodings are generally created by developing a problem-specific generator program or by crafting them manually, which often is a time-consuming and error-prone process especially for constraints over complex domains. Therefore, the present thesis introduces the constraint solver CO4 that automatically generates propositional encodings for constraints over structured finite domains written in a syntactical subset of the functional programming language Haskell. This subset of Haskell enables the specification of expressive and concise constraints by supporting user-defined algebraic data types, pattern matching, and polymorphic types, as well as higher-order and recursive functions. The constraint solver CO4 transforms a constraint written in this high-level language into a propositional formula. After an external SAT solver determined a satisfying assignment for the variables in the generated formula, a solution in the domain of discourse is derived. This approach is even applicable for finite restrictions of recursively defined algebraic data types. The present thesis describes all aspects of CO4 in detail: the language used for specifying constraints, the solving process and its correctness, as well as exemplary applications of CO4.
7

Increasing receptivity in a selected study group of East Side Baptist Church toward multimedia-supplemented preaching

Page, David. January 1900 (has links)
Thesis (D. Min.)--Southwestern Baptist Theological Seminary, 1999. / Includes bibliographical references (leaves 361-380).
8

A Correlation of the Vegetation with the Soil Types of Haskell County, Texas

Tyson, Josiah William, Jr. 08 1900 (has links)
The problem has consisted, first, of a mapping of the soil types present in Haskell County; second, a collection of the existing vegetation of each soil type; third, an identification of the vegetation collected and observed; fourth, and lastly, a comparative study of the vegetation of each soil type in an effort to establish a correlation between the vegetation and the soil type.
9

A survey of the opinions of office practice supervisors and employers to determine competencies of graduates of the Haskell Institute commercial department, classes of 1957, 1958, and 1959

Laughlin, J. Bruce. January 1961 (has links)
Call number: LD2668 .T4 1961 L38 / Master of Science
10

Exact and Monte-Carlo algorithms for combinatorial games / Exakta och Monte-Carlo algoritmer för kombinatoriska spel

Leino, Anders January 2014 (has links)
This thesis concerns combinatorial games and algorithms that can be used to play them.Basic definitions and results about combinatorial games are covered, and an implementation of the minimax algorithm with alpha-beta pruning is presented.Following this, we give a description and implementation of the common UCT (Upper Confidence bounds applied to Trees) variant of MCTS (Monte-Carlo tree search).Then, a framework for testing the behavior of UCT as first player, at various numbers of iterations (namely 2,7, ... 27), versus minimax as second player, is described.Finally, we present the results obtained by applying this framework to the 2.2 million smallest non-trivial positional games having winning sets of size either 2 or 3.It is seen that on almost all different classifications of the games studied, UCT converges quickly to near-perfect play. / Denna rapport handlar om kombinatoriska spel och algoritmer som kan användas för att spela dessa.Grundläggande definitioner och resultat som berör kombinatoriska spel täcks, och en implementation av minimax-algoritmen med alpha-beta beskärning ges.Detta följs av en beskrivning samt en implementation av UCT varianten av MCTS (Monte-Carlo tree search).Sedan beskrivs ett ramverk för att testa beteendet för UCT som första spelare, vid olika antal iterationer (nämligen 2, 7, ... 27), mot minimax som andra spelare.Till sist beskrivs resultaten vi funnit genom att använda detta ramverk för att spela de 2,2 miljoner minsta icke triviala positionella spelen med vinstmängder av storlek antingen 2 eller 3.Vi finner att, för nästan alla olika klassificeringar av spel vi studerar, så konvergerar UCT snabbt mot nära perfekt spel.

Page generated in 0.051 seconds