1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
//! # Error Types
//!
//! This module defines custom error types for the genetic algorithm library.
//! It provides specific error variants for different failure scenarios that
//! may occur during the evolution process.
//!
//! ## Examples
//!
//! Using the `Result` type:
//!
//! ```rust
//! use genalg::error::{GeneticError, Result};
//!
//! fn some_function() -> Result<()> {
//! // Function implementation
//! Ok(())
//! }
//!
//! fn caller() {
//! match some_function() {
//! Ok(_) => println!("Success!"),
//! Err(e) => println!("Error: {}", e),
//! }
//! }
//! ```
//!
//! Using the `ResultExt` trait to add context to errors:
//!
//! ```rust
//! use genalg::error::{Result, ResultExt};
//! use std::fs::File;
//!
//! fn read_config_file(path: &str) -> Result<()> {
//! File::open(path).context("Failed to open config file")
//! .and_then(|_file| {
//! // Read file contents
//! Ok(())
//! })
//! }
//! ```
//!
//! Using the `OptionExt` trait to convert `Option` to `Result`:
//!
//! ```rust
//! use genalg::error::{GeneticError, OptionExt};
//!
//! fn find_best_candidate(candidates: &[i32]) -> genalg::error::Result<i32> {
//! candidates.iter().max().cloned().ok_or_else_genetic(||
//! GeneticError::EmptyPopulation
//! )
//! }
//! ```
//!
//! Using the `?` operator with automatic error conversion:
//!
//! ```rust
//! use genalg::error::Result;
//! use std::fs::File;
//! use std::io::Read;
//!
//! fn read_config(path: &str) -> Result<String> {
//! let mut file = File::open(path)?; // io::Error automatically converts to GeneticError
//! let mut contents = String::new();
//! file.read_to_string(&mut contents)?; // io::Error automatically converts to GeneticError
//! Ok(contents)
//! }
//! ```
//!
//! ## Comprehensive Error Handling Example
//!
//! Here's a more comprehensive example showing how to handle various error scenarios
//! in a genetic algorithm application:
//!
//! ```rust
//! use genalg::{
//! error::{GeneticError, Result, ResultExt, OptionExt},
//! evolution::{Challenge, EvolutionLauncher, EvolutionOptions, LogLevel},
//! phenotype::Phenotype,
//! breeding::OrdinaryStrategy,
//! selection::ElitistSelection,
//! };
//! use std::fs::File;
//! use std::io::{self, Read};
//!
//! // Custom phenotype and challenge implementations omitted for brevity
//! # #[derive(Clone, Debug)]
//! # struct MyPhenotype { value: f64 }
//! # impl Phenotype for MyPhenotype {
//! # fn crossover(&mut self, other: &Self) { self.value = (self.value + other.value) / 2.0; }
//! # fn mutate(&mut self, _rng: &mut genalg::rng::RandomNumberGenerator) { }
//! # }
//! # #[derive(Clone)]
//! # struct MyChallenge { target: f64 }
//! # impl Challenge<MyPhenotype> for MyChallenge {
//! # fn score(&self, phenotype: &MyPhenotype) -> f64 { 1.0 / (phenotype.value - self.target).abs().max(0.001) }
//! # }
//!
//! fn load_initial_phenotype(path: &str) -> Result<MyPhenotype> {
//! // Handle IO errors with context
//! let mut file = File::open(path)
//! .context(format!("Failed to open initial phenotype file: {}", path))?;
//!
//! let mut contents = String::new();
//! file.read_to_string(&mut contents)
//! .context("Failed to read phenotype data")?;
//!
//! // Parse the value, handling potential format errors
//! let value = contents.trim().parse::<f64>()
//! .map_err(|e| GeneticError::Other(format!("Invalid phenotype value: {}", e)))?;
//!
//! // Validate the value
//! if !value.is_finite() {
//! return Err(GeneticError::InvalidNumericValue(
//! "Initial phenotype value must be finite".to_string()
//! ));
//! }
//!
//! Ok(MyPhenotype { value })
//! }
//!
//! fn run_evolution(config_path: &str, phenotype_path: &str) -> Result<()> {
//! // Load the initial phenotype, propagating any errors
//! let starting_value = load_initial_phenotype(phenotype_path)?;
//!
//! // Create evolution components
//! let options = EvolutionOptions::builder()
//! .num_generations(100)
//! .log_level(LogLevel::Info)
//! .population_size(10)
//! .num_offspring(50)
//! .build();
//!
//! // Validate configuration
//! if options.get_population_size() == 0 {
//! return Err(GeneticError::Configuration(
//! "Population size cannot be zero".to_string()
//! ));
//! }
//!
//! let challenge = MyChallenge { target: 42.0 };
//! let strategy = OrdinaryStrategy::default();
//!
//! // Run the evolution, handling potential errors
//! let selection_strategy = ElitistSelection::default();
//! let launcher: EvolutionLauncher<
//! MyPhenotype,
//! OrdinaryStrategy,
//! ElitistSelection,
//! genalg::local_search::HillClimbing,
//! MyChallenge,
//! genalg::local_search::AllIndividualsStrategy
//! > = EvolutionLauncher::new(strategy, selection_strategy, None, challenge);
//! let result = launcher
//! .configure(options, starting_value)
//! .run()?;
//!
//! println!("Evolution successful! Best fitness: {}", result.score);
//! Ok(())
//! }
//!
//! fn main() {
//! match run_evolution("config.txt", "phenotype.txt") {
//! Ok(_) => println!("Evolution completed successfully"),
//! Err(e) => match e {
//! GeneticError::Configuration(msg) => eprintln!("Configuration error: {}", msg),
//! GeneticError::EmptyPopulation => eprintln!("Error: Empty population"),
//! GeneticError::InvalidNumericValue(msg) => eprintln!("Numeric error: {}", msg),
//! GeneticError::Io(io_err) => eprintln!("I/O error: {}", io_err),
//! _ => eprintln!("Unexpected error: {}", e),
//! }
//! }
//! }
//! ```
use Error as StdError;
use fmt;
use Error;
/// Represents errors that can occur in genetic algorithm operations.
// Implement From for specific error types
// This allows automatic conversion from std::io::Error to GeneticError
// Additional From implementations can be added for other error types as needed
/// A specialized Result type for genetic algorithm operations.
///
/// This type is a convenience wrapper around `std::result::Result` with the error type
/// fixed to `GeneticError`.
///
/// ## Examples
///
/// ```rust
/// use genalg::error::{GeneticError, Result};
///
/// fn may_fail() -> Result<i32> {
/// // Some operation that might fail
/// Ok(42)
/// }
/// ```
pub type Result<T> = Result;
/// Extension trait for Result to add context to errors.
///
/// This trait provides a convenient way to add context to errors when
/// converting from one error type to `GeneticError`.
///
/// ## Examples
///
/// ```rust
/// use genalg::error::ResultExt;
/// use std::fs::File;
///
/// fn read_file(path: &str) -> genalg::error::Result<()> {
/// File::open(path).context("Failed to open file")?;
/// Ok(())
/// }
/// ```