Skip to content

Commit

Permalink
Increased the maximum number of characters for a field in the INI file
Browse files Browse the repository at this point in the history
  • Loading branch information
bergolho committed Oct 17, 2024
1 parent db5fcde commit 1c6761b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion src/3dparty/ini_parser/ini.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ int ini_parse_string(const char* string, ini_handler handler, void* user);

/* Maximum line length for any line in INI file. */
#ifndef INI_MAX_LINE
#define INI_MAX_LINE 200
#define INI_MAX_LINE 2048
#endif

#ifdef __cplusplus
Expand Down
7 changes: 0 additions & 7 deletions src/extra_data_library/helper_functions.h
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,5 @@ struct extra_data_for_torord_land_twave * set_common_torord_Land_twave_data (str
struct extra_data_for_torord_gksgkrtjca_twave * set_common_torord_gksgkrtjca_twave_data (struct config *config, uint32_t num_cells);
struct extra_data_for_trovato * set_common_trovato_data (struct config *config, uint32_t num_cells);

struct extra_data_for_torord_general * set_common_torord_general (struct config *config, uint32_t num_cells, uint32_t model_id);

void configure_torord_extra_data_with_user_input (struct extra_data_for_torord_general *extra_data, struct config *config, uint32_t model_id);
void configure_torord_extra_data_initial_conditions (struct extra_data_for_torord_general *extra_data, uint32_t model_id);
void configure_torord_fkatp_initial_conditions (struct extra_data_for_torord_general *extra_data);
void configure_torord_dynCl_initial_conditions (struct extra_data_for_torord_general *extra_data);
void configure_torord_Land_initial_conditions (struct extra_data_for_torord_general *extra_data);

#endif // MONOALG3D_C_EXTRA_DATA_HELPER_FUNCTIONS_H

0 comments on commit 1c6761b

Please sign in to comment.