l_srtde 0.1.3

Rust implementation of the L-SRTDE algorithm for large-scale global optimization.
Documentation
#ifndef L_SRTDE_H
#define L_SRTDE_H

#include <stddef.h>
#include <stdint.h>

#ifdef __cplusplus
extern "C" {
#endif

enum {
    LSRTDE_OK = 0,
    LSRTDE_NULL_CONFIG = 1,
    LSRTDE_NULL_BOUNDS = 2,
    LSRTDE_NULL_CALLBACK = 3,
    LSRTDE_NULL_OUTPUT = 4,
    LSRTDE_INVALID_DIMENSION = 5,
    LSRTDE_POPULATION_OVERFLOW = 6,
    LSRTDE_POPULATION_TOO_SMALL = 7,
    LSRTDE_INVALID_BOUNDS = 8,
    LSRTDE_CALLBACK_ERROR = 9,
    LSRTDE_NONFINITE_FITNESS = 10
};

typedef int32_t (*lsrtde_evaluate_batch_fn)(
    const double *points,
    size_t point_count,
    size_t dim,
    double *fitness_out,
    void *user_data
);

typedef struct {
    size_t dim;
    const double *lower_bounds;
    const double *upper_bounds;
    size_t max_evaluations;
    size_t memory_size;
    size_t pop_size_multiplier;
    uint64_t seed;
    uint8_t use_seed;
} lsrtde_config;

int32_t lsrtde_minimize(
    const lsrtde_config *config,
    lsrtde_evaluate_batch_fn evaluate_batch,
    void *user_data,
    double *best_genome_out,
    double *best_fitness_out
);

const char *lsrtde_error_message(int32_t code);

#ifdef __cplusplus
}
#endif

#endif