module lang::aut::IO
rascal-0.40.16
Usage
import lang::aut::IO;
function readAUT
Read relations from an AUT file.
rel[int, str, int] readAUT(str nameAUTFile)
An AUT file contains tuples of ternary relation as lines with the following format:
(<int>,<str>,<int>)
- each field is separated by a comma
readAUT takes an AUT file and generates a value of type rel[int, str,int]
.
function writeAUT
Write an AUT file.
void writeAUT(str nameAUTFile, rel[int, str, int] r)