Skip to content

Commit a0a31ad

Browse files
committed
correct notice
1 parent e5cf55e commit a0a31ad

13 files changed

+13
-13
lines changed

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020 ETH Zurich, Power Electronic Systems Laboratory, T. Guillod.
1+
Copyright (c) 2019-2020 ETH Zurich, Power Electronic Systems Laboratory, T. Guillod.
22

33
Redistribution and use in source and binary forms, with or without
44
modification, are permitted provided that the following conditions are met:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ Adding support for non vectorized solvers ('fmincon', 'fminbnd', or 'fminsearch'
5656
## License
5757

5858
* This project is licensed under the **BSD License**, see [LICENSE.md](LICENSE.md).
59-
* This project is copyrighted by: (c) 2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod.
59+
* This project is copyrighted by: (c) 2019-2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod.

get_data.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
%
2323
% See also RUN_OPTIM, GET_MULTI_OBJ_OPT, GET_PRE_PROC, GET_SOLUTION.
2424
%
25-
% (c) 2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
25+
% (c) 2019-2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
2626

2727
switch solver_name
2828
case 'bruteforce'

run_example.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function run_example()
55
%
66
% See also GET_MULTI_OBJ_OPT, GET_DATA.
77
%
8-
% (c) 2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
8+
% (c) 2019-2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
99

1010
close('all')
1111
addpath(genpath('src'))

src/get_multi_obj_opt.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
%
3232
% See also GET_PRE_PROC, GET_SOLUTION.
3333
%
34-
% (c) 2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
34+
% (c) 2019-2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
3535

3636
% init the simulation
3737
disp(['============================= ' name])

src/optim/bruteforce.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
% The input and output arguments are strange for a brute force solver.
3333
% This has been done in order to have similar arguments as the MATLAB optimization toolbox.
3434
%
35-
% (c) 2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
35+
% (c) 2019-2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
3636

3737
% number of points
3838
n_sim = size(x0, 1);

src/optim/get_pre_proc.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
%
5353
% See also GET_MULTI_OBJ_OPT, GET_SOLUTION.
5454
%
55-
% (c) 2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
55+
% (c) 2019-2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
5656

5757
% extract the provided data
5858
var = var_param.var;

src/optim/get_solution.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
%
5555
% See also GET_MULTI_OBJ_OPT, GET_PRE_PROC, GET_VECTORIZED, BRUTEFORCE, GA GAMULTIOBJ.
5656
%
57-
% (c) 2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
57+
% (c) 2019-2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
5858

5959
% extract
6060
solver_name = solver_param.solver_name;

src/optim/get_vectorized.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
%
2424
% See also GET_SOLUTION, GET_CHUNK.
2525
%
26-
% (c) 2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
26+
% (c) 2019-2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
2727

2828
% parse and unscale the variable
2929
disp(' get var')

src/utils/get_chunk.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
% - Dividing the data for parallel loop (loop)
1111
% - Reducing the data in the memory while computing
1212
%
13-
% (c) 2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
13+
% (c) 2019-2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
1414

1515
% init the data
1616
idx = 1;

src/utils/get_struct_assemble.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
%
1414
% See also GET_STRUCT_IDX, GET_STRUCT_SIZE.
1515
%
16-
% (c) 2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
16+
% (c) 2019-2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
1717

1818
% init the data
1919
struct_out = struct();

src/utils/get_struct_idx.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
%
1414
% See also GET_STRUCT_SIZE, GET_STRUCT_ASSEMBLE.
1515
%
16-
% (c) 2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
16+
% (c) 2019-2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
1717

1818
% init the data
1919
struct_out = struct();

src/utils/get_struct_size.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
%
1414
% See also GET_STRUCT_IDX, GET_STRUCT_ASSEMBLE.
1515
%
16-
% (c) 2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
16+
% (c) 2019-2020, ETH Zurich, Power Electronic Systems Laboratory, T. Guillod
1717

1818
% init the data
1919
struct_out = struct();

0 commit comments

Comments
 (0)