Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 1.63 KB

applications.md

File metadata and controls

35 lines (24 loc) · 1.63 KB

Scalan Applications

Table of contents

Introduction

The core of Scalan framework is domain-neutral and can be used for different domains. Here we describe example applications from Scalan distribution.

Collections

Abstract data type Collection is used in Scalan to abstract form concrete representation type such as Array, List etc. Domain specific abstractions implemented using Collection interface can be automatically specialized with respect to any such representation.

See source code of abstract data type definition and concrete implementation classes as well as related tests.

Linear Algebra and Matrix operations

To be written. See examples and tests.

Graphs

To be written. See examples and tests.