18 lines
384 B
C++
18 lines
384 B
C++
/**
|
|
* @file min_diff.h
|
|
* @brief 连续四个周期内最小的差值
|
|
* @author Cat (null.null.null@qq.com)
|
|
* @version 0.1
|
|
* @date 2021-09-17
|
|
*
|
|
* Copyright: Baosight Co. Ltd.
|
|
* DO NOT COPY/USE WITHOUT PERMISSION
|
|
*
|
|
*/
|
|
#pragma once
|
|
#include <boost/regex.hpp>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <string>
|
|
|
|
std::string replace_min_diff_macro(std::string&& exp_str); |