• This function displays the trace data in a dynamically generated HTML table using the DataTables library for improved user interaction. A notification is shown to the user upon successful generation of the table.

    Parameters

    • traceData: TraceData[]

      Array of objects containing the result data.

    Returns void

    Remarks

    This function generates and displays a table using the 'TableDataTrc' function. It then applies DataTables configuration to it, resulting in a table with additional features like search and pagination. The table will be displayed in the HTML div with the id 'dataTable' and the wrapper gets the id 'dataTableGenerated_wrapper'. Note: this function directly manipulates the DOM and doesn't return anything.

    Example

    const traceData = [
    {Solver: "SolverA", SolverTime: 10, ObjectiveValue: 100},
    {Solver: "SolverB", SolverTime: 20, ObjectiveValue: 200}
    ];
    DisplayDataTable(traceData);

    This example will generate a table with two rows and three columns (Solver, SolverTime, and ObjectiveValue) and apply DataTables configuration to it.

Generated using TypeDoc