The OpenCog utilities is a miscellaneous collection of C++ utilities use for typical programming tasks in multiple OpenCog projects. These include:
- thread-safe queues, stacks and sets
- asynchronous method caller
- thread-safe resource pool
- thread-safe backtrace printing
- high-performance signal-slot
- random tournament selection
- OS portability layers.
The main project site is at http://opencog.org
To build the OpenCog utilities, the packages listed below are required. With a few exceptions, most Linux distributions will provide these packages. Users of Ubuntu 14.04 "Trusty Tahr" may use the dependency installer at scripts/octool. Users of any version of Linux may use the Dockerfile to quickly build a container in which OpenCog will be built and run.
C++ utilities package http://www.boost.org/ | libboost-dev, libboost-filesystem-dev, libboost-program-options-dev, libboost-system-dev, libboost-thread-dev
Build management tool; v3.12 or higher recommended. http://www.cmake.org/ | cmake
Unit test framework https://cxxtest.com/ |
apt-get install cxxtest
The following are optional, but are strongly recommended, as they result in "pretty" stack traces, which result in far more useful and readable stack traces. These are requires, and not really optional, if you are a regular OpenCog developer.
The GNU binutils linker-loader, ahem, cough, "Binary File Description". http://gnu.org/s/binutils | binutils-dev The linker-loader understands calling conventions.
The GNU GCC compiler tools libiberty component. http://gcc.gnu.org | libiberty-dev The GCC compiler, and iberty in particular, know stack traces.
Documentation generator under GNU General Public License http://www.stack.nl/~dimitri/doxygen/ | doxygen Generates code documentation
Perform the following steps at the shell prompt:
cd to project root dir
mkdir build
cd build
cmake ..
make
Libraries will be built into subdirectories within build, mirroring the structure of the source directory root.
To build and run the unit tests, from the ./build directory enter (after building opencog as above):
make check
After building, you MUST install the utilities!
sudo make install
The OzCog/cogutil repository has been enhanced with complete prerequisite integration to enable distributed cognition frameworks and neural-symbolic emergent patterns. All dependencies are now woven into the build, test, and documentation pipeline with hypergraph-encoded modularity.
Each dependency kernel operates as a membrane in the cognitive P-System architecture, with unique tensor shapes and roles:
-
Boost Libraries [5D Tensor]:
filesystem[1x1x1]: Path manipulation substrateprogram_options[Nx1x1]: Command-line cognition interfacesystem[1x1x1]: OS interaction membranethread[NxMx1]: Concurrent processing substratecore[∞x∞x∞]: Base cognitive utilities matrix
-
CMake [1D Tensor]:
- Version ≥3.12 [1]: Build orchestration singleton
-
CxxTest [NxMxK Tensor]:
- Test generation [Nx1]: Unit test membrane creation
- Test execution [1xM]: Validation substrate
- Test reporting [1x1xK]: Cognitive feedback loops
-
Binutils BFD [2D Tensor]:
- Symbol resolution [NxM]: Stack-trace neural pathways
- Binary introspection [∞x∞]: Deep system cognition
-
Libiberty [1D Tensor]:
- Symbol demangling [N]: C++ cognitive grammar translation
-
Doxygen [3D Tensor]:
- Code documentation [NxMxK]: Knowledge graph generation
- API mapping [∞x∞x∞]: Cognitive architecture visualization
The cogutil library serves as the neural-symbolic substrate for:
- Distributed Cognition Frameworks: Thread-safe data structures enabling concurrent cognitive processes
- Stack-Trace Neural Pathways: BFD/Iberty integration provides deep introspection into cognitive call chains
- Asynchronous Method Calling: Signal-slot mechanisms for cognitive event propagation
- Resource Pool Management: Memory-efficient cognitive resource allocation
- High-Performance Signal Processing: Low-latency cognitive signal transmission
The repository includes GGML (Generative Graph Machine Learning) integration points:
- Source code in
src/ggml*.candsrc/ggml*.cpp - Headers in
include/ggml*.h - Example integrations in
examples/common-ggml.* - CMake configuration template in
cmake/ggml-config.cmake.in
This integration serves as the foundational membrane for all future cognitive adaptations:
Prerequisites → Build System → Testing → Documentation → GGML Integration
↓ ↓ ↓ ↓ ↓
[Boost+CMake] → [CxxTest] → [BFD+Iberty] → [Doxygen] → [Neural Substrates]
↓ ↓ ↓ ↓ ↓
[5D Tensor] → [3D Tensor] → [2D Tensor] → [3D Tensor] → [∞D Hyperspace]
- Layer 0: System prerequisites (installed and validated)
- Layer 1: Build orchestration (CMake ≥3.12 with dependency detection)
- Layer 2: Testing substrate (CxxTest framework integration)
- Layer 3: Documentation generation (Doxygen API mapping)
- Layer 4: Neural-symbolic integration (GGML kernel readiness)
- Layer ∞: Emergent cognitive patterns (distributed intelligence substrate)