Skip to content
This repository has been archived by the owner on Jun 12, 2023. It is now read-only.

Commit

Permalink
update copyright year and fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
falgon committed Sep 24, 2020
1 parent 3fbc0eb commit 364fa2c
Show file tree
Hide file tree
Showing 1,121 changed files with 1,187 additions and 1,161 deletions.
52 changes: 8 additions & 44 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,51 +1,15 @@
env:
global:
- secure: apzb29h6d8RuJ2deS+VFtbIpoHjqEZo5mXIW4fcLel0eCNtzJNqvuPadCPJkyyyfBfX9ZZp7BNwwrKx/LA8x1KI6PD4CLbaoYONe7JJIAoBiCYqroK+DRf92ZmydVj+dJoJchuwBIvyUU+tFo2wQHCt+dBHrhjHnIediS/3LmA7V8KehAiRwVxkdcLS3dWohEZhIwt2z+utKoyWsdF/MU64ltVUpzpi3YfPIuGmGPHwsPBjemIEg5NH3UWcveulBUGILkfoDvxvqdvTTs21zchZflnk/70VDSRF4EQI4RPGgQi+MMLNx25Odftm1J/THTHz08pKCKWdXlJNWyJEveIZ4UrD3TSsuHyhVGCNrGzIETspVa+yvo8RfPLR2FbeK4N/YxoZaKNX27vrI61bPAperz02SYRTdOCxDaH1owWAXGWbpxptF9Sqrj1xLK1zuIJql+MtQzPPfLCJAtciEctpVeim11FZhDzRjJkwAthnHW8XYzgD0qc592rvf7jneiWci2N+XWURrY+aBoSOlapBTDOINt1WtXjwgfNM5OuJSpHahnIN4ZKixaeS9YBXjJ4GO3u1ZRl1H8NBX0ETIqHNNuOEUvtnmHKhQQHs4G2BlK3NDswE+d6LQ5S/l6pEmHRsq1OGaj+Qb6HiYgLyDHmAapROP3A/bkpyxXLHLBrw=

notifications:
slack:
secure: ujjO4WTtnEa5yq5HuEy+dcqjmEOTuoYyaRIBnt7dgf+8tv+nv4NsvGNURaYH2QTXjMOnVTTUUmPb3YnMgAQCXQlVQTsfqq1kHXgBNZPVYvazN9NB+3sseGBv5kwur+BWP3gLPgtfU0kuNSLFC+g2BoGjZ6dZZQ+jq4UtYCp/9NhZlbQVRj7HiKLTbTHS4UPh/ZxAZqT4hSN75NlY4P+7+9QkyOjcL7bQy8jlpTDE6Y0FJtQk6ibWqoigmMGoPZv9JVvpL4SPZV/3v8cwzXiYfhBJkOqpYjnC62pGF4kzemn3yTaIJFQoN5xiXQiCkg4IWylNt1G4DTd5zYmj/zLqPfH2nuABJBw27hZxYUxJwxDJUojz84phnOq5iv+7MmbkPXhQSo+mM81a2sUfQWcncU5bFV+ZM5ZhXCUZdpjbQRiCzD6+/bFBHxkRCpPy0WIDFaEhixXeAzAYrafNZJ10EIqKVfdO9AZCwSmzV/q84AK1ZZkyHfOHdhafoBCZ9+nQbOkesoNPiBN6aqqBatgFExT8qs445TCDoIKV2xF36V9hw26sRv3nqRclDGfDkmlEPJm0PdNT8e5lxpASgY2DcC7AdT2GqcWvhbq9zPh4y8okBnR4Xc+r1gBYbYgL6htiIISdv1L8pNiayZIR49OXiKFd8SILRCPcye/2Lz+UCkc=
email: false

apt:
update: true
cache:
apt: true
directories:
- "$TRAVIS_BUILD_DIR/include"
- "$TRAVIS_BUILD_DIR/lib"

language: cpp
os:
- linux
sudo: required
dist: trusty
compiler:
- gcc

before_install:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then chmod +x ./travis/linux/before_install.sh; source ./travis/linux/before_install.sh; fi;
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then chmod +x ./travis/mac/before_install.sh; source ./travis/mac/before_install.sh; fi;
install:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then chmod +x ./travis/linux/install.sh; ./travis/linux/install.sh; fi;
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then chmod +x ./travis/osx/install.sh; ./travis/osx/install.sh; fi;
- wget -q -O boost_1_65_1.tar.gz http://sourceforge.net/projects/boost/files/boost/1.65.1/boost_1_65_1.tar.gz/download
- tar xzf boost_1_65_1.tar.gz
- cd boost_1_65_1
- ./bootstrap.sh
- ./b2 link=static,shared install -d0 -j ${CPU_NUM} --prefix=$TRAVIS_BUILD_DIR --with-program_options
- export LD_LIBRARY_PATH=../lib:$LD_LIBRARY_PATH
- cd ../
script:
- g++-7 --version
- cd tests
- make -j ${CPU_NUM}
- make run
- make clean
- make -f Makefile.zlib -j ${CPU_NUM} run
- make -f Makefile.zlib clean
- chmod +x ./cstring/sde_script.sh
- ./cstring/sde_script.sh 1
- ./cstring/sde_script.sh 0
- make -f ./cstring/Makefile -j ${CPU_NUM}
- make -f ./cstring/Makefile run && make -f ./cstring/Makefile clean
jobs:
include:
- stage: Run container build
os: linux
services: docker
script:
- cd tests
- SDE_URL="$(echo $SDE_URL | base64 -d)" docker-compose run test
2 changes: 1 addition & 1 deletion example/algorithm/clustering/t.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2018 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#include <srook/algorithm/clustering/k_means.hpp>
#include <srook/plot/gnu/ploter.hpp>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2018 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#include <srook/brainfk/llvm/brainfk_compiler.hpp>

int main()
Expand Down
2 changes: 1 addition & 1 deletion example/brainfk/some_brainfk_interpreter.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2017 Roki
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#include <srook/brainfk/brainfk.hpp>

int main(const int argc, const char* argv[])
Expand Down
2 changes: 1 addition & 1 deletion example/mpl/fractal/mandelbrot.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2018 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
//
// This is a mandelbrot fractal ploter by C++ template MetaProgramming.
// However, this ploter unfortunately DOES NOT work on practial machines, because it needs huge amount of memories.
Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_ALGORITHM_HPP
#define INCLUDED_ALGORITHM_HPP
#include <srook/algorithm/back.hpp>
Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/back.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_ALGORITHM_EMPLACE_BACK_HPP
#define INCLUDED_ALGORITHM_EMPLACE_BACK_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/cat_max.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_CAT_MAX_HPP
#define INCLUDED_SROOK_ALGORITHM_CAT_MAX_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/cat_min.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_CAT_MIN_HPP
#define INCLUDED_SROOK_ALGORITHM_CAT_MIN_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/clustering/k_means/k_means.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_K_MEANS_HPP
#define INCLUDED_SROOK_K_MEANS_HPP
#include <srook/config/cpp_predefined.hpp>
Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/coding/zlib.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_HPP
#define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/coding/zlib/config.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_CONFIG_HPP
#define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_CONFIG_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/coding/zlib/exception.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_EXCEPTION_HPP
#define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_EXCEPTION_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/coding/zlib/ifstream.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_IFSTREAM_HPP
#define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_IFSTREAM_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/coding/zlib/istream.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_ISTREAM_HPP
#define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_ISTREAM_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/coding/zlib/istreambuf.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_CODIG_ZLIB_ISTREAMBUF_HPP
#define INCLUDED_SROOK_ALGORITHM_CODIG_ZLIB_ISTREAMBUF_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/coding/zlib/ofstream.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_OFSTREAM_HPP
#define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_OFSTREAM_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/coding/zlib/ostream.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_OSTREAM_HPP
#define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_OSTREAM_HPP
#include <srook/algorithm/coding/zlib/config.hpp>
Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/coding/zlib/ostreambuf.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_CODIG_ZLIB_OSTREAMBUF_HPP
#define INCLUDED_SROOK_ALGORITHM_CODIG_ZLIB_OSTREAMBUF_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/coding/zlib/z_streamer.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_Z_STREAM_HPP
#define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_Z_STREAM_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/copy.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_COPY_HPP
#define INCLUDED_SROOK_ALGORITHM_COPY_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/copy_if.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_COPY_IF_HPP
#define INCLUDED_SROOK_ALGORITHM_COPY_IF_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/count.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_COUNT_HPP
#define INCLUDED_SROOK_ALGORITHM_COUNT_HPP
#include <algorithm>
Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/detail/config.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_DETAIL_CONFIG_HPP
#define INCLUDED_SROOK_ALGORITHM_DETAIL_CONFIG_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/detail/tempbuf.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_DETAIL_TEMPBUF_HPP
#define INCLUDED_SROOK_ALGORITHM_DETAIL_TEMPBUF_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/emplace_backer.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_EMPLACE_BACKER_HPP
#define INCLUDED_SROOK_ALGORITHM_EMPLACE_BACKER_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/equal.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_EQUAL_HPP
#define INCLUDED_SROOK_ALGORITHM_EQUAL_HPP
#include <algorithm>
Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/fill.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_FILL_HPP
#define INCLUDED_SROOK_ALGORITHM_FILL_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/for_each.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_FOREACH_HPP
#define INCLUDED_SROOK_ALGORITHM_FOREACH_HPP
#include <algorithm>
Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/inplace_merge.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_INPLACE_MERGE_HPP
#define INCLUDED_SROOK_ALGORITHM_INPLACE_MERGE_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/lcs.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_LCS_HPP
#define INCLUDED_SROOK_ALGORITHM_LCS_HPP
#include <srook/algorithm/searching/longest_common_subsequence.hpp>
Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/max.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_MAX_HPP
#define INCLUDED_SROOK_ALGORITHM_MAX_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/max_iter.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_MAX_ITER_HPP
#define INCLUDED_SROOK_ALGORITHM_MAX_ITER_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/med.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_MED_HPP
#define INCLUDED_SROOK_ALGORITHM_MED_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/med_iter.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_MED_ITER_HPP
#define INCLUDED_SROOK_ALGORITHM_MED_ITER_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/min.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_MIN_HPP
#define INCLUDED_SROOK_ALGORITHM_MIN_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/min_iter.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_MIN_ITER_HPP
#define INCLUDED_SROOK_ALGORITHM_MIN_ITER_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/reverse.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_REVERSE_HPP
#define INCLUDED_SROOK_ALGORITHM_REVERSE_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/rotate.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_ROTATE_HPP
#define INCLUDED_SROOK_ALGORITHM_ROTATE_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/searching.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_HPP
#define INCLUDED_SROOK_ALGORITHM_SEARCHING_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/searching/binary_search.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_BINARY_SEARCH_HPP
#define INCLUDED_SROOK_ALGORITHM_SEARCHING_BINARY_SEARCH_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/searching/boyer_moore.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_BOYER_MOORE_HPP
#define INCLUDED_SROOK_ALGORITHM_SEARCHING_BOYER_MOORE_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/searching/boyer_moore_horspool.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_BOYER_MOORE_HORSPOOL_HPP
#define INCLUDED_SROOK_ALGORITHM_SEARCHING_BOYER_MOORE_HORSPOOL_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/searching/detail/bm_traits.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_DETAIL_BM_TRAITS_HPP
#define INCLUDED_SROOK_ALGORITHM_SEARCHING_DETAIL_BM_TRAITS_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/searching/detail/config.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_DETAIL_CONFIG_HPP
#define INCLUDED_SROOK_ALGORITHM_SEARCHING_DETAIL_CONFIG_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/searching/interpolation_search.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_INTERPOLATION_SEARCH_HPP
#define INCLUDED_SROOK_ALGORITHM_SEARCHING_INTERPOLATION_SEARCH_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/searching/jump_search.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_JUMP_SEARCH_HPP
#define INCLUDED_SROOK_ALGORITHM_SEARCHING_JUMP_SEARCH_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/searching/knuth_morris_pratt.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_SEARCH_KNUTH_MORRIS_PRATT_HPP
#define INCLUDED_SROOK_ALGORITHM_SEARCH_KNUTH_MORRIS_PRATT_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/searching/longest_common_subsequence.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_LONGEST_COMMON_SUBSEQUENCE_HPP
#define INCLUDED_SROOK_ALGORITHM_SEARCHING_LONGEST_COMMON_SUBSEQUENCE_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/searching/lower_bound.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_LOWER_BOUND_HPP
#define INCLUDED_SROOK_ALGORITHM_SEARCHING_LOWER_BOUND_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/searching/upper_bound.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_UPPER_BOUND_HPP
#define INCLUDED_SROOK_ALGORITHM_SEARCHING_UPPER_BOUND_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/sorting.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_SORTING_HPP
#define INCLUDED_SROOK_ALGORITHM_SORTING_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/sorting/bubble_sort.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_BUBBLE_SORT_HPP
#define INCLUDED_SROOK_ALGORITHM_BUBBLE_SORT_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/sorting/bucket_sort.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_BUCKET_SORT_HPP
#define INCLUDED_SROOK_ALGORITHM_BUCKET_SORT_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/sorting/comb_sort.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_COMB_SORT_HPP
#define INCLUDED_SROOK_ALGORITHM_COMB_SORT_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/sorting/counting_sort.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_COUNTING_SORT_HPP
#define INCLUDED_SROOK_ALGORITHM_COUNTING_SORT_HPP

Expand Down
2 changes: 1 addition & 1 deletion srook/algorithm/sorting/detail/qsort_helper.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2011-2019 Roki. Distributed under the MIT License
// Copyright (C) 2011-2020 Roki. Distributed under the MIT License
#ifndef INCLUDED_SROOK_ALGORITHM_SORTING_DETAIL_QSORT_HELPER_HPP
#define INCLUDED_SROOK_ALGORITHM_SORTING_DETAIL_QSORT_HELPER_HPP

Expand Down
Loading

0 comments on commit 364fa2c

Please sign in to comment.