Module dispatch

Module dispatch 

Source
Expand description

Function dispatch for expression evaluation

Contains the performance-critical function dispatch table that routes function calls to their implementations.

This module provides:

  • evaluate_function_dispatch() - O(1) dispatch via compiler jump table
  • evaluate_orthogonal_polynomial() - helper for orthogonal polynomial evaluation

Functionsยง

evaluate_function_dispatch
Performance-critical function dispatch
evaluate_orthogonal_polynomial
Helper for evaluating orthogonal polynomials