TheAlgorithms-C-Plus-Plus/.vscode/settings.json

92 lines
2.2 KiB
JSON
Raw Permalink Normal View History

{
feat: Created composite Simpson's numerical integration method (#1773) * Created composite Simpson's numerical integration method * Created midpoint numerical integration method * Corrections * deleted: unnecessary file * fixed: doucumentation and structure * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * updating DIRECTORY.md * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * fixed: compilation and documentation error Co-authored-by: ggkogkou <ggkogkou@ggkogkou.gr> Co-authored-by: David Leal <halfpacho@gmail.com> Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: Ayaan Khan <ayaankhan98@gmail.com>
2021-11-04 02:22:08 +08:00
"C_Cpp.clang_format_style": "{ BasedOnStyle: Google, UseTab: Never, IndentWidth: 4, TabWidth: 4, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: true, ColumnLimit: 80, AccessModifierOffset: -3, AlignConsecutiveMacros: true }",
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"files.associations": {
"array": "cpp",
"atomic": "cpp",
"*.tcc": "cpp",
"bitset": "cpp",
"cctype": "cpp",
"chrono": "cpp",
"cinttypes": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"complex": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"deque": "cpp",
"list": "cpp",
"unordered_map": "cpp",
"unordered_set": "cpp",
"vector": "cpp",
"exception": "cpp",
"algorithm": "cpp",
"functional": "cpp",
"iterator": "cpp",
"map": "cpp",
"memory": "cpp",
"memory_resource": "cpp",
"numeric": "cpp",
"optional": "cpp",
"random": "cpp",
"ratio": "cpp",
"set": "cpp",
"string": "cpp",
"string_view": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"utility": "cpp",
"fstream": "cpp",
"initializer_list": "cpp",
"iomanip": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"istream": "cpp",
"limits": "cpp",
"new": "cpp",
"ostream": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"typeinfo": "cpp",
feat: add Boyer Moore algorithm implementation (#2441) * add boyer moore algorithm implementation * add a one-line description of what the library/header is for * fix comments pattern and make tests static * add documentation * add namespaces * fix all warnings for clang-tydy.exe <filename> * Change lib from limits to climits (CHAR_MAX macro) Co-authored-by: David Leal <halfpacho@gmail.com> * Add breif description of boyer-moore algorithm * Fix styling * Add needed documentation * my commit * fix type of index_pattern * Fix clang-warnings * chore: apply suggestions from code review * chore: add print message after tests * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * Update strings/boyer_moore.cpp Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com> * fix: variable name * Update strings/boyer_moore.cpp Co-authored-by: David Leal <halfpacho@gmail.com> --------- Co-authored-by: David Leal <halfpacho@gmail.com> Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com>
2023-06-17 05:38:38 +08:00
"valarray": "cpp",
"bit": "cpp",
"charconv": "cpp",
"compare": "cpp",
"concepts": "cpp",
"format": "cpp",
"forward_list": "cpp",
"ios": "cpp",
"locale": "cpp",
"queue": "cpp",
"stack": "cpp",
"xfacet": "cpp",
"xhash": "cpp",
"xiosbase": "cpp",
"xlocale": "cpp",
"xlocbuf": "cpp",
"xlocinfo": "cpp",
"xlocmes": "cpp",
"xlocmon": "cpp",
"xlocnum": "cpp",
"xloctime": "cpp",
"xmemory": "cpp",
"xstddef": "cpp",
"xstring": "cpp",
"xtr1common": "cpp",
"xtree": "cpp",
"xutility": "cpp",
"climits": "cpp"
feat: Created composite Simpson's numerical integration method (#1773) * Created composite Simpson's numerical integration method * Created midpoint numerical integration method * Corrections * deleted: unnecessary file * fixed: doucumentation and structure * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * updating DIRECTORY.md * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * fixed: compilation and documentation error Co-authored-by: ggkogkou <ggkogkou@ggkogkou.gr> Co-authored-by: David Leal <halfpacho@gmail.com> Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: Ayaan Khan <ayaankhan98@gmail.com>
2021-11-04 02:22:08 +08:00
}
}