FAUST compiler  0.9.9.6b8
Functions
labels.hh File Reference
#include "tlib.hh"
#include "boxes.hh"
#include "signals.hh"
Include dependency graph for labels.hh:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

Tree normalizePath (Tree path)

Function Documentation

Tree normalizePath ( Tree  path)

Definition at line 133 of file labels.cpp.

References hd(), isNil(), normalizeLabel(), normalizePath(), and tl().

Referenced by normalizePath(), and propagate().

{
    //cout << "Normalize Path [[" << *path << "]]" << endl;
    Tree npath;
    if (isNil(path)) {
        npath = path;
    } else {
        npath = normalizeLabel(hd(path), normalizePath(tl(path)));
    }
    //cout << "              -> [[" << *npath << "]]" << endl;
    return npath;
}

Here is the call graph for this function:

Here is the caller graph for this function: