Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gitlab-condor-mandelbrot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Morris, William (CVSSP)
gitlab-condor-mandelbrot
Commits
8077892b
Commit
8077892b
authored
6 years ago
by
Will Morris
Browse files
Options
Downloads
Patches
Plain Diff
Changed XMin and YMin screen resolution depth
parent
05c243c7
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#5675
failed
6 years ago
Stage: build
Stage: submit
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mandelbrot.c
+2
-2
2 additions, 2 deletions
mandelbrot.c
with
2 additions
and
2 deletions
mandelbrot.c
+
2
−
2
View file @
8077892b
...
@@ -16,8 +16,8 @@ int main()
...
@@ -16,8 +16,8 @@ int main()
{
{
/* screen ( integer) coordinate */
/* screen ( integer) coordinate */
int
iX
,
iY
;
int
iX
,
iY
;
const
int
iXmax
=
3
000
;
const
int
iXmax
=
2
000
;
const
int
iYmax
=
3
000
;
const
int
iYmax
=
2
000
;
/* world ( double) coordinate = parameter plane*/
/* world ( double) coordinate = parameter plane*/
double
Cx
,
Cy
;
double
Cx
,
Cy
;
const
double
CxMin
=-
2
.
5
;
const
double
CxMin
=-
2
.
5
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment