Beispiel #1
0
        public object Clone()
        {
            var clone = new BlockJacobi();

            clone.IterationCallback = this.IterationCallback;
            clone.NoOfIterations    = this.NoOfIterations;
            clone.omega             = this.omega;
            return(clone);
        }
Beispiel #2
0
        public ISolverSmootherTemplate Clone()
        {
            var clone = new BlockJacobi();

            clone.IterationCallback = this.IterationCallback;
            clone.NoOfIterations    = this.NoOfIterations;
            clone.m_Tolerance       = this.m_Tolerance;
            clone.omega             = this.omega;
            return(clone);
        }