CRITERION-dev: DynComm Documentation for Developers of new Criterion for...

Description Details Author(s) See Also

Description

Instructions for adding new criterion for main algorithms to the DynComm package.

Details

Due to criterion being tightly connected to main algorithms and the multiple programming language nature of this package, it is not possible to completely separate criterion from main algorithms to have them be independent.

This is due to the fact that criterion require access to the graph and, being completely independent, would mean that another copy of the graph would have to be stored at all times in the criterion to account for the possibilty of, as an example, using a main algorithm written in Python with a criterion written in C++.

Even if there could be a way for all algorithms and criterion to share the same graph through R, performance would suffer because of all calls being redirected through R.

So, currently, the best way is to write the criterion in each language. That has the obvious downside of having to know several languages but, on the other side, criterion are fairly simple when compared to main algorithms.

Also, if you are not able to implement the criterion in every language, you can document which main algorithms support it by adding the name of the criterion to the documentation of the main algorithm under the "Supported CRITERION" section.

Depending on the programming language, follow the instructions below:

C++11

It might be easier to just copy the source code of an existing criterion an modify it as required.
Implement a class that extends class "CriterionBase" and implements all functions of class "CriterionInterface". Follow the directions in the file "criterion.h" under the markers that start with the word "TODO", to add your criterion to C++.

Document your criterion in the file "CRITERION.R" following the instructions stated in the header. Follow the example of other documented criterion and add a section that states the supported main algorithms.

Add your criterion to the list of criterion in the file "DynCommMain.R" under the marker that says "list new criterions here" and add a link to its documentation in the documentation above that marker.

Add links to the criterion documentation on each of the supported main algorithms in the file "ALGORITHM.R"

Author(s)

poltergeist0

See Also

DynComm , DynComm-package-dev


DynComm documentation built on Oct. 23, 2020, 5:57 p.m.