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

65 lines
1.6 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",
"valarray": "cpp"
}
}