📄 normalizationtype.h
字号:
// Copyright (C) 2008 Anders Logg.// Licensed under the GNU LGPL Version 2.1.//// First added: 2008-05-23// Last changed: 2008-05-23#ifndef __NORMALIZATION_TYPE_H#define __NORMALIZATION_TYPE_Hnamespace dolfin{ /// Two different normalizations are available: /// /// l2norm: Normalizes a vector x according to x --> x / ||x|| /// where ||x|| is the l2 norm of x /// /// average: Normalizes a vector x according to x --> x - avg(x) /// where avg(x) is the average of x. This is useful to /// satisfy the compatibility condition for the Neumann /// problem. enum NormalizationType {l2norm, average};}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -