Skip to content
Snippets Groups Projects
Select Git revision
  • f1df831716ddf4a25f7e82078e537d48bf4ce8d7
  • master default
  • 1.1
  • 1.0
4 results

options.h

Blame
    • Carl Philipp Klemm's avatar
      f1df8317
      add finite transmitison line aproximation · f1df8317
      Carl Philipp Klemm authored
      improve handling of model copys
      deduplicate componant <-> char asssingment by implementing static and virtual members
      fix bug in parameter parser preventing the use of models with no parameters
      dropped support for captalized model chars in model string
      add const function alternative for executeParamByIndex to allow jet another threading model to be used
      add improved error checkig to parameter range processing
      add the ability to warn the user when a range is applied to a unexpected componant via range tagging
      omega ranges are now log by default
      f1df8317
      History
      add finite transmitison line aproximation
      Carl Philipp Klemm authored
      improve handling of model copys
      deduplicate componant <-> char asssingment by implementing static and virtual members
      fix bug in parameter parser preventing the use of models with no parameters
      dropped support for captalized model chars in model string
      add const function alternative for executeParamByIndex to allow jet another threading model to be used
      add improved error checkig to parameter range processing
      add the ability to warn the user when a range is applied to a unexpected componant via range tagging
      omega ranges are now log by default
    .clang-format 905 B
    ---
    Language: Cpp
    BasedOnStyle: LLVM
    AccessModifierOffset: -4
    AlignConsecutiveAssignments: false
    AlignConsecutiveDeclarations: false
    AlignOperands: false
    AlignTrailingComments: false
    AlwaysBreakTemplateDeclarations: Yes
    BraceWrapping: 
      AfterCaseLabel: true
      AfterClass: true
      AfterControlStatement: true
      AfterEnum: true
      AfterFunction: true
      AfterNamespace: true
      AfterStruct: true
      AfterUnion: true
      AfterExternBlock: false
      BeforeCatch: true
      BeforeElse: true
      BeforeLambdaBody: true
      BeforeWhile: true
      SplitEmptyFunction: true
      SplitEmptyRecord: true
      SplitEmptyNamespace: true
    BreakBeforeBraces: Custom
    BreakConstructorInitializers: AfterColon
    ColumnLimit: 120
    SortIncludes: false
    PointerAlignment: Left
    IndentCaseBlocks: true
    IndentWidth: 4
    MacroBlockBegin: ''
    MacroBlockEnd: ''
    MaxEmptyLinesToKeep: 2
    NamespaceIndentation: All
    SpacesInAngles: false
    TabWidth: 4
    UseTab: Always
    ...