中文
相关论文

相关论文: From Push/Enter to Eval/Apply by Program Transform…

200 篇论文

In the seminal paper Functional unparsing, Olivier Danvy used continuation passing to reanalyse printf-like format strings as combinators. In the intervening decades, the conversation shifted towards a concurrent line of work --…

编程语言 · 计算机科学 2025-11-05 Mathieu Boespflug , Arnaud Spiwack

Closure conversion is a program transformation at work in compilers for functional languages to turn inner functions into global ones, by building closures pairing the transformed functions with the environment of their free variables.…

This paper presents Haskell#, a coordination language targeted at the efficient implementation of parallel scientific applications on loosely coupled parallel architectures, using the functional language Haskell. Examples of applications,…

分布式、并行与集群计算 · 计算机科学 2012-08-21 Francisco Heron de Carvalho Junior , Rafael Dueire Lins

Strong call-by-need combines full normalization with the sharing discipline of lazy evaluation, yet no prior implementation achieved both simplicity and efficiency. We introduce RKNL, an abstract machine that realizes strong call-by-need…

编程语言 · 计算机科学 2026-03-24 Małgorzata Biernacka , Witold Charatonik , Tomasz Drab

Using the programming language Haskell, we introduce an implementation of propositional calculus, number theory, and a simple imperative language that can evaluate arithmetic and boolean expressions. Finally, we provide an implementation of…

编程语言 · 计算机科学 2021-12-28 Boro Sitnikovski

We propose a new extension of higher-order pushdown automata, which allows to use an infinite alphabet. The new automata recognize languages of data words (instead of normal words), which beside each its letter from a finite alphabet have a…

形式语言与自动机理论 · 计算机科学 2012-10-10 Paweł Parys

Calculi with control operators have been studied to reason about control in programming languages and to interpret the computational content of classical proofs. To make these calculi into a real programming language, one should also…

计算机科学中的逻辑 · 计算机科学 2012-10-12 Robbert Krebbers

Ability to use definitions occurring in the code directly in equational reasoning is one of the key strengths of functional programming. This is impossible in the case of Haskell type class methods unless a particular instance type is…

编程语言 · 计算机科学 2020-07-02 Härmel Nestra

There are two kinds of systems that programming language researchers use for their work. Semantics engineering tools let them interactively explore their definitions, while proof assistants can be used to check the proofs of their…

编程语言 · 计算机科学 2024-09-24 Jan Liam Verter , Tomas Petricek

A number of novel programming languages and libraries have been proposed that offer simpler-to-use models of concurrency than threads. It is challenging, however, to devise execution models that successfully realise their abstractions…

软件工程 · 计算机科学 2016-03-24 Claudio Corrodi , Alexander Heußner , Christopher M. Poskitt

Human written source code in imperative programming languages exhibits typical patterns for variable use such as flags, loop iterators, counters, indices, bitvectors etc. Although it is widely understood by practitioners that these variable…

编程语言 · 计算机科学 2013-06-17 Yulia Demyanova , Helmut Veith , Florian Zuleger

Throughout the history of functional programming, recursion has emerged as a natural method for describing loops in programs. However, there does often exist a substantial cognitive distance between the recursive definition and the simplest…

编程语言 · 计算机科学 2020-02-17 Satoshi Egi , Yuichi Nishiwaki

In their paper "A Functional Abstraction of Typed Contexts", Danvy and Filinski show how to derive a monomorphic type system of the shift and reset operators from a CPS semantics. In this paper, we show how this method scales to Felleisen's…

编程语言 · 计算机科学 2023-06-22 Youyou Cong , Chiaki Ishio , Kaho Honda , Kenichi Asai

The Gisela framework for declarative programming was developed with the specific aim of providing a tool that would be useful for knowledge representation and reasoning within real-world applications. To achieve this, a complete integration…

软件工程 · 计算机科学 2007-05-23 Goran Falkman , Olof Torgersson

The advantages of tabled evaluation regarding program termination and reduction of complexity are well known --as are the significant implementation, portability, and maintenance efforts that some proposals (especially those based on…

编程语言 · 计算机科学 2009-01-27 Pablo Chico de Guzman , Manuel Carro , Manuel V. Hermenegildo

The traditional approach in HEP analysis software is to loop over every event and every object via the ROOT framework. This method follows an imperative paradigm, in which the code is tied to the storage format and steps of execution. A…

数据分析、统计与概率 · 物理学 2021-09-08 Mason Proffitt , Gordon Watts

While many mainstream languages such as Java, Python, and C# increasingly incorporate functional APIs to simplify programming and improve parallelization/performance, there are no effective techniques that can be used to automatically…

编程语言 · 计算机科学 2022-03-21 Benjamin Mariano , Yanju Chen , Yu Feng , Greg Durrett , Isil Dillig

Graphs are a generalized concept that encompasses more complex data structures than trees, such as difference lists, doubly-linked lists, skip lists, and leaf-linked trees. Normally, these structures are handled with destructive assignments…

编程语言 · 计算机科学 2022-09-13 Jin Sano , Naoki Yamamoto , Kazunori Ueda

Functional programming languages are particularly well-suited for building automated reasoning systems, since (among other reasons) a logical term is well modeled by an inductive type, traversing a term can be implemented generically as a…

编程语言 · 计算机科学 2020-06-02 Daniel Selsam , Simon Hudon , Leonardo de Moura

We introduce and study input-driven deterministic and nondeterministic double-head pushdown automata. A double-head pushdown automaton is a slight generalization of an ordinary pushdown automaton working with two input heads that move in…

形式语言与自动机理论 · 计算机科学 2017-08-23 Markus Holzer , Martin Kutrib , Andreas Malcher , Matthias Wendlandt