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
// Copyright 2018 Stefan Kroboth
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

//! # Write parameter vectors somewhere
//!
//! This is very basic and needs much more work. The idea is that parameter vectors are written to
//! disk (or anywhere, essentially) on a regular basis, or on certain events (new best parameter
//! vector found for instance).
//! Several standard implementations should be provided (like writing an image as a PNG) as well as
//! the possibility to implement such a writer for custom types. This will require a bit of
//! thinking.

pub mod file;

use ArgminWrite;
use Error;

pub struct ArgminWriter<T> {
    writers: Vec<Box<ArgminWrite<Param = T>>>,
}

impl<T> ArgminWriter<T> {
    pub fn new() -> Self {
        ArgminWriter { writers: vec![] }
    }

    pub fn push(&mut self, writer: Box<ArgminWrite<Param = T>>) -> &mut Self {
        self.writers.push(writer);
        self
    }
}

impl<T: Clone> ArgminWrite for ArgminWriter<T> {
    type Param = T;
    fn write(&self, param: &T) -> Result<(), Error> {
        for w in self.writers.iter() {
            w.write(&param)?;
        }
        Ok(())
    }
}